/* ─────────────────────────────────────────────
   NexaDigital — style.css
   ───────────────────────────────────────────── */

/* ── CSS VARIABLES ─────────────────────────── */
:root {
  --bg:       #ffffff;
  --bg2:      #fff8f2;
  --surface:  #fff1e6;
  --border:   rgba(200, 100, 20, 0.15);
  --accent:   #ff7a20;
  --accent2:  #e85d04;
  --accent3:  #ffb347;
  --text:     #712f00;
  --muted:    #8a6650;
  --font-head: 'Aclonica', sans-serif;
  --font-body: 'Roboto Condensed', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-size: large;
  font-weight: 600;
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ── NAVIGATION ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-star {
  width: 32px;
  height: 32px;
  object-fit: contain;
  animation: rotateStar 6s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.6));
}
@keyframes rotateStar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
}
.logo span { color: var(--accent); }
 
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.logo-fusion {
  color: #512604;
  font-size: x-large;
}
.logo-enterprise {
  color: var(--accent);
  font-size: x-large;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #3b3b8f;
  letter-spacing: 0.03em;
  margin-top: 1px;
  padding-left: 45px;
}
 
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
 
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 500;
  transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 24px rgba(255, 122, 32, 0.4);
  transform: translateY(-1px);
  color: #fff !important;
}
 
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ── HERO ───────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 5vw 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 122, 32, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(255, 179, 71, 0.1) 0%, transparent 60%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(200, 100, 20, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 100, 20, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 122, 32, 0.1);
  border: 1px solid rgba(255, 122, 32, 0.3);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}
.badge::before {
  content: '●';
  font-size: 0.5rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  animation: fadeUp 0.7s 0.15s ease both;
}
h1 .line2 { color: var(--accent);}
h1 .line3 {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1.8rem auto 2.8rem;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  animation: fadeUp 0.7s 0.45s ease both;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: box-shadow 0.3s, transform 0.2s;
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(255, 122, 32, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid #4fc3f7;
  color: #fff;
  background: #29b6f6;
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.btn-outline:hover {
  background: #0288d1;
  border-color: #0288d1;
  box-shadow: 0 0 24px rgba(41, 182, 246, 0.45);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 5rem;
  animation: fadeUp 0.7s 0.6s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 0;
  background: linear-gradient(135deg, #2b1a0e 0%, #1a1a1a 40%, #3d1f00 100%);
  position: relative;
}

/* fade edges left & right */
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #2b1a0e, transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #2b1a0e, transparent);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding: 1.5rem 0;
}

/* every span gets a pill style */
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  margin: 0 0.5rem;
  transition: transform 0.2s;
}

/* 3 rotating color styles */
.marquee-track span:nth-child(3n+1) {
  background: var(--accent);
  color: rgba(234, 236, 239, 0.85);
  box-shadow: 0 2px 12px rgba(255,122,32,0.35);
}
.marquee-track span:nth-child(3n+2) {
  background: rgba(30, 117, 223, 0.85);
  color:  rgba(234, 236, 239, 0.85);
  box-shadow: 0 2px 12px rgba(234, 236, 239, 0.85);
}
.marquee-track span:nth-child(3n+3) {
  background: #7a4b2a;
  color: rgba(234, 236, 239, 0.85);
  border: 1px solid rgba(255,122,32,0.3);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.marquee-track span::after {
  content: '✦';
  font-size: 0.65rem;
  opacity: 0.8;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION COMMONS ────────────────────────── */
section { padding: 7rem 5vw; }

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;
}
.section-sub {
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-top: 1rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICES ───────────────────────────────── */
#services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.service-card {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  border-radius: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--surface);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,122,32,0.2);
  z-index: 2;
}
 
/* Left side — image */
.card-left {
  width: 42%;
  flex-shrink: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}
.card-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--surface) 100%);
}
 
/* Right side — content */
.card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem 1.2rem 1.2rem 1rem;
  position: relative;
  background: var(--surface);
}
 
/* Logo — top right of card-right */
.card-logo {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  padding: 4px;
  background: transparent;
  pointer-events: none;
  transition: transform 0.3s;
  z-index: 1;
}
.service-card:hover .card-logo {
  transform: scale(1.2);
}
 
/* Card content — center of right side */
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2.5rem;
  padding-top: 0.5rem;
}
 
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  display: inline-block;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.service-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}
 
