/* ═══════════════════════════════════════════
   NASEER ABID PRINTING PRESS — STYLESHEET
   Theme: Ink & Gold | Jhelum
   ═══════════════════════════════════════════ */

:root {
  --ink:    #0d0d0d;
  --ink-2:  #1a1a1a;
  --ink-3:  #2c2c2c;
  --paper:  #f5f0e8;
  --paper-2:#faf7f2;
  --gold:   #c9a84c;
  --gold-lt:#e6c97a;
  --white:  #ffffff;
  --green:  #25d366;
  --insta:  #e4405f;
  --upwork: #6fda44;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;
  --ff-caps:    'Bebas Neue', sans-serif;

  --radius:    4px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);
  --nav-h:     70px;
  --transition:.3s cubic-bezier(.4,0,.2,1);
}

/* RESET */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--ff-body); background:var(--paper-2); color:var(--ink); overflow-x:hidden; }
img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; }
button { border:none; cursor:pointer; font-family:var(--ff-body); }
ul   { list-style:none; }

/* UTILITIES */
.mt-md { margin-top:1.5rem; }
.center { text-align:center; }
.section-label {
  font-family:var(--ff-caps); font-size:1rem; letter-spacing:4px;
  color:var(--gold); margin-bottom:.5rem; display:block;
}
.section-label.light { color:var(--gold-lt); }
.section-title {
  font-family:var(--ff-display);
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.1; color:var(--ink);
}
.section-title.light { color:var(--white); }
.section-head { text-align:center; margin-bottom:3rem; }
.section-sub {
  color:#888; font-size:.95rem; margin-top:.75rem;
  max-width:500px; margin-left:auto; margin-right:auto;
}

/* BUTTONS */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.9rem 2rem; border-radius:var(--radius);
  font-size:.95rem; font-weight:500; transition:var(--transition);
  cursor:pointer; white-space:nowrap;
}
.btn-primary { background:var(--gold); color:var(--ink); font-weight:700; }
.btn-primary:hover { background:var(--gold-lt); transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,168,76,.35); }
.btn-ghost { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background:rgba(255,255,255,.1); border-color:var(--white); }
.btn-whatsapp { background:var(--green); color:var(--white); font-weight:700; }
.btn-whatsapp:hover { background:#1da851; transform:translateY(-2px); }
.btn.full { width:100%; justify-content:center; }

/* ═══ LOADER ═══ */
.loader-wrap {
  position:fixed; inset:0; background:var(--ink);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  z-index:9999; gap:1.5rem;
}
.loader-ink { display:flex; gap:10px; }
.loader-ink span {
  width:14px; height:14px; border-radius:50%; background:var(--gold);
  animation:inkBounce 1.1s ease-in-out infinite;
}
.loader-ink span:nth-child(2) { animation-delay:.18s; background:var(--gold-lt); }
.loader-ink span:nth-child(3) { animation-delay:.36s; background:var(--white); }
@keyframes inkBounce { 0%,80%,100%{transform:scale(0);opacity:.4} 40%{transform:scale(1);opacity:1} }
.loader-text { font-family:var(--ff-caps); font-size:1.3rem; letter-spacing:4px; color:var(--white); }
.dots::after { content:''; animation:dots 1.5s steps(4,end) infinite; }
@keyframes dots { 0%{content:''} 25%{content:'.'} 50%{content:'..'} 75%{content:'...'} 100%{content:''} }

/* ═══ SCROLL TO TOP ═══ */
#scrollToTopBtn {
  display:none; position:fixed; bottom:1.5rem; right:1.5rem; z-index:900;
  width:44px; height:44px; border-radius:50%; background:var(--ink);
  color:var(--gold); border:1.5px solid var(--gold); font-size:1rem;
  transition:var(--transition); align-items:center; justify-content:center;
}
#scrollToTopBtn:hover { background:var(--gold); color:var(--ink); transform:translateY(-3px); }

