/*
Theme Name: Four Color Nova
Theme URI: https://fourcolorid.com
Author: Md. Delwar Hussain (Sujon)
Description: Modern dark-base theme for Four Color — deep navy canvas, CMYK-inspired cyan/magenta/yellow/lime accents, bold typography, premium card layouts.
Version: 4.0.0
License: GNU General Public License v2 or later
Text Domain: fourcolor
Tags: modern, dark, bold, business, portfolio, bilingual
*/

/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS — Four Color Nova
   Concept  : Deep navy base + vivid CMYK-inspired accents
   Palette  : Ink-black canvas, Cyan hero, Magenta CTA, Yellow warm, Lime fresh
   Typography: Plus Jakarta Sans (Latin) + Hind Siliguri (Bengali)
   Signature : Split-block hero + ink-hover service cards
══════════════════════════════════════════════════════════════ */
:root {
  /* ── Core Palette ── */
  --ink        : #0D1B2A;
  --ink-2      : #112236;
  --ink-3      : #172B40;
  --surface    : #F6F7FA;
  --white      : #FFFFFF;
  --cyan       : #00C2D4;
  --cyan-dark  : #009FB0;
  --magenta    : #E8185A;
  --magenta-d  : #C91249;
  --yellow     : #F5C400;
  --lime       : #64D61E;

  /* ── Text ── */
  --text-body  : #3A3F5C;
  --text-muted : #7A7F9A;

  /* ── Borders ── */
  --border     : #E2E4EE;
  --border-dark: rgba(255,255,255,0.10);

  /* ── Radius ── */
  --r-sm  : 8px;
  --r-md  : 16px;
  --r-lg  : 24px;
  --r-xl  : 36px;
  --r-full: 9999px;

  /* ── Typography ── */
  --font-main : 'Plus Jakarta Sans','Hind Siliguri',system-ui,sans-serif;
  --font-bn   : 'Hind Siliguri','Noto Sans Bengali',sans-serif;

  /* ── Shadows ── */
  --sh-card : 0 8px 28px rgba(11,14,26,.08);
  --sh-lg   : 0 20px 48px rgba(11,14,26,.18);

  /* ── Transition ── */
  --tr : all .22s cubic-bezier(.4,0,.2,1);

  --max-w : 1180px;
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--surface);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-main); color: var(--ink); line-height: 1.2; }
.bn { font-family: var(--font-bn); }

/* ══════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════ */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad  { padding: 88px 0; }
.section-sm   { padding: 56px 0; }
.text-center  { text-align: center; }

/* Accent text helpers */
.tc { color: var(--cyan); }
.tm { color: var(--magenta); }
.ty { color: var(--yellow); }
.tl { color: var(--lime); }

/* ══════════════════════════════════════════════
   SECTION HEADING
══════════════════════════════════════════════ */
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section-head .label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1.15;
}
.section-head h2 em  { font-style: normal; color: var(--magenta); }
.section-head h2 .cy { color: var(--cyan); }
.section-head h2.light { color: #fff; }
.section-head p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
  margin-top: 12px;
}
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head p.light { color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .88rem;
  font-family: var(--font-main);
  transition: var(--tr);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--cyan);
  color: var(--ink);
}
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-2px); color: var(--ink); }

.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--text-body);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-2); }

.btn-magenta {
  background: var(--magenta);
  color: #fff;
}
.btn-magenta:hover { background: var(--magenta-d); }

.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-white:hover { background: #f0f2f8; }

.btn-glass {
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  background: transparent;
}
.btn-glass:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover { background: #1daa54; }

/* ══════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════ */
.top-bar {
  background: linear-gradient(135deg, #0D1B2A 0%, #0A2D45 50%, #0D1B2A 100%);
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,194,212,.15);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar a,
.top-bar span {
  font-size: .73rem;
  color: rgba(255,255,255,.82);
  letter-spacing: .01em;
  transition: var(--tr);
  font-weight: 600;
}
.top-bar a:hover { color: var(--cyan); }
.top-bar-right .btn-topbar-wa {
  background: var(--magenta);
  color: #fff;
  padding: 4px 13px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .71rem;
}
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  padding: 2px;
}
.lang-switch a {
  padding: 2px 9px;
  border-radius: 6px;
  font-size: .71rem;
  color: rgba(255,255,255,.4);
}
.lang-switch a.active {
  background: var(--cyan);
  color: var(--ink);
  font-weight: 700;
}

/* ══════════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(11,14,26,.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.fc-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: none;
}
.fc-logo-text {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 2px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 8px 13px;
  font-size: .96rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--r-sm);
  transition: var(--tr);
}
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a {
  background: var(--surface);
  color: var(--ink);
}

/* Dropdown */
.main-nav .dropdown > a::after {
  content: ' ▾';
  font-size: .6rem;
  opacity: .5;
}
.sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 16px 48px rgba(11,14,26,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--tr);
  z-index: 200;
  padding: 6px;
  list-style: none;
}
.main-nav .dropdown:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sub-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--r-sm);
  transition: var(--tr);
}
.sub-menu li a:hover { background: var(--surface); color: var(--ink); }

/* Mega Menu */
.mega-menu-wrap { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: -160px;
  width: 720px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(11,14,26,.14);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  z-index: 200;
  overflow: hidden;
}
.mega-menu-wrap:hover .mega-menu { display: grid; }
.mega-col {
  padding: 22px 20px;
  border-right: 1px solid var(--border);
}
.mega-col:last-child { border-right: none; }
.mega-col h4 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.mega-col a {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.mega-col a:last-child { border-bottom: none; }
.mega-col a:hover { color: var(--cyan); padding-left: 4px; }

/* Header CTAs */
.header-cta-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  margin-left: 16px;
}
.btn-h-call {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--tr);
}
.btn-h-call:hover { border-color: var(--ink); color: var(--ink); }
.btn-h-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: #25D366;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  transition: var(--tr);
}
.btn-h-wa:hover { background: #1daa54; color: #fff; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
  transition: var(--tr);
}