/* Get Quote button — bottom right */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  background: rgb(255, 0, 0);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 0.8rem;
  transition: box-shadow 0.3s, transform 0.2s;
  pointer-events: none;
}
.service-card:hover .service-link {
  box-shadow: 0 4px 14px rgba(255,122,32,0.4);
  transform: translateX(5px);
  pointer-events: all;
}

/* ── ABOUT ──────────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 420px;
}
.about-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
}
.about-card.main {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 2rem;
  z-index: 0;

/* Circuit board background like Image 2 */
  background:
    url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=700&q=80') center/cover,
    linear-gradient(135deg, #ffe0c8 0%, #fff1e6 100%);
  border-radius: 20px;
}
.about-card.main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,200,150,0.3) 0%,
    rgba(255,150,80,0.5) 60%,
    rgba(200,80,20,0.65) 100%
  );
  z-index: 0;
  border-radius: 20px;
}
.about-card-text {
  position: relative;
  z-index: 2;
}
.about-card-text h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}
.about-card-text p {
  color: #ffffff;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
 
/* Gold badge — Image 2 style */
.about-card.float {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -20px;
  text-align: center;
  background: radial-gradient(circle at 40% 35%, #fff5c0, #e8a020 40%, #a05000 80%, #6b3000 100%);
  border: 3px solid #c8860a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(180,100,0,0.4), inset 0 2px 6px rgba(255,240,150,0.5);
  padding: 0;
}
.about-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #2b1a0e;
  line-height: 1;
}
.badge-text {
  color: #2b1a0e;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0.2rem;
  text-align: center;
}
 
.about-text .section-sub { max-width: 100%; }
 
.about-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem 1.3rem;
  border-radius: 12px;
  transition: border-color 0.3s;
}
.feat:hover { border-color: rgba(0, 229, 255, 0.3); }
.feat-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.feat h4 { font-size: 0.92rem; font-weight: 600; }
.feat p  { color: var(--muted); font-size: 0.85rem; margin-top: 0.2rem; }

/* ── CONTACT ────────────────────────────────── */
#contact { background: var(--bg2); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  margin-top: 4rem;
  text-align: center;
  align-items: center;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
}
.contact-info p {
  color: var(--muted);
  margin-top: 0.8rem;
  line-height: 1.7;
  font-size: 1.1rem;
}
.contact-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
  font-size: 1.1rem;
}
.contact-item span:first-child {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; font-size: large;}
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; font-size: large;}
.form-group   { display: flex; flex-direction: column; gap: 0.5rem; font-size: large;}

label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
input, textarea, select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 32, 0.12);
}
textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
  width: 100%;
  transition: box-shadow 0.3s, transform 0.2s, background 0.2s;
  letter-spacing: 0.03em;
}
.btn-submit:hover {
  box-shadow: 0 0 32px rgba(255, 122, 32, 0.45);
  transform: translateY(-2px);
  background: #e86910;
}
.btn-submit:active {
  transform: translateY(0px);
  box-shadow: none;
}
.btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
footer p { color: var(--muted); font-size: 0.85rem; }

.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.2s;
}
/* Instagram hover — brand gradient */
.social-link[title="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}
/* WhatsApp hover — brand green */
.social-link[title="WhatsApp"]:hover {
  background: #25d366;
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

/* ── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO TITLE WITH STARS ───────────────────── */
.hero-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.hero-star {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.7));
  animation: rotateStar 8s linear infinite;
  flex-shrink: 0;
}
.right-star {
  animation-direction: reverse;
}


.hero-logo-wrap {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}
.hero-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 8px 24px rgba(255,122,32,0.25));
}

/* ── FOOTER LOGO ─────────────────────────────── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}
.footer-star {
  width: 32px;
  height: 32px;
  object-fit: contain;
  animation: rotateStar 6s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.6));
}
.footer-logo strong { color: var(--accent); }
 
 
.service-card { cursor: pointer; }

/* ── SERVICE CARD BG COLORS ─────────────────── */
/* Individual background colors matched to logo */
 