/* ═══ NAVBAR ═══ */
.header {
  position:fixed; top:0; left:0; right:0; z-index:800;
  height:var(--nav-h); background:var(--ink);
  border-bottom:1px solid rgba(201,168,76,.2);
  transition:background var(--transition), box-shadow var(--transition);
}
.header.scrolled { background:rgba(13,13,13,.97); box-shadow:0 4px 20px rgba(0,0,0,.4); }
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 2rem; height:100%;
  display:flex; align-items:center; justify-content:space-between; gap:2rem;
}
.brand { display:flex; align-items:center; gap:.75rem; flex-shrink:0; }
.brand-logo { width:36px; height:36px; object-fit:contain; }
.brand-name { font-family:var(--ff-caps); font-size:1.05rem; line-height:1.2; color:var(--white); letter-spacing:1.5px; }
.brand-name em { color:var(--gold); font-style:normal; }
#navMenu ul { display:flex; align-items:center; gap:.25rem; }
#navMenu li a {
  color:rgba(255,255,255,.8); padding:.5rem .85rem;
  border-radius:var(--radius); font-size:.88rem; font-weight:400;
  transition:color var(--transition), background var(--transition);
}
#navMenu li a:hover { color:var(--white); background:rgba(255,255,255,.07); }
.nav-cta { background:var(--gold)!important; color:var(--ink)!important; font-weight:700!important; padding:.5rem 1.2rem!important; }
.nav-cta:hover { background:var(--gold-lt)!important; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; padding:6px; border-radius:var(--radius); }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); transition:var(--transition); transform-origin:center; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ═══ HERO ═══ */
.hero {
  min-height:100vh; background:var(--ink-2);
  display:flex; align-items:center;
  padding:calc(var(--nav-h) + 4rem) 2rem 4rem;
  position:relative; overflow:hidden;
}
.hero-bg-pattern {
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg,rgba(201,168,76,.04) 0,rgba(201,168,76,.04) 1px,transparent 1px,transparent 60px),
    repeating-linear-gradient(90deg,rgba(201,168,76,.04) 0,rgba(201,168,76,.04) 1px,transparent 1px,transparent 60px);
  pointer-events:none;
}
.hero-content {
  max-width:640px; margin:0 auto 0 10%; position:relative; z-index:2;
  animation:heroFadeIn .9s ease both;
}
@keyframes heroFadeIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-eyebrow { font-family:var(--ff-caps); letter-spacing:4px; font-size:.9rem; color:var(--gold); margin-bottom:1.2rem; }
.hero-title {
  font-family:var(--ff-display); font-size:clamp(3.5rem,9vw,7rem);
  line-height:1; color:var(--white); margin-bottom:1.5rem; font-weight:900;
}
.accent-word { color:var(--gold); font-style:italic; }
.hero-sub { color:rgba(255,255,255,.6); font-size:1rem; margin-bottom:2.5rem; line-height:1.7; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }

.hero-stamp {
  position:absolute; right:8%; top:50%; transform:translateY(-50%);
  width:220px; height:220px; z-index:2; animation:heroFadeIn 1.2s ease .3s both;
}
.stamp-svg { width:100%; height:100%; animation:rotateSvg 30s linear infinite; }
@keyframes rotateSvg { to{transform:rotate(360deg)} }
.stamp-ring { position:relative; width:100%; height:100%; }
.stamp-center {
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  font-family:var(--ff-caps); font-size:2.2rem; color:var(--gold); line-height:1;
}
.stamp-center small { font-size:.7rem; letter-spacing:3px; color:rgba(255,255,255,.5); }

.hero-scroll-hint {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.4rem;
  color:rgba(255,255,255,.4); font-size:.75rem; letter-spacing:2px; font-family:var(--ff-caps);
  animation:scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ═══ STATS BAR ═══ */
.stats-bar {
  background:var(--gold);
  padding:2rem;
}
.stats-inner {
  max-width:900px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-around; flex-wrap:wrap; gap:1.5rem;
}
.stat-item {
  display:flex; flex-direction:column; align-items:center;
  position:relative;
}
.stat-item > strong,
.stat-item > span.stat-plus {
  font-family:var(--ff-caps);
  font-size:2.8rem;
  color:var(--ink);
  line-height:1;
}
.stat-item > strong { display:inline; }
.stat-item > span.stat-plus { display:inline; margin-left:2px; }
.stat-num-row { display:flex; align-items:baseline; }
.stat-label { font-size:.8rem; font-weight:600; color:rgba(0,0,0,.6); text-transform:uppercase; letter-spacing:2px; margin-top:.3rem; }
.stat-divider { width:1px; height:40px; background:rgba(0,0,0,.2); }

/* ═══ SERVICES STRIP ═══ */
.services-strip { background:var(--ink); padding:2.5rem 2rem; }
.strip-inner {
  max-width:1100px; margin:0 auto;
  display:flex; flex-wrap:wrap; gap:1rem; justify-content:center;
}
.service-pill {
  display:flex; align-items:center; gap:.6rem;
  background:rgba(255,255,255,.06); border:1px solid rgba(201,168,76,.2);
  color:var(--white); padding:.65rem 1.25rem; border-radius:999px;
  font-size:.9rem; transition:var(--transition); animation:fadeUp .5s ease var(--d) both;
}
.service-pill i { color:var(--gold); font-size:.85rem; }
.service-pill:hover { background:rgba(201,168,76,.15); border-color:var(--gold); transform:translateY(-2px); }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ═══ ABOUT ═══ */
.about-section { max-width:1100px; margin:6rem auto; padding:0 2rem; }
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.about-image-wrap { position:relative; }
.about-image {
  aspect-ratio:4/5; border-radius:var(--radius-lg);
  background:url('../img/about_us/1.jpg') center/cover no-repeat, var(--ink-3);
  box-shadow:var(--shadow-lg);
}
.about-badge {
  position:absolute; bottom:-1.5rem; right:-1.5rem; background:var(--gold);
  color:var(--ink); border-radius:50%; width:110px; height:110px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; box-shadow:var(--shadow);
}
.about-badge strong { font-size:2rem; font-family:var(--ff-caps); line-height:1; }
.about-badge span { font-size:.7rem; font-weight:600; text-transform:uppercase; letter-spacing:1px; }
.about-content { padding-right:1rem; }
.about-content h2 { margin-bottom:1.25rem; }
.about-content > p { color:#555; line-height:1.8; margin-bottom:1.5rem; }
.about-list li { display:flex; align-items:center; gap:.75rem; margin-bottom:.75rem; font-size:.95rem; color:var(--ink-3); }
.about-list i { color:var(--gold); font-size:.85rem; flex-shrink:0; }

/* ═══ PORTFOLIO ═══ */
.portfolio-section { max-width:1100px; margin:6rem auto; padding:0 2rem; }
.tab-bar { display:flex; gap:0; border-bottom:2px solid #e0d8c8; margin-bottom:2rem; flex-wrap:wrap; }
.tab-btn {
  background:none; border:none; padding:.85rem 1.75rem; font-size:.95rem;
  font-weight:500; color:#888; cursor:pointer; position:relative;
  transition:color var(--transition); font-family:var(--ff-body);
  display:flex; align-items:center; gap:.4rem;
}
.tab-btn::after {
  content:''; position:absolute; bottom:-2px; left:0; right:0;
  height:2px; background:var(--gold); transform:scaleX(0); transition:transform var(--transition);
}
.tab-btn:hover { color:var(--ink); }
.tab-btn.active { color:var(--ink); font-weight:700; }
.tab-btn.active::after { transform:scaleX(1); }
.tab-panel { display:none; animation:fadeIn .4s ease; }
.tab-panel.active { display:block; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.masonry-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:1rem;
}
.masonry-grid img {
  width:100%; border-radius:var(--radius); object-fit:cover; aspect-ratio:4/3;
  transition:transform .4s ease, box-shadow .4s ease;
}
.masonry-grid img:hover { transform:scale(1.03); box-shadow:var(--shadow-lg); z-index:2; position:relative; }

/* ═══ QUOTE FORM ═══ */
.quote-section {
  background:var(--ink-2); padding:6rem 2rem; position:relative; overflow:hidden;
}
.quote-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 60% 50%,rgba(201,168,76,.08),transparent 70%);
  pointer-events:none;
}
.quote-inner {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; position:relative;
}
.quote-left h2 { margin-bottom:1rem; }
.quote-sub { color:rgba(255,255,255,.6); line-height:1.7; margin-bottom:2rem; }
.quote-contacts { display:flex; flex-direction:column; gap:.75rem; }
.quote-contacts a { display:flex; align-items:center; gap:.75rem; color:rgba(255,255,255,.7); font-size:.95rem; transition:color var(--transition); }
.quote-contacts a:hover { color:var(--gold); }
.quote-contacts i { color:var(--gold); width:18px; }
.quote-form { background:var(--paper-2); border-radius:var(--radius-lg); padding:2rem; box-shadow:var(--shadow-lg); }
.form-group { margin-bottom:1.2rem; }
.form-group label { display:block; font-size:.85rem; font-weight:600; margin-bottom:.4rem; color:var(--ink-3); }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:.75rem 1rem; border:1.5px solid #ddd;
  border-radius:var(--radius); font-size:.9rem; font-family:var(--ff-body);
  color:var(--ink); background:var(--white); outline:none;
  transition:border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,.15); }
.form-group textarea { resize:vertical; min-height:80px; }
.form-note { text-align:center; font-size:.78rem; color:#999; margin-top:.75rem; }

/* ═══ MOTTO ═══ */
.motto-section { padding:6rem 2rem; background:var(--paper); text-align:center; }
.motto-inner { max-width:700px; margin:0 auto; }
.motto-logo { width:80px; margin:0 auto 2rem; }
.motto-section blockquote {
  font-family:var(--ff-display); font-size:clamp(1.8rem,4vw,2.8rem);
  line-height:1.25; color:var(--ink); font-style:italic; margin-bottom:1rem;
}
.motto-section cite { color:var(--gold); font-family:var(--ff-caps); letter-spacing:2px; font-size:.9rem; font-style:normal; }

/* ═══ CLIENTS — PROMINENT CARDS ═══ */
.clients-section { max-width:1100px; margin:6rem auto; padding:0 2rem; }
.clients-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(180px,1fr));
  gap:1.5rem;
}
.client-card {
  display:flex; flex-direction:column; align-items:center; gap:1rem;
  background:var(--white);
  border:1.5px solid #e8e0d0;
  border-radius:var(--radius-lg);
  padding:2rem 1.5rem 1.5rem;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor:default;
}
.client-card:hover {
  transform:translateY(-5px);
  box-shadow:0 12px 32px rgba(0,0,0,.12);
  border-color:var(--gold);
}
.client-img-wrap {
  width:100px; height:80px;
  display:flex; align-items:center; justify-content:center;
  background:var(--paper);
  border-radius:var(--radius);
  padding:.5rem;
  overflow:hidden;
}
.client-img-wrap img {
  max-width:100%; max-height:100%;
  object-fit:contain;
  filter:none;
  transition:transform var(--transition);
}
.client-card:hover .client-img-wrap img { transform:scale(1.08); }
.client-name {
  font-family:var(--ff-caps);
  font-size:1rem; letter-spacing:2px;
  color:var(--ink-3);
}

/* ═══ CONTACT ═══ */
.contact-section { background:var(--ink); padding:6rem 2rem; }
.contact-section .section-head { margin-bottom:3rem; }
.contact-grid {
  max-width:900px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:1rem;
}
.contact-card {
  display:flex; flex-direction:column; align-items:center; gap:.75rem;
  padding:2rem 1rem; border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.08); color:var(--white);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align:center;
}
.contact-card i { font-size:2rem; }
.contact-card span { font-size:.9rem; font-weight:500; }
.contact-card:hover { transform:translateY(-4px); box-shadow:0 8px 32px rgba(0,0,0,.4); border-color:rgba(255,255,255,.2); }
.contact-card.phone    { background:rgba(255,165,0,.15); }
.contact-card.phone:hover { background:rgba(255,165,0,.25); }
.contact-card.phone i  { color:orange; }
.contact-card.email    { background:rgba(192,57,43,.15); }
.contact-card.email:hover { background:rgba(192,57,43,.25); }
.contact-card.email i  { color:#e74c3c; }
.contact-card.whatsapp { background:rgba(37,211,102,.12); }
.contact-card.whatsapp:hover { background:rgba(37,211,102,.22); }
.contact-card.whatsapp i { color:var(--green); }
.contact-card.instagram { background:rgba(228,64,95,.12); }
.contact-card.instagram:hover { background:rgba(228,64,95,.22); }
.contact-card.instagram i { color:var(--insta); }
.contact-card.facebook { background:rgba(24,119,242,.12); }
.contact-card.facebook:hover { background:rgba(24,119,242,.22); }
.contact-card.facebook i { color:#4e8ef7; }
.contact-card.upwork   { background:rgba(111,218,68,.12); }
.contact-card.upwork:hover { background:rgba(111,218,68,.22); }
.contact-card.upwork i { color:var(--upwork); }

/* ═══ MAP ═══ */
.map-section { max-width:1100px; margin:6rem auto; padding:0 2rem; }
.map-wrap {
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lg); border:3px solid rgba(201,168,76,.2);
}
.map-wrap iframe { width:100%; height:450px; display:block; border:none; }
.map-cta { margin-top:1.5rem; text-align:center; }

/* ═══ FOOTER ═══ */
.footer { background:var(--ink); border-top:1px solid rgba(201,168,76,.15); padding:3rem 2rem 1.5rem; }
.footer-inner {
  max-width:1100px; margin:0 auto 2rem;
  display:flex; flex-wrap:wrap; gap:2rem; justify-content:space-between; align-items:flex-start;
}
.footer-brand span { font-family:var(--ff-caps); font-size:1.2rem; color:var(--white); letter-spacing:2px; display:block; margin-bottom:.5rem; }
.footer-brand p { color:rgba(255,255,255,.45); font-size:.85rem; line-height:1.7; }
.footer-links { display:flex; flex-direction:column; gap:.5rem; }
.footer-links a { color:rgba(255,255,255,.5); font-size:.9rem; transition:color var(--transition); }
.footer-links a:hover { color:var(--gold); }
.footer-social { display:flex; gap:1rem; align-items:center; }
.footer-social a {
  width:40px; height:40px; border-radius:50%;
  border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.6); font-size:1.1rem; transition:var(--transition);
}
.footer-social a:hover { border-color:var(--gold); color:var(--gold); }
.footer-copy {
  text-align:center; color:rgba(255,255,255,.25); font-size:.8rem;
  border-top:1px solid rgba(255,255,255,.07); padding-top:1rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width:900px) {
  .about-inner, .quote-inner { grid-template-columns:1fr; gap:3rem; }
  .about-image { aspect-ratio:16/9; }
  .about-badge { bottom:-1rem; right:-1rem; width:90px; height:90px; }
  .about-badge strong { font-size:1.6rem; }
  .contact-grid { grid-template-columns:repeat(2,1fr); }
  .hero-stamp { display:none; }
  .hero-content { margin:0 auto; text-align:center; }
  .hero-actions { justify-content:center; }
  .footer-inner { flex-direction:column; align-items:center; text-align:center; }
  .footer-links { align-items:center; }
  .stat-divider { display:none; }
}

@media (max-width:680px) {
  #navMenu {
    display:none; position:absolute; top:var(--nav-h); left:0; right:0;
    background:var(--ink); border-top:1px solid rgba(201,168,76,.15); padding:1rem;
  }
  #navMenu.open { display:block; }
  #navMenu ul { flex-direction:column; gap:0; }
  #navMenu li a { display:block; padding:.85rem 1rem; border-radius:var(--radius); }
  .nav-cta { display:inline-block; width:100%; text-align:center; }
  .hamburger { display:flex; }
  .contact-grid { grid-template-columns:1fr 1fr; }
  .tab-bar { overflow-x:auto; }
  .tab-btn { white-space:nowrap; flex-shrink:0; padding:.75rem 1.25rem; }
  .quote-form { padding:1.5rem; }
  .map-wrap iframe { height:300px; }
  .clients-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:480px) {
  .contact-grid { grid-template-columns:1fr; }
  .clients-grid { grid-template-columns:repeat(2,1fr); }
  .hero-title { font-size:clamp(2.8rem,13vw,5rem); }
  .stats-inner { gap:1.5rem; }
}