/* ══════════════════════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════════════════════ */
.page-banner {
  background: var(--ink);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,194,212,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 60%, rgba(232,24,90,.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}
.page-banner p {
  font-size: .92rem;
  color: rgba(255,255,255,.45);
  max-width: 560px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════ */
.fc-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
}
.fc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.fc-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.fc-hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,194,212,.18) 0%, transparent 70%);
  top: -80px; right: 5%;
}
.fc-hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,24,90,.14) 0%, transparent 70%);
  bottom: -60px; right: 25%;
}
.fc-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.fc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.fc-hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: fc-pulse 2s infinite;
}
@keyframes fc-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}
.fc-hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.025em;
}
.fc-hero-h1 .hl-c { color: var(--cyan); }
.fc-hero-h1 .hl-m { color: var(--magenta); }
.fc-hero-h1 .hl-y { color: var(--yellow); }
.fc-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.fc-hero-sub .bn {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  margin-top: 6px;
}
.fc-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.fc-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.fc-hero-stat {
  border-left: 2px solid rgba(255,255,255,.1);
  padding-left: 16px;
}
.fc-hero-stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.fc-hero-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}
/* Service mini-cards (hero right panel) */
.fc-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}
.fc-hsc {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--tr);
  text-decoration: none;
}
.fc-hsc:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
  transform: translateX(-4px);
}
.fc-hsc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.fc-hsc-icon.c { background: rgba(0,194,212,.15); color: var(--cyan); }
.fc-hsc-icon.m { background: rgba(232,24,90,.15);  color: var(--magenta); }
.fc-hsc-icon.y { background: rgba(245,196,0,.15);  color: var(--yellow); }
.fc-hsc-icon.l { background: rgba(100,214,30,.15); color: var(--lime); }
.fc-hsc-text h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.2;
}
.fc-hsc-text p {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  line-height: 1.4;
}
.fc-hsc-price {
  margin-left: auto;
  font-size: .73rem;
  font-weight: 700;
  color: rgba(255,255,255,.22);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   SERVICE MARQUEE
══════════════════════════════════════════════ */
.fc-service-marquee {
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding: 14px 0;
}
.fc-marquee-track {
  display: flex;
  gap: 0;
  animation: fc-marquee 28s linear infinite;
  width: max-content;
}
.fc-marquee-track a {
  white-space: nowrap;
  padding: 0 28px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  border-right: 1px solid rgba(255,255,255,.12);
  transition: var(--tr);
}
.fc-marquee-track a:hover { color: var(--cyan); }
@keyframes fc-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   SERVICE BANNERS (4-col grid, hover-to-dark)
══════════════════════════════════════════════ */
.service-banners { background: var(--white); }
.service-banners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.svc-banner {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 28px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.svc-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: var(--tr);
}
.svc-banner:hover {
  background: var(--ink);
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: var(--sh-lg);
}
.svc-banner.svc-design:hover::before  { background: var(--cyan); }
.svc-banner.svc-print:hover::before   { background: var(--magenta); }
.svc-banner.svc-train:hover::before   { background: var(--yellow); }
.svc-banner.svc-digital:hover::before { background: var(--lime); }
.svc-banner-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--tr);
}
.svc-design  .svc-banner-icon { background: rgba(0,194,212,.1);  color: var(--cyan); }
.svc-print   .svc-banner-icon { background: rgba(232,24,90,.1);  color: var(--magenta); }
.svc-train   .svc-banner-icon { background: rgba(245,196,0,.12); color: #c9a200; }
.svc-digital .svc-banner-icon { background: rgba(100,214,30,.1); color: #3ea800; font-size: .85rem; font-weight: 900; }
.svc-banner:hover .svc-banner-icon { background: rgba(255,255,255,.12); color: #fff; }
.svc-banner h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  transition: var(--tr);
}
.svc-banner:hover h3 { color: #fff; }
.svc-banner-top p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: var(--tr);
}
.svc-banner:hover .svc-banner-top p { color: rgba(255,255,255,.45); }
.svc-banner-top p.bn { font-size: .76rem; color: var(--text-muted); margin-top: 5px; }
.svc-banner:hover .svc-banner-top p.bn { color: rgba(255,255,255,.25); }
.svc-banner-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  transition: var(--tr);
}
.svc-banner:hover .svc-banner-footer { border-color: rgba(255,255,255,.1); }
.svc-banner-footer a {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  transition: var(--tr);
}
.svc-banner:hover .svc-banner-footer a { color: #fff; }
.svc-banner-footer .price {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--tr);
}
.svc-banner:hover .svc-banner-footer .price { color: rgba(255,255,255,.3); }

/* Service tags (pills inside cards) */
.svc-tags-row { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-pill {
  font-size: .68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--tr);
}
.svc-banner:hover .svc-pill { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════
   ABOUT SECTION (dark bg)
══════════════════════════════════════════════ */
.fc-home-about {
  background: var(--ink-2);
}
.fc-about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fc-about-copy .label { color: var(--cyan); }
.fc-about-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.fc-about-copy p {
  font-size: .92rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: 28px;
}
.fc-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.fc-about-stats > span {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-about-stats > span strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.025em;
}
.fc-about-stats > span:not(:has(strong)) { font-size: .72rem; }
/* fallback if :has not supported */
.fc-about-stats strong + * {
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.fc-about-actions { display: flex; gap: 10px; }
.fc-about-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fc-about-card > div {
  border-radius: var(--r-md);
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
}
.fc-about-card > div h4 {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.fc-about-card > div p {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}
.fc-about-card > div .av-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.04);
  position: absolute;
  bottom: -6px;
  right: 8px;
  letter-spacing: -.05em;
}
.av-c { background: linear-gradient(135deg,rgba(0,194,212,.15),rgba(0,194,212,.05)); border: 1px solid rgba(0,194,212,.2); }
.av-m { background: linear-gradient(135deg,rgba(232,24,90,.15),rgba(232,24,90,.05)); border: 1px solid rgba(232,24,90,.2); }
.av-y { background: linear-gradient(135deg,rgba(245,196,0,.15),rgba(245,196,0,.05)); border: 1px solid rgba(245,196,0,.2); }
.av-l { background: linear-gradient(135deg,rgba(100,214,30,.15),rgba(100,214,30,.05)); border: 1px solid rgba(100,214,30,.2); }

/* ══════════════════════════════════════════════
   FEATURES GRID (Why Us)
══════════════════════════════════════════════ */
.fc-why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.fc-why-left .section-head { margin-bottom: 28px; }
.fc-why-left p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.fc-why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.fc-why-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}
.fc-why-tag-dot { width: 8px; height: 8px; border-radius: 50%; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 20px;
  transition: var(--tr);
}
.feat-card:hover {
  border-color: var(--ink);
  box-shadow: var(--sh-card);
}
.feat-icon { font-size: 1.5rem; margin-bottom: 12px; }
.feat-card h3 {
  font-size: .92rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.feat-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════
   PRICING TABS + CARDS
══════════════════════════════════════════════ */
.fc-pricing-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fc-ptab {
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: .85rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--tr);
  background: transparent;
  font-family: var(--font-main);
}
.fc-ptab.active, .fc-ptab:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.fc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fc-price-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--tr);
}
.fc-price-card:hover { box-shadow: 0 12px 36px rgba(11,14,26,.10); }
.fc-price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.fc-price-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--r-full);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.fc-price-name {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.fc-price-card.featured .fc-price-name { color: rgba(255,255,255,.4); }
.fc-price-amount {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.fc-price-amount sup {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}
.fc-price-card.featured .fc-price-amount { color: #fff; }
.fc-price-desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.fc-price-card.featured .fc-price-desc { color: rgba(255,255,255,.38); }
.fc-price-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 22px;
}
.fc-price-card.featured .fc-price-divider { background: rgba(255,255,255,.1); }
.fc-price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  padding: 0;
}
.fc-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: var(--text-body);
  line-height: 1.45;
}
.fc-price-card.featured .fc-price-features li { color: rgba(255,255,255,.7); }
.fc-price-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,194,212,.12);
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fc-price-card.featured .fc-price-features li::before { background: rgba(0,194,212,.2); }
.fc-price-features li.no::before {
  content: '✕';
  background: rgba(0,0,0,.05);
  color: var(--text-muted);
}
.fc-price-features li.no { color: var(--text-muted); }
.fc-price-card.featured .fc-price-features li.no { color: rgba(255,255,255,.22); }
.fc-price-card.featured .fc-price-features li.no::before { background: rgba(255,255,255,.06); color: rgba(255,255,255,.25); }
.fc-btn-price {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: .88rem;
  transition: var(--tr);
}
.fc-btn-price-out { border: 1.5px solid var(--ink); color: var(--ink); }
.fc-btn-price-out:hover { background: var(--ink); color: #fff; }
.fc-btn-price-fill { background: var(--magenta); color: #fff; }
.fc-btn-price-fill:hover { background: var(--magenta-d); color: #fff; }

/* ══════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════ */
.portfolio-section { background: var(--surface); }
.portfolio-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--tr);
  background: transparent;
  font-family: var(--font-main);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.portfolio-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--border);
  position: relative;
  cursor: pointer;
}
.portfolio-item:first-child { grid-column: span 2; aspect-ratio: unset; }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,14,26,.9) 0%, transparent 55%);
  opacity: 0;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.portfolio-overlay p { font-size: .75rem; color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════════
   INFO SECTION (Payment / Courier / Tracking)
══════════════════════════════════════════════ */
.info-section { background: var(--ink); padding: 72px 0; }
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 28px 24px;
}
.info-card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.info-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.info-card p { font-size: .82rem; color: rgba(255,255,255,.38); margin-bottom: 16px; line-height: 1.6; }
.payment-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ptag {
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.4);
  transition: var(--tr);
}
.ptag.cyan {
  border-color: rgba(0,194,212,.3);
  color: var(--cyan);
  background: rgba(0,194,212,.08);
}

/* ══════════════════════════════════════════════
   ORDER TRACKING WIDGET
══════════════════════════════════════════════ */
.tracking-section { background: var(--surface); padding: 72px 0; }
.tracking-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px 48px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--sh-card);
}
.tracking-box h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}
.tracking-box > p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.track-form {
  display: flex;
  gap: 10px;
}
.track-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: .9rem;
  font-family: var(--font-main);
  outline: none;
  transition: var(--tr);
}
.track-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11,14,26,.06);
}
.track-form input::placeholder { color: var(--text-muted); }
.track-result {
  margin-top: 16px;
  font-size: .85rem;
  color: var(--text-muted);
  min-height: 20px;
}

/* ══════════════════════════════════════════════
   CLIENTS GRID
══════════════════════════════════════════════ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  background: var(--white);
  transition: var(--tr);
}
.client-card:hover {
  border-color: var(--ink);
  box-shadow: var(--sh-card);
}
.client-icon {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.client-icon img {
  max-height: 52px;
  max-width: 100px;
  object-fit: contain;
}
.client-card h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.client-card p {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   PAYMENT SECURE STRIP
══════════════════════════════════════════════ */
.fc-payment-strip {
  background: var(--surface);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.fc-payment-strip p {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fc-payment-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fc-pay-badge {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-body);
  background: var(--white);
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  background: #0A2540;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,194,212,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 60%, rgba(232,24,90,.10) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-full);
  padding: 5px 14px;
  box-shadow: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,.42);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════════ */
.site-footer { background: linear-gradient(160deg, #0D1B2A 0%, #0A2D45 60%, #0D1B2A 100%); }
.footer-top { padding: 72px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-col p {
  font-size: .84rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin: 16px 0 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark svg { width: 22px; height: 22px; }
.footer-logo-text { font-size: 1rem; font-weight: 800; color: #fff; }
.footer-logo-text small { display: block; font-size: .6rem; color: rgba(255,255,255,.28); letter-spacing: .05em; font-weight: 500; }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  transition: var(--tr);
}
.social-link:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; padding: 0; }
.footer-col ul li a {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  transition: var(--tr);
  font-weight: 500;
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,.85); font-weight:500; }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-pay-label {
  font-size: .65rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  margin-top: 16px;
}
.footer-pay-row { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-ptag {
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: .75rem; color: rgba(255,255,255,.75); }
.footer-bottom a { font-size: .75rem; color: rgba(255,255,255,.85); transition: var(--tr); font-weight:500; }
.footer-bottom a:hover { color: var(--cyan); }

/* ══════════════════════════════════════════════
   INNER PAGE — PRODUCT SALES / SERVICE DETAIL
══════════════════════════════════════════════ */
.fc-service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fc-service-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 22px;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-service-item:hover {
  border-color: var(--ink);
  box-shadow: var(--sh-card);
  transform: translateY(-3px);
}
.fc-si-icon {
  font-size: 1.4rem;
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  font-weight: 900;
  font-size: .8rem;
}
.fc-si-icon.cyan { background: rgba(0,194,212,.1); color: var(--cyan); }
.fc-si-icon.mag  { background: rgba(232,24,90,.1);  color: var(--magenta); }
.fc-si-icon.lime { background: rgba(100,214,30,.1); color: #3ea800; }
.fc-service-item h3 { font-size: .95rem; font-weight: 800; color: var(--ink); }
.fc-service-item p  { font-size: .82rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.fc-service-item .fc-si-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.fc-service-item .fc-si-price {
  font-size: .8rem;
  font-weight: 800;
  color: var(--ink);
}
.fc-service-item .fc-si-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--cyan);
}
.fc-service-detail-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
}
.fc-service-detail-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  border: 1.5px solid var(--border);
}
.fc-detail-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,194,212,.1);
  color: var(--cyan-dark);
  border: 1px solid rgba(0,194,212,.2);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: .88rem;
  margin: 14px 0 18px;
}
.fc-detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.fc-detail-points span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--r-sm);
}
.fc-detail-points span::before {
  content: '✓';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,194,212,.12);
  color: var(--cyan);
  font-size: .65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Sticky category jump */
.fc-category-jump {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 68px;
  z-index: 50;
}
.fc-category-jump .container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.fc-jump-pay {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-jump-pay span {
  font-size: .78rem;
  color: var(--text-muted);
}
.fc-jump-ptag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-body);
}

/* Training page course cards */
.fc-course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fc-course-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--tr);
}
.fc-course-card:hover {
  box-shadow: var(--sh-card);
  transform: translateY(-3px);
}
.fc-course-head {
  padding: 28px 24px 22px;
  border-bottom: 1px solid var(--border);
}
.fc-course-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.fc-course-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.fc-course-card p.sub {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.fc-course-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-course-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}
.fc-course-row span:first-child { color: var(--text-muted); }
.fc-course-row span:last-child  { font-weight: 700; color: var(--ink); }
.fc-course-footer {
  padding: 16px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc-course-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
}
.fc-course-price sup {
  font-size: .85rem;
  font-weight: 700;
  vertical-align: super;
}

/* Design / Printing file listing */
.fc-file-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fc-file-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--tr);
}
.fc-file-item:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 16px rgba(0,194,212,.1);
}
.fc-file-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.fc-file-name { font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.fc-file-desc { font-size: .75rem; color: var(--text-muted); line-height: 1.45; }
.fc-file-price {
  margin-left: auto;
  font-size: .82rem;
  font-weight: 800;
  color: var(--magenta);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.fc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fc-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fc-team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--tr);
}
.fc-team-card:hover {
  border-color: var(--ink);
  box-shadow: var(--sh-card);
}
.fc-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface);
  margin: 0 auto 14px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.fc-team-card h3 { font-size: .92rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.fc-team-card p  { font-size: .75rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.fc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.fc-contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.fc-form-group { margin-bottom: 20px; }
.fc-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.fc-form-group input,
.fc-form-group select,
.fc-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-family: var(--font-main);
  color: var(--ink);
  outline: none;
  transition: var(--tr);
  background: var(--white);
}
.fc-form-group input:focus,
.fc-form-group select:focus,
.fc-form-group textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11,14,26,.05);
}
.fc-form-group textarea { resize: vertical; min-height: 120px; }
.fc-contact-info-card {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.fc-contact-info-card h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 20px; }
.fc-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fc-contact-row:last-of-type { border-bottom: none; }
.fc-contact-row-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.fc-contact-row-text p { font-size: .78rem; color: rgba(255,255,255,.3); margin-bottom: 3px; }
.fc-contact-row-text a,
.fc-contact-row-text span {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: var(--tr);
}
.fc-contact-row-text a:hover { color: var(--cyan); }

/* ══════════════════════════════════════════════
   TRACK ORDER PAGE
══════════════════════════════════════════════ */
.fc-track-page {
  max-width: 640px;
  margin: 0 auto;
}
.fc-track-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 32px 0;
}
.fc-track-steps::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.fc-track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.fc-track-dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--tr);
}
.fc-track-step.done .fc-track-dot {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
  font-size: .75rem;
  font-weight: 800;
}
.fc-track-step span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

/* ══════════════════════════════════════════════
   PORTFOLIO SINGLE
══════════════════════════════════════════════ */
.fc-portfolio-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.fc-portfolio-meta {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.fc-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .84rem;
}
.fc-meta-row:last-child { border-bottom: none; }
.fc-meta-row span:first-child { color: var(--text-muted); font-weight: 600; }
.fc-meta-row span:last-child  { font-weight: 700; color: var(--ink); }

/* ══════════════════════════════════════════════
   CLIENTS PAGE
══════════════════════════════════════════════ */
.fc-clients-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.fc-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ══════════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  font-size: 1.2rem;
  cursor: pointer;
  margin-bottom: 24px;
  font-family: var(--font-main);
}
.mobile-nav-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-list li a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  border-radius: var(--r-sm);
  transition: var(--tr);
}
.mobile-nav-list li a:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
}
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ══════════════════════════════════════════════
   ADMIN CSS (Customizer)
══════════════════════════════════════════════ */
.fc-admin-section { margin-bottom: 32px; }
.fc-admin-section h3 {
  font-size: .78rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .service-banners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fc-pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .fc-hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 56px 24px; }
  .fc-hero-cards { flex-direction: row; flex-wrap: wrap; min-width: unset; }
  .fc-hsc { flex: 1; min-width: 200px; }
  .fc-about-panel { grid-template-columns: 1fr; }
  .fc-about-card { grid-template-columns: 1fr; }
  .fc-why-wrap { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:first-child { grid-column: span 2; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .fc-pricing-grid { grid-template-columns: 1fr; }
  .fc-contact-grid { grid-template-columns: 1fr; }
  .fc-portfolio-detail { grid-template-columns: 1fr; }
  .fc-team-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-service-cards-grid { grid-template-columns: 1fr 1fr; }
  .fc-file-grid { grid-template-columns: 1fr 1fr; }
  .fc-course-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section-pad { padding: 56px 0; }
  .service-banners-grid { grid-template-columns: 1fr; }
  .fc-about-stats { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .fc-hero-h1 { font-size: clamp(2rem, 7vw, 2.5rem); }
  .fc-hero-cards { flex-direction: column; }
  .tracking-box { padding: 28px 20px; }
  .track-form { flex-direction: column; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-about-stats { grid-template-columns: 1fr; }
  .fc-service-cards-grid { grid-template-columns: 1fr; }
  .fc-file-grid { grid-template-columns: 1fr; }
  .fc-course-grid { grid-template-columns: 1fr; }
  .fc-team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: span 1; }
  .clients-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════
   FIXED SOCIAL SIDEBAR
   (icons stay put on hover; tooltip only, no width-grow/shift — see #fc-social-links a below)
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   FEATURES GRID — equal boxes
══════════════════════════════════════════════ */
.fc-why-wrap .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.fc-why-wrap .feat-card {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ══════════════════════════════════════════════
   MEGA MENU — 4 columns
══════════════════════════════════════════════ */
.mega-menu {
  grid-template-columns: repeat(4, 1fr) !important;
  width: 760px !important;
  left: -200px !important;
}
.mega-col { padding: 20px 18px; }
.mega-col h4 {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border);
}
.mega-col a {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 7px 6px;
  border-radius: var(--r-sm);
  transition: var(--tr);
  border-bottom: none !important;
}
.mega-col a:hover {
  background: var(--surface);
  color: var(--cyan);
  padding-left: 10px;
}

/* ══════════════════════════════════════════════
   CTA SECTION — distinct from footer
══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0A2540 0%, #0D3358 100%) !important;
}

/* ══════════════════════════════════════════════
   MARQUEE — white text
══════════════════════════════════════════════ */
.fc-marquee-track a {
  color: rgba(255,255,255,.9) !important;
  font-weight: 600;
}
.fc-marquee-track a:hover { color: var(--cyan) !important; }

/* ══════════════════════════════════════════════
   LOGO — no subtitle
══════════════════════════════════════════════ */
.fc-logo-text small { display: none !important; }

/* ══════════════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════════════ */
#scrollTop {
  display: none;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   DETAILS/SUMMARY FAQ arrow
══════════════════════════════════════════════ */
details summary::-webkit-details-marker { display: none; }
details[open] summary span:last-child { transform: rotate(180deg); display: inline-block; }

@media(max-width:900px) {
  #fc-social-float { display: none; }
  .mega-menu { width: 100% !important; left: 0 !important; grid-template-columns: 1fr 1fr !important; }
}



/* ══════════════════════════════════════════════
   FOUR COLOR NOVA v4.2 — COMPLETE FINAL CSS
══════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --ink   : #0D1B2A;
  --ink-2 : #112236;
  --ink-3 : #172B40;
  --cyan  : #00C2D4;
  --magenta: #E8185A;
  --yellow : #F5C400;
  --lime   : #64D61E;
  --surface: #F6F7FA;
  --white  : #FFFFFF;
  --text-body  : #3A3F5C;
  --text-muted : #7A7F9A;
  --border     : #E2E4EE;
  --r-sm : 8px; --r-md:16px; --r-lg:24px; --r-xl:36px; --r-full:9999px;
  --tr   : all .22s cubic-bezier(.4,0,.2,1);
  --sh-card: 0 8px 28px rgba(11,14,26,.08);
  --font-main:'Plus Jakarta Sans','Hind Siliguri',system-ui,sans-serif;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: linear-gradient(135deg,#0D1B2A 0%,#0A2D45 50%,#0D1B2A 100%) !important;
  border-bottom: 1px solid rgba(0,194,212,.15);
}
.top-bar a, .top-bar span {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: .75rem !important;
}
.top-bar a:hover { color: var(--cyan) !important; }
.top-bar .lang-switch a { color: rgba(255,255,255,.55) !important; font-weight:600 !important; }
.top-bar .lang-switch a.active { color: var(--ink) !important; }

/* ─── HEADER ─── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top:0; z-index:100;
  box-shadow: 0 2px 24px rgba(11,14,26,.06);
}
.header-inner {
  max-width:1180px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; height:68px; gap:0;
}
/* Logo LEFT */
.site-logo { display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0;margin-right:auto; }
.fc-logo-mark { width:44px;height:44px;background:transparent;border:none;overflow:hidden;display:flex;align-items:center;justify-content:center; }
.fc-logo-text { font-size:1.12rem;font-weight:900;color:var(--ink);letter-spacing:-.02em;line-height:1; }
.fc-logo-text small { display:none !important; }

/* Nav RIGHT */
.main-nav {
  display:flex;gap:2px;list-style:none;padding:0;margin:0;
  margin-left:auto;
}
.main-nav > li > a {
  display:block;padding:9px 15px;font-size:.96rem;font-weight:600;
  color:var(--text-body);border-radius:var(--r-sm);transition:var(--tr);
}
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a {
  background:var(--surface);color:var(--ink);
}
/* Hide old CTA buttons */
.header-cta-wrap { display:none !important; }
.nav-toggle { display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none;margin-left:12px; }
.nav-toggle span { width:22px;height:2px;background:var(--ink);border-radius:2px;display:block; }

/* ─── MEGA MENU — stable hover ─── */
.mega-menu-wrap { position:relative; }
.mega-menu-wrap > a::after { content:' ▾';font-size:.6rem;opacity:.5; }
.mega-menu {
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  width:760px;
  background:#fff;
  border:1.5px solid var(--border);
  border-top:3px solid var(--cyan);
  border-radius:0 0 var(--r-lg) var(--r-lg);
  box-shadow:0 24px 60px rgba(11,14,26,.15);
  display:none;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  z-index:500;
  overflow:hidden;
}
/* Stable: show on wrapper hover, keep open when mouse moves to menu */
.mega-menu-wrap:hover .mega-menu { display:grid; }
/* Invisible bridge fills the gap between nav item and dropdown */
.mega-menu-wrap::before {
  content:'';position:absolute;top:100%;left:50%;
  transform:translateX(-50%);width:760px;height:8px;
  background:transparent;z-index:499;
  display:none;
}
.mega-menu-wrap:hover::before { display:block; }
.mega-col { padding:20px 16px;border-right:1px solid var(--border); }
.mega-col:last-child { border-right:none; }
.mega-col h4 {
  font-size:.68rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase;
  color:var(--text-muted);margin-bottom:12px;padding-bottom:8px;
  border-bottom:2px solid var(--border);display:flex;align-items:center;gap:5px;
}
.mega-col a {
  display:flex !important;align-items:center;gap:8px;
  font-size:.84rem !important;font-weight:600 !important;
  color:var(--text-body) !important;padding:7px 8px !important;
  border-radius:var(--r-sm) !important;transition:var(--tr) !important;
  border:none !important;text-decoration:none;line-height:1.3;
}
.mega-col a .mc-icon {
  width:26px;height:26px;border-radius:6px;
  background:var(--surface);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:.82rem;flex-shrink:0;transition:var(--tr);
}
.mega-col a:hover { background:var(--surface) !important;color:var(--ink) !important; }
.mega-col a:hover .mc-icon { background:var(--ink);border-color:var(--ink); }

/* ─── MARQUEE — white bg, dark text ─── */
.fc-service-marquee {
  background:#ffffff !important;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.fc-marquee-track a {
  color:#1a1a2e !important;
  font-weight:700 !important;
  border-right:1px solid var(--border) !important;
}
.fc-marquee-track a:hover { color:var(--cyan) !important; }

/* ─── SERVICE BANNERS ─── */
.service-banners { background:var(--white); }
.service-banners-grid {
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:2px;background:var(--border);
}
.svc-banner {
  background:var(--white);display:flex;flex-direction:column;
  gap:14px;padding:32px 24px;transition:var(--tr);
  position:relative;overflow:hidden;
}
.svc-banner::before {
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:transparent;transition:var(--tr);
}
.svc-banner:hover { background:var(--ink);transform:translateY(-4px);z-index:2;box-shadow:0 20px 48px rgba(11,14,26,.2); }
.svc-design:hover::before  { background:var(--cyan); }
.svc-print:hover::before   { background:var(--magenta); }
.svc-train:hover::before   { background:var(--yellow); }
.svc-digital:hover::before { background:var(--lime); }
.svc-banner-icon { width:52px;height:52px;border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;font-size:1.3rem;transition:var(--tr); }
.svc-design  .svc-banner-icon { background:rgba(0,194,212,.1); color:var(--cyan); }
.svc-print   .svc-banner-icon { background:rgba(232,24,90,.1);  color:var(--magenta); }
.svc-train   .svc-banner-icon { background:rgba(245,196,0,.12); color:#c9a200; }
.svc-digital .svc-banner-icon { background:rgba(100,214,30,.1); color:#3ea800; }
.svc-banner:hover .svc-banner-icon { background:rgba(255,255,255,.12);color:#fff; }
.svc-banner h3 { font-size:1.05rem;font-weight:800;color:var(--ink);line-height:1.3;transition:var(--tr); }
.svc-banner:hover h3 { color:#fff; }
.svc-banner-top p { font-size:.84rem;color:var(--text-muted);line-height:1.7;transition:var(--tr); }
.svc-banner:hover .svc-banner-top p { color:rgba(255,255,255,.45); }
.svc-tags-row { display:flex;flex-wrap:wrap;gap:5px; }
.svc-pill { font-size:.67rem;font-weight:600;padding:3px 9px;border-radius:var(--r-full);border:1px solid var(--border);color:var(--text-muted);transition:var(--tr); }
.svc-banner:hover .svc-pill { border-color:rgba(255,255,255,.15);color:rgba(255,255,255,.3); }
.svc-banner-footer { display:flex;justify-content:space-between;align-items:center;padding-top:16px;border-top:1px solid var(--border);margin-top:auto;transition:var(--tr); }
.svc-banner:hover .svc-banner-footer { border-color:rgba(255,255,255,.1); }
.svc-banner-footer a { font-size:.82rem;font-weight:700;color:var(--ink);transition:var(--tr); }
.svc-banner:hover .svc-banner-footer a { color:#fff; }
.svc-banner-footer .price { font-size:.78rem;font-weight:700;color:var(--text-muted);transition:var(--tr); }
.svc-banner:hover .svc-banner-footer .price { color:rgba(255,255,255,.3); }

/* ─── TRUSTED 500+ section ─── */
/* Give it a distinct teal-dark background to separate from services (white) */
.section-trusted-bg {
  background: linear-gradient(135deg, #0D1B2A 0%, #0A2D45 100%);
}

/* ─── PORTFOLIO MASONRY ─── */
.fc-portfolio-masonry {
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-auto-rows:72px;
  gap:12px;
}
.fc-pm-item {
  border-radius:var(--r-md);overflow:hidden;
  position:relative;cursor:pointer;background:var(--border);
}
.fc-pm-item:nth-child(1) { grid-column:span 5;grid-row:span 4; }
.fc-pm-item:nth-child(2) { grid-column:span 4;grid-row:span 2; }
.fc-pm-item:nth-child(3) { grid-column:span 3;grid-row:span 2; }
.fc-pm-item:nth-child(4) { grid-column:span 4;grid-row:span 2; }
.fc-pm-item:nth-child(5) { grid-column:span 3;grid-row:span 2; }
.fc-pm-item:nth-child(6) { grid-column:span 4;grid-row:span 3; }
.fc-pm-item:nth-child(7) { grid-column:span 3;grid-row:span 3; }
.fc-pm-img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s cubic-bezier(.4,0,.2,1); }
.fc-pm-item:hover .fc-pm-img { transform:scale(1.07); }
.fc-pm-overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(13,27,42,.92) 0%,transparent 55%);opacity:0;transition:opacity .3s;display:flex;flex-direction:column;justify-content:flex-end;padding:16px; }
.fc-pm-item:hover .fc-pm-overlay { opacity:1; }
.fc-pm-overlay h4 { font-size:.9rem;font-weight:700;color:#fff;margin-bottom:3px; }
.fc-pm-overlay p  { font-size:.72rem;color:rgba(255,255,255,.55); }
.fc-pm-badge { position:absolute;top:10px;left:10px;background:var(--cyan);color:var(--ink);font-size:.63rem;font-weight:800;padding:3px 10px;border-radius:var(--r-full);letter-spacing:.05em;text-transform:uppercase;opacity:0;transition:opacity .3s; }
.fc-pm-item:hover .fc-pm-badge { opacity:1; }
.fc-pm-ph { width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:2.5rem; }
.ph-c1{background:linear-gradient(135deg,#0D3358,#0A2D45)}
.ph-c2{background:linear-gradient(135deg,#1a0a2e,#2d1060)}
.ph-c3{background:linear-gradient(135deg,#0a2d1a,#0d4a2a)}
.ph-c4{background:linear-gradient(135deg,#2d1a0a,#4a2a0d)}
.ph-c5{background:linear-gradient(135deg,#0a1a2d,#0d2a4a)}
.ph-c6{background:linear-gradient(135deg,#1a0a0a,#3a1515)}
.ph-c7{background:linear-gradient(135deg,#0a2a0a,#153a15)}

/* ─── INFO SECTION ─── */
.info-section { background:var(--ink-2);padding:72px 0; }
.info-cards { display:grid;grid-template-columns:repeat(3,minmax(0,340px));gap:20px;justify-content:center; }
.info-card { background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--r-md);padding:28px 24px; }
.info-card-icon { font-size:1.6rem;margin-bottom:14px; }
.info-card h3 { font-size:1rem;font-weight:800;color:#fff;margin-bottom:8px; }
.info-card p  { font-size:.82rem;color:rgba(255,255,255,.55);margin-bottom:16px;line-height:1.65; }
.payment-tags { display:flex;flex-wrap:wrap;gap:6px; }
.ptag { font-size:.7rem;font-weight:700;padding:4px 11px;border-radius:var(--r-full);border:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.65); }
.ptag.cyan { border-color:rgba(0,194,212,.35);color:var(--cyan);background:rgba(0,194,212,.1); }

/* ─── ABOUT SECTION (dark) ─── */
.fc-home-about { background:var(--ink-2); }
.fc-about-panel { display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center; }
.fc-about-copy .label { color:var(--cyan); }
.fc-about-copy h2 { font-size:clamp(1.8rem,3.5vw,2.4rem);font-weight:900;color:#fff;letter-spacing:-.025em;margin-bottom:14px; }
.fc-about-copy p { font-size:.92rem;color:rgba(255,255,255,.5);line-height:1.8;margin-bottom:24px; }
.fc-about-stats { display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:28px; }
.fc-about-stats > span { background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:var(--r-md);padding:18px 14px;text-align:center;display:flex;flex-direction:column;gap:4px; }
.fc-about-stats > span strong { font-size:2rem;font-weight:900;color:#fff;line-height:1; }
.fc-about-stats > span:not(:has(strong)) { font-size:.72rem; }
.fc-about-actions { display:flex;gap:10px; }
.fc-about-card { display:grid;grid-template-columns:1fr 1fr;gap:12px; }
.fc-about-card > div { border-radius:var(--r-md);padding:24px 18px;position:relative;overflow:hidden; }
.fc-about-card > div h4 { font-size:.92rem;font-weight:800;color:#fff;margin-bottom:5px; }
.fc-about-card > div p  { font-size:.76rem;color:rgba(255,255,255,.4);line-height:1.6; }
.fc-about-card .av-num { font-size:3rem;font-weight:900;line-height:1;color:rgba(255,255,255,.04);position:absolute;bottom:-4px;right:8px;letter-spacing:-.05em; }
.av-c{background:linear-gradient(135deg,rgba(0,194,212,.15),rgba(0,194,212,.05));border:1px solid rgba(0,194,212,.2)}
.av-m{background:linear-gradient(135deg,rgba(232,24,90,.15),rgba(232,24,90,.05));border:1px solid rgba(232,24,90,.2)}
.av-y{background:linear-gradient(135deg,rgba(245,196,0,.15),rgba(245,196,0,.05));border:1px solid rgba(245,196,0,.2)}
.av-l{background:linear-gradient(135deg,rgba(100,214,30,.15),rgba(100,214,30,.05));border:1px solid rgba(100,214,30,.2)}

/* ─── HERO ─── */
.fc-hero { background:var(--ink);position:relative;overflow:hidden;min-height:82vh;display:flex;align-items:center; }
.fc-hero-grid { position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:48px 48px;pointer-events:none; }
.fc-hero-blob { position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none; }
.fc-hero-blob-1 { width:500px;height:500px;background:radial-gradient(circle,rgba(0,194,212,.18) 0%,transparent 70%);top:-80px;right:5%; }
.fc-hero-blob-2 { width:400px;height:400px;background:radial-gradient(circle,rgba(232,24,90,.14) 0%,transparent 70%);bottom:-60px;right:25%; }
.fc-hero-inner { position:relative;z-index:2;width:100%;max-width:1180px;margin:0 auto;padding:72px 24px;display:grid;grid-template-columns:1fr auto;gap:56px;align-items:center; }
.fc-hero-badge { display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.65);padding:6px 16px;border-radius:var(--r-full);font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:22px; }
.fc-hero-badge-dot { width:7px;height:7px;border-radius:50%;background:var(--cyan);animation:fc-pulse 2s infinite; }
@keyframes fc-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(1.3)}}
.fc-hero-h1 { font-size:clamp(2.2rem,5.5vw,3.8rem);font-weight:900;line-height:1.08;color:#fff;margin-bottom:18px;letter-spacing:-.025em; }
.hl-c{color:var(--cyan)}.hl-m{color:var(--magenta)}.hl-y{color:var(--yellow)}
.fc-hero-sub { font-size:1rem;color:rgba(255,255,255,.5);line-height:1.75;max-width:500px;margin-bottom:32px; }
.fc-hero-sub .bn { display:block;font-size:.8rem;color:rgba(255,255,255,.3);margin-top:5px; }
.fc-hero-btns { display:flex;gap:10px;flex-wrap:wrap;margin-bottom:40px; }
.fc-hero-stats { display:flex;gap:28px;flex-wrap:wrap; }
.fc-hero-stat { border-left:2px solid rgba(255,255,255,.1);padding-left:14px; }
.fc-hero-stat strong { display:block;font-size:1.8rem;font-weight:900;color:#fff;line-height:1;letter-spacing:-.02em; }
.fc-hero-stat span { font-size:.7rem;color:rgba(255,255,255,.35);font-weight:600;letter-spacing:.05em;text-transform:uppercase;margin-top:3px;display:block; }
.fc-hero-cards { display:flex;flex-direction:column;gap:14px;min-width:300px; }
.fc-hsc { background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--r-md);padding:20px 24px;display:flex;align-items:center;gap:16px;transition:var(--tr);text-decoration:none; }
.fc-hsc:hover { background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.2);transform:translateX(-3px); }
.fc-hsc-icon { width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.35rem;flex-shrink:0; }
.fc-hsc-icon.c{background:rgba(0,194,212,.15);color:var(--cyan)}
.fc-hsc-icon.m{background:rgba(232,24,90,.15);color:var(--magenta)}
.fc-hsc-icon.y{background:rgba(245,196,0,.15);color:var(--yellow)}
.fc-hsc-icon.l{background:rgba(100,214,30,.15);color:var(--lime)}
.fc-hsc-text h4 { font-size:1.05rem;font-weight:700;color:#fff;margin-bottom:3px;line-height:1.2; }
.fc-hsc-text p  { font-size:.82rem;color:rgba(255,255,255,.35);line-height:1.3; }
.fc-hsc-price { margin-left:auto;font-size:.85rem;font-weight:700;color:rgba(255,255,255,.22);white-space:nowrap; }

/* ─── SECTION HEADS ─── */
.section-head { margin-bottom:48px; }
.section-head.center { text-align:center; }
.label { display:inline-flex;align-items:center;gap:8px;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--cyan);margin-bottom:12px; }
.label::before { content:'';width:18px;height:2px;background:var(--cyan);border-radius:2px; }
.section-head h2 { font-size:clamp(1.8rem,3.5vw,2.7rem);font-weight:900;color:var(--ink);letter-spacing:-.025em;line-height:1.15; }
.section-head h2 em { font-style:normal;color:var(--magenta); }
.section-head p { font-size:1rem;color:var(--text-muted);line-height:1.75;max-width:540px;margin-top:12px; }
.section-head.center p { margin-inline:auto; }

/* ─── BUTTONS ─── */
.btn { display:inline-flex;align-items:center;gap:8px;padding:12px 24px;border-radius:var(--r-full);font-weight:700;font-size:.88rem;font-family:var(--font-main);transition:var(--tr);cursor:pointer;border:none;text-decoration:none; }
.btn-primary { background:var(--cyan);color:var(--ink); }
.btn-primary:hover { background:#009FB0;transform:translateY(-2px);color:var(--ink); }
.btn-outline { border:1.5px solid var(--ink);color:var(--ink);background:transparent; }
.btn-outline:hover { background:var(--ink);color:#fff; }
.btn-ghost { border:1.5px solid var(--border);color:var(--text-body);background:transparent; }
.btn-ghost:hover { border-color:var(--ink);color:var(--ink); }
.btn-dark { background:var(--ink);color:#fff; }
.btn-dark:hover { background:var(--ink-2); }
.btn-magenta { background:var(--magenta);color:#fff; }
.btn-magenta:hover { background:#C91249; }
.btn-white { background:#fff;color:var(--ink); }
.btn-white:hover { background:#f0f2f8; }
.btn-glass { border:1.5px solid rgba(255,255,255,.2);color:#fff;background:transparent; }
.btn-glass:hover { background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.4); }
.btn-wa { background:#25D366;color:#fff; }
.btn-wa:hover { background:#1daa54;color:#fff; }

/* ─── FOOTER ─── */
.site-footer { background:linear-gradient(160deg,#0D1B2A 0%,#0A2D45 60%,#0D1B2A 100%) !important; }

/* ─── SOCIAL FLOAT — in header, fixed ─── */
#fc-social-float {
  position:fixed;
  right:0;
  top:68px; /* directly below header */
  z-index:999;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}
#fc-social-toggle {
  width:44px;height:44px;
  border-radius:10px 0 0 10px;
  background:var(--ink);
  border:1.5px solid rgba(255,255,255,.12);
  border-right:none;
  display:flex;align-items:center;justify-content:center;
  color:#fff;cursor:pointer;transition:var(--tr);
  box-shadow:-3px 2px 16px rgba(11,14,26,.2);
}
#fc-social-toggle:hover { background:var(--cyan);color:var(--ink); }
#fc-social-links {
  display:flex;flex-direction:column;
  overflow:hidden;
  max-height:0;
  transition:max-height .35s cubic-bezier(.4,0,.2,1);
  box-shadow:-3px 4px 20px rgba(11,14,26,.18);
  border-radius:0 0 0 10px;
}
#fc-social-links.open { max-height:220px; }
#fc-social-links a {
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:1rem;font-weight:700;text-decoration:none;
  transition:var(--tr);position:relative;flex-shrink:0;
}
#fc-social-links a:hover { filter:brightness(1.2); }
#fc-social-links a .fc-tip {
  position:absolute;right:52px;
  background:rgba(13,27,42,.92);color:#fff;
  font-size:.72rem;font-weight:700;padding:4px 10px;
  border-radius:6px;white-space:nowrap;
  opacity:0;pointer-events:none;transition:opacity .18s;
  border:1px solid rgba(255,255,255,.1);
}
#fc-social-links a:hover .fc-tip { opacity:1; }

/* ─── SCROLL TO TOP ─── */
#scrollTop {
  display:none;align-items:center;justify-content:center;
  position:fixed;bottom:28px;right:14px;
  width:44px;height:44px;border-radius:50%;
  background:var(--ink);border:2px solid rgba(255,255,255,.15);
  color:#fff;font-size:1.1rem;cursor:pointer;z-index:998;
  box-shadow:0 4px 18px rgba(11,14,26,.25);transition:var(--tr);
  font-family:inherit;
}
#scrollTop:hover { background:var(--cyan);color:var(--ink); }

/* ─── PAGE BANNER ─── */
.page-banner { background:var(--ink);position:relative;overflow:hidden;padding:52px 0; }

/* ─── CTA SECTION ─── */
.cta-section { background:linear-gradient(135deg,#0A2540 0%,#0D3358 100%);padding:88px 0;position:relative;overflow:hidden; }
.cta-section h2 { font-size:clamp(2rem,4vw,3rem);font-weight:900;color:#fff;letter-spacing:-.025em;margin-bottom:14px; }
.cta-section .label { color:var(--cyan);margin-bottom:18px;background:rgba(255,255,255,.06);padding:5px 14px;border-radius:var(--r-full); }
.cta-section p { font-size:1rem;color:rgba(255,255,255,.45);max-width:460px;margin:0 auto 36px;line-height:1.7; }
.cta-btns { display:flex;gap:12px;justify-content:center;flex-wrap:wrap; }

/* ─── UTILS ─── */
.container { max-width:1180px;margin:0 auto;padding:0 24px; }
.section-pad { padding:84px 0; }
.section-sm { padding:52px 0; }
.text-center { text-align:center; }
.bn { font-family:'Hind Siliguri',sans-serif; }

/* ─── FEAT CARDS (services page) ─── */
.feat-card { background:var(--white);border:1px solid var(--border);border-radius:var(--r-md);padding:22px 20px;transition:var(--tr); }
.feat-card:hover { border-color:var(--ink);box-shadow:var(--sh-card); }
.feat-icon { font-size:1.5rem;margin-bottom:12px; }
.feat-card h3 { font-size:.92rem;font-weight:800;color:var(--ink);margin-bottom:6px; }
.feat-card p { font-size:.78rem;color:var(--text-muted);line-height:1.65; }

/* ─── MOBILE ─── */
.mobile-menu { display:none;position:fixed;inset:0;background:var(--ink);z-index:1000;flex-direction:column;padding:28px 20px;overflow-y:auto; }
.mobile-menu.open { display:flex; }
.mobile-menu-close { align-self:flex-end;background:rgba(255,255,255,.1);border:none;color:#fff;width:40px;height:40px;border-radius:8px;font-size:1.2rem;cursor:pointer;margin-bottom:20px;font-family:inherit; }
.mobile-nav-list { list-style:none;padding:0;display:flex;flex-direction:column;gap:2px; }
.mobile-nav-list li a { display:block;padding:12px 14px;color:rgba(255,255,255,.75);font-size:.92rem;font-weight:600;border-radius:8px;text-decoration:none;transition:var(--tr); }
.mobile-nav-list li a:hover { background:rgba(255,255,255,.07);color:#fff; }
.mobile-nav-ctas { display:flex;flex-direction:column;gap:8px;margin-top:20px;padding-top:20px;border-top:1px solid rgba(255,255,255,.08); }

@media(max-width:900px){
  .nav-toggle { display:flex !important; }
  .main-nav { display:none !important; }
  .fc-hero-inner { grid-template-columns:1fr;gap:32px;padding:52px 20px; }
  .fc-hero-cards { flex-direction:row;flex-wrap:wrap;min-width:unset; }
  .fc-hsc { flex:1;min-width:180px; }
  .fc-about-panel { grid-template-columns:1fr; }
  .service-banners-grid { grid-template-columns:repeat(2,1fr); }
  .info-cards { grid-template-columns:1fr; }
  .fc-portfolio-masonry { grid-template-columns:repeat(2,1fr);grid-auto-rows:160px; }
  .fc-pm-item { grid-column:span 1 !important;grid-row:span 2 !important; }
  #fc-social-float { top:60px; }
  .mega-menu { width:100% !important;left:0 !important;transform:none !important;grid-template-columns:1fr 1fr !important; }
}
@media(max-width:640px){
  .section-pad { padding:52px 0; }
  .service-banners-grid { grid-template-columns:1fr; }
  .fc-about-card { grid-template-columns:1fr; }
  .fc-hero-cards { flex-direction:column; }
}
@media(min-width:901px){
  .nav-toggle { display:none !important; }
}

/* ══════════════════════════════════════════════
   BUY NOW / ENROLL NOW / CART — right-side step drawer
══════════════════════════════════════════════ */
.fc-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,14,26,.55);
  backdrop-filter: blur(2px);
  z-index: 99999;
}
.fc-drawer-overlay.open { display: block; }
.fc-drawer-box {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  box-shadow: -24px 0 64px rgba(11,14,26,.25);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.fc-drawer-overlay.open .fc-drawer-box { transform: translateX(0); }
.fc-drawer-body { padding: 30px 26px; overflow-y: auto; flex: 1; }
.fc-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
  z-index: 2;
}
.fc-modal-close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Step indicator */
.fc-steps {
  display: flex;
  align-items: center;
  padding: 22px 26px 0;
  flex-shrink: 0;
}
.fc-step { display: flex; flex-direction: column; align-items: center; gap: 5px; opacity: .4; transition: var(--tr); }
.fc-step.active, .fc-step.done { opacity: 1; }
.fc-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.fc-step.active .fc-step-num, .fc-step.done .fc-step-num { background: var(--cyan); border-color: var(--cyan); color: var(--ink); }
.fc-step-label { font-size: .64rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.fc-step.active .fc-step-label { color: var(--ink); }
.fc-step-line { flex: 1; height: 2px; background: var(--border); margin: 0 6px 18px; }

.fc-step-back {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
}
.fc-step-back:hover { background: var(--ink); color: #fff; }

.fc-modal-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.fc-modal-icon { font-size: 1.5rem; }
.fc-modal-head h3 { font-size: 1.1rem; font-weight: 900; color: var(--ink); margin: 0; }
.fc-modal-summary {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.fc-modal-summary-name { font-size: .95rem; font-weight: 800; color: var(--ink); }
.fc-modal-summary-pkg { font-size: .8rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.fc-modal-summary-price { font-size: .9rem; color: var(--cyan); font-weight: 800; margin-top: 6px; }
.fc-modal-field { margin-bottom: 14px; }
.fc-modal-field label { display: block; font-size: .76rem; font-weight: 700; color: var(--text-body); margin-bottom: 6px; }
.fc-modal-field input, .fc-modal-field textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font-main);
  font-size: .88rem;
  color: var(--ink);
  background: var(--white);
  transition: var(--tr);
  resize: vertical;
}
.fc-modal-field input:focus, .fc-modal-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,194,212,.12);
}
.fc-modal-error {
  display: none;
  font-size: .8rem;
  font-weight: 600;
  color: var(--magenta);
  background: rgba(232,24,90,.08);
  border: 1px solid rgba(232,24,90,.2);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  margin-bottom: 12px;
}
.fc-modal-tracking {
  background: var(--surface);
  border: 1.5px dashed var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
}
#fc-order-tracking-id { font-size: 1.25rem; font-weight: 900; color: var(--ink); letter-spacing: .03em; margin-top: 2px; }

/* ══════════════════════════════════════════════
   PACKAGE CARD — clickable "more details" expand
══════════════════════════════════════════════ */
.fc-pkg-card { cursor: pointer; }
.fc-pkg-more {
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
  opacity: .6;
  letter-spacing: .03em;
}
.fc-pkg-details {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,.15);
}
.fc-pkg-details.open { display: block; }
.fc-pkg-details ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.fc-pkg-details li { font-size: .78rem; line-height: 1.5; padding-left: 16px; position: relative; }
.fc-pkg-details li::before { content: '•'; position: absolute; left: 2px; color: var(--cyan); font-weight: 900; }

/* Buttons rendered as <button> elements inherit link-like appearance */
.fc-service-item .fc-si-link { background: none; border: none; cursor: pointer; font-family: var(--font-main); padding: 0; }

@media (max-width: 480px) {
  .fc-drawer-box { max-width: 100%; }
  .fc-drawer-body { padding: 24px 20px; }
  .fc-steps { padding: 18px 20px 0; }
}

/* ══════════════════════════════════════════════
   CART ICON (header)
══════════════════════════════════════════════ */
.fc-cart-btn {
  position: relative;
  width: 38px; height: 38px;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-left: 14px;
  border-radius: 50%;
  transition: var(--tr);
}
.fc-cart-btn:hover { background: var(--surface); }
.fc-cart-count {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 17px; height: 17px;
  border-radius: 9999px;
  background: var(--magenta);
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  display: none;
  align-items: center; justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ══════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════ */
#fc-cart-items { max-height: 46vh; overflow-y: auto; margin-top: 4px; }
.fc-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.fc-cart-item:last-child { border-bottom: none; }
.fc-cart-item-name { font-size: .86rem; font-weight: 700; color: var(--ink); }
.fc-cart-item-price { font-size: .78rem; color: var(--cyan); font-weight: 700; margin-top: 2px; }
.fc-cart-item-remove {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.fc-cart-item-remove:hover { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.fc-cart-empty { text-align: center; color: var(--text-muted); font-size: .85rem; padding: 30px 0; }

/* Multi-item order summary (cart checkout mode) */
#fc-order-modal-multi-list .fc-modal-summary-name { margin-bottom: 2px; }
.fc-order-modal-multi-item { padding: 8px 0; border-bottom: 1px dashed var(--border); }
.fc-order-modal-multi-item:last-child { border-bottom: none; }

/* Add to Cart button inside expanded package details */
.fc-pkg-addcart-btn {
  width: 100%;
  margin-top: 12px;
  display: block;
  text-align: center;
  padding: 9px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: .78rem;
  background: transparent;
  border: 1.5px dashed rgba(255,255,255,.35);
  color: inherit;
  cursor: pointer;
  font-family: var(--font-main);
  transition: var(--tr);
}
.fc-pkg-addcart-btn:hover { background: rgba(255,255,255,.08); }

/* ══════════════════════════════════════════════
   INLINE BUY BOX — step wizard, no popup (sidebar)
══════════════════════════════════════════════ */
.fc-buybox { background: var(--ink); border-radius: var(--r-xl); padding: 28px 24px; overflow: hidden; }
.fc-buybox-step { animation: fcFadeIn .25s ease; }
@keyframes fcFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.fc-buybox-social {
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}
.fc-buybox-social strong { color: #fff; }
.fc-buybox-step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.fc-buybox-step-head h4 { font-size: 1rem; font-weight: 900; color: #fff; margin: 0; }
.fc-buybox .fc-step-back { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }
.fc-buybox .fc-step-back:hover { background: var(--cyan); color: var(--ink); }
.fc-buybox .fc-modal-field input, .fc-buybox .fc-modal-field textarea {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.fc-buybox .fc-modal-field input::placeholder, .fc-buybox .fc-modal-field textarea::placeholder { color: rgba(255,255,255,.3); }
.fc-buybox .fc-modal-field input:focus, .fc-buybox .fc-modal-field textarea:focus { border-color: var(--cyan); }
.fc-buybox-tracking {
  background: rgba(255,255,255,.06);
  border: 1.5px dashed rgba(255,255,255,.2);
  border-radius: var(--r-md);
  padding: 12px 16px;
}
.fc-pkg-select-hint { font-size: .68rem; font-weight: 700; text-align: center; margin-top: 10px; opacity: .55; }
.fc-pkg-card.fc-pkg-selected { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* ══════════════════════════════════════════════
   BUY BOX — polish: banner, avatars, duration stat, order summary
══════════════════════════════════════════════ */
.fc-buybox-banner {
  height: 74px;
  border-radius: var(--r-md);
  margin: -28px -24px 18px;
  background: linear-gradient(135deg, rgba(0,194,212,.25), rgba(232,24,90,.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem;
  position: relative;
  overflow: hidden;
}
.fc-buybox-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.12), transparent 60%);
}
.btn-green { background: #16a34a; color: #fff; }
.btn-green:hover { background: #128a3e; color: #fff; transform: translateY(-2px); }
.fc-buybox-avatars { display: inline-flex; margin-right: 6px; vertical-align: middle; }
.fc-buybox-avatars span {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -8px;
  font-size: .6rem;
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.fc-buybox-avatars span:first-child { margin-left: 0; }
.fc-buybox-duration-box {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.fc-buybox-duration-box > div {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  text-align: center;
  padding: 10px 6px;
}
.fc-buybox-duration-box .fc-dur-num { font-size: 1.15rem; font-weight: 900; color: #fff; line-height: 1.2; }
.fc-buybox-duration-box .fc-dur-label { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); }
.fc-buybox-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(22,163,74,.15);
  border: 1px solid rgba(22,163,74,.35);
  color: #4ade80;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 9999px;
}

/* Order-summary style (Added-to-cart / checkout step) */
.fc-order-item-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  padding: 12px 14px;
  margin-bottom: 14px;
}
.fc-order-item-thumb {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.fc-order-pay-icons { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 16px; }
.fc-order-pay-icons span {
  font-size: .68rem;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  padding: 4px 10px;
  border-radius: 9999px;
}
.fc-order-note { font-size: .72rem; color: rgba(255,255,255,.35); text-align: center; margin-top: 10px; line-height: 1.5; }