/* rgb.png cards → vibrant colorful backgrounds */
.service-card[onclick*="event"] {
  background: linear-gradient(135deg, rgba(255,107,107,0.35) 0%, rgba(254,202,87,0.35) 50%, rgba(72,219,251,0.35) 100%) !important;
}
/* cmyk.png cards → cyan/magenta/yellow/dark ink backgrounds */
.service-card[onclick*="gifts"] {
  background: linear-gradient(135deg, rgba(0,180,216,0.35) 0%, rgba(224,64,251,0.35) 50%, rgba(253,216,53,0.35) 100%) !important;
}
/* cmyk-rgb.png cards → rich mixed color backgrounds */
.service-card[onclick*="printing"] {
  background: linear-gradient(135deg, rgba(0,180,216,0.35) 0%, rgba(224,64,251,0.35) 40%, rgba(253,216,53,0.35) 70%, rgba(76,175,80,0.35) 100%) !important;
}
/* cmyk.png → calendar → ink colors */
.service-card[onclick*="calendar"] {
  background: linear-gradient(135deg, rgba(0,180,216,0.35) 0%, rgba(224,64,251,0.35) 50%, rgba(253,216,53,0.35) 100%) !important;
}
/* cmyk-rgb.png → sublimation → full spectrum */
.service-card[onclick*="sublimation"] {
  background: linear-gradient(135deg, rgba(0,180,216,0.35) 0%, rgba(224,64,251,0.35) 30%, rgba(253,216,53,0.35) 60%, rgba(76,175,80,0.35) 80%, rgba(33,150,243,0.35) 100%) !important;
}
/* cmyk.png → branding → ink */
.service-card[onclick*="branding"] {
  background: linear-gradient(135deg, rgba(0,180,216,0.35) 0%, rgba(224,64,251,0.35) 50%, rgba(253,216,53,0.35) 100%) !important;
}
/* cmyk-rgb.png → dtf → full spectrum */
.service-card[onclick*="dtf"] {
  background: linear-gradient(135deg, rgba(0,180,216,0.35) 0%, rgba(224,64,251,0.35) 30%, rgba(253,216,53,0.35) 60%, rgba(76,175,80,0.35) 80%, rgba(33,150,243,0.35) 100%) !important;
}
/* cmyk.png → stamp → ink */
.service-card[onclick*="stamp"] {
  background: linear-gradient(135deg, rgba(0,180,216,0.35) 0%, rgba(224,64,251,0.35) 50%, rgba(253,216,53,0.35) 100%) !important;
}
/* rgb.png → lamination → red/green/blue */
.service-card[onclick*="lamination"] {
  background: linear-gradient(135deg, rgba(255,59,59,0.35) 0%, rgba(76,175,80,0.35) 50%, rgba(33,150,243,0.35) 100%) !important;
}
/* rgb.png → frame → red/green/blue */
.service-card[onclick*="frame"] {
  background: linear-gradient(135deg, rgba(255,59,59,0.35) 0%, rgba(76,175,80,0.35) 50%, rgba(33,150,243,0.35) 100%) !important;
}
/* cmyk-rgb.png → web → full spectrum */
.service-card[onclick*="web"] {
  background: linear-gradient(135deg, rgba(0,180,216,0.35) 0%, rgba(224,64,251,0.35) 30%, rgba(253,216,53,0.35) 60%, rgba(76,175,80,0.35) 80%, rgba(33,150,243,0.35) 100%) !important;
}
/* cmyk-rgb.png → social → full spectrum */
.service-card[onclick*="social"] {
  background: linear-gradient(135deg, rgba(0,180,216,0.35) 0%, rgba(224,64,251,0.35) 30%, rgba(253,216,53,0.35) 60%, rgba(76,175,80,0.35) 80%, rgba(33,150,243,0.35) 100%) !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 26, 14, 0.5);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.8rem;
  max-width: 600px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1);
  box-shadow: 0 24px 60px rgba(255, 122, 32, 0.12);
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.modal-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.modal-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.modal-desc {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 1.8rem;
}
.modal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.modal-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.87rem;
  color: var(--text);
}
.modal-feature::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.modal-process { margin-bottom: 2rem; }
.modal-process h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-num {
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.step-text { font-size: 0.9rem; color: var(--muted); line-height: 1.5; padding-top: 4px; }
.modal-cta { display: inline-block; margin-top: 0.5rem; }

/* ── FLOATING WHATSAPP BUTTON ────────────────── */
.whatsapp-float {
  position: calc(center);
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.3s;
  animation: fadeUp 1s 1s ease both;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  #about         { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual  { display: none; }
  .contact-wrap  { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 700px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .form-row   { grid-template-columns: 1fr; }
}