/* NewlyNow TRX Theme — Cream + Petrol + Orange
   Clean luxury aesthetic, no emojis/reactions in UI */

:root {
  --orange: #F7941E;
  --orange-2: #F5A63E;
  --turq: #5FD0C2;
  --bg: #F3EEE4;
  --bg-2: #0A2E33;
  --text: #1E2C33;
  --muted: #5C6C71;
  --dim: #889;
  --pink: #22B4A5;
  --purple: #F7941E;
  --violet: #22B4A5;
  --yellow: #F7941E;
  --teal: #22B4A5;
  --grad-from: #F7941E;
  --grad-mid: #F6A238;
  --grad-to: #F7941E;
  --glass: #0E3A40;
  --glass-brd: rgba(255,255,255,.07);
  --ticker-bg: #0A2E33;
}

body {
  background: #F3EEE4 !important;
  color: #1E2C33 !important;
  transition: background .3s, color .3s;
}

body::before, body::after { display: none !important; }
.section { background: transparent !important; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(95,208,194,.03), transparent) !important;
}
.orb { display: none !important; }

/* ===== ANIMATIONS ===== */
@keyframes revealIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}

.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  animation: staggerIn .6s ease-out forwards;
  animation-delay: var(--stagger-delay, 0s);
}

* {
  transition-property: background, border-color, box-shadow, color, transform;
  transition-duration: .3s;
  transition-timing-function: ease;
}

button, .btn, a { transition: all .2s ease; }

/* ===== NAV ===== */
.nav, .nav.scrolled {
  background: rgba(243,238,228,.95) !important;
  border-bottom: 1px solid rgba(0,0,0,.07) !important;
  backdrop-filter: blur(12px);
}

.nav-links a { color: #2A3B42 !important; }
.nav-links a:hover, .nav-links a.active { color: var(--orange) !important; }
.brand-name { color: #1E2C33 !important; }
.brand-name em { color: var(--orange) !important; -webkit-text-fill-color: var(--orange) !important; background: none !important; }
.nav-toggle { color: #1E2C33 !important; border-color: rgba(0,0,0,.18) !important; }

/* ===== HERO ===== */
.hero-title { color: #16242B !important; }
.hero-word { opacity: .05 !important; }
.hero-sub, .head p, .cat-hero-intro { color: #51636A !important; }

/* ===== HEADINGS ===== */
.grad-text {
  color: var(--turq) !important;
  -webkit-text-fill-color: var(--turq) !important;
  background: none !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.14);
}

.eyebrow {
  color: var(--orange) !important;
  font-weight: 800;
}

/* ===== CARDS ===== */
.glass, .cat, .svc, .stat, .mq-card, .co-item, .checkout-summary, .checkout-form,
.cf-card, .search-bar, .svc-order-box, .acc-card, .port, .step, .cta-box, .tcard,
.trx-social, .trx-q, .pop-card {
  background: #0E3A40 !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  color: #EAF6F4 !important;
  box-shadow: 0 14px 34px rgba(18,42,49,.16) !important;
}

.glass *, .cat *, .svc *, .stat *, .step *, .cta-box *, .tcard *, .co-item *,
.checkout-summary *, .checkout-form *, .trx-q *, .pop-card * {
  color: #EAF6F4;
}

.cat > p, .svc p, .stat p, .step p, .tcard p, .pop-card p {
  color: rgba(234,246,244,.7) !important;
}

.cat .grad-text, .stat .grad-text, .stat-num, .svc .grad-text {
  color: var(--turq) !important;
  -webkit-text-fill-color: var(--turq) !important;
  background: none !important;
}

.cat:hover, .svc:hover, .pop-card:hover, .pf-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 54px rgba(18,42,49,.28) !important;
}

.badge {
  background: rgba(95,208,194,.16) !important;
  border: 1px solid rgba(95,208,194,.4) !important;
  color: var(--turq) !important;
}

.stars i { color: #F7941E !important; }

/* ===== BUTTONS ===== */
.btn-grad {
  background: linear-gradient(90deg,var(--orange),var(--orange-2)) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 800;
  text-shadow: none !important;
  box-shadow: 0 10px 24px rgba(247,148,30,.32) !important;
}

.btn-grad:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 32px rgba(247,148,30,.42) !important;
}

.btn-ghost {
  background: transparent !important;
  border: 1px solid var(--teal) !important;
  color: #0E8578 !important;
}

.btn-ghost:hover {
  background: var(--teal) !important;
  color: #fff !important;
}

.glass .btn-ghost, .cat .btn-ghost, .cta-box .btn-ghost, .svc .btn-ghost {
  border-color: var(--turq) !important;
  color: var(--turq) !important;
}

.glass .btn-ghost:hover, .cta-box .btn-ghost:hover {
  background: var(--teal) !important;
  color: #fff !important;
}

/* ===== INPUTS ===== */
input, textarea, select {
  background: #0A2E33 !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: #EAF6F4 !important;
}

input::placeholder, textarea::placeholder {
  color: rgba(234,246,244,.5) !important;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--teal) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(34,180,165,.2) !important;
}

.search-bar input {
  background: transparent !important;
  border: none !important;
}

.search-bar i {
  color: rgba(234,246,244,.7) !important;
}

/* ===== TICKER + FOOTER ===== */
.top-ticker {
  background: #0A2E33 !important;
  border-bottom: 1px solid rgba(0,0,0,.15) !important;
}

.top-ticker .ticker-track span {
  color: #EAF6F4 !important;
}

.top-ticker .tk-dot {
  color: var(--orange) !important;
}

.footer {
  background: #0A2A2F !important;
  border-top: 1px solid rgba(0,0,0,.15);
  color: #EAF6F4 !important;
}

.footer * { color: #EAF6F4; }
.footer a { color: rgba(234,246,244,.72) !important; }
.footer a:hover { color: var(--orange) !important; }

/* ===== SECTIONS ===== */
.head h2 {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.head h2::before {
  content: "‹";
  color: var(--orange);
  opacity: .7;
  font-weight: 900;
}

.head h2::after {
  content: "›";
  color: var(--orange);
  opacity: .7;
  font-weight: 900;
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
}

.category-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.8rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  background: #0E3A40 !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  color: #EAF6F4 !important;
  box-shadow: 0 14px 34px rgba(18,42,49,.16) !important;
  transition: all .3s ease;
}

.category-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(18,42,49,.28) !important;
}

.category-tile h3 {
  margin: .8rem 0 .4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #EAF6F4;
}

.category-tile p {
  font-size: .85rem;
  color: rgba(234,246,244,.7);
  margin: 0;
}

.cat-icon {
  font-size: 2.5rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--g1, #0E3A40), var(--g2, #0A2E33));
  color: rgba(255,255,255,.9);
}

/* Legacy .cat-grid support */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
}

.cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  background: #0E3A40 !important;
  border: 1px solid rgba(255,255,255,.06) !important;
}

.cat-ico {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
}

.cat h3 {
  margin: .5rem 0;
  font-size: 1rem;
  font-weight: 700;
}

.cat p {
  font-size: .85rem;
  margin: 0;
}

/* ===== CONTAINER WIDE ===== */
.container-wide {
  width: min(1400px, 95%);
  margin-inline: auto;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
  padding: 4rem 0 3rem 0;
}

.hero {
  padding-bottom: 2rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: .5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
  font-weight: 800;
}

/* ===== SERVICES CAROUSEL (Horizontal Scroll) ===== */
.services-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
  margin: 0 -1rem;
  padding-inline: 1rem;
  -webkit-overflow-scrolling: touch;
}

.services-carousel::-webkit-scrollbar {
  height: 8px;
}

.services-carousel::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
}

.services-carousel::-webkit-scrollbar-thumb {
  background: rgba(95,208,194,.4);
  border-radius: 10px;
}

.services-carousel::-webkit-scrollbar-thumb:hover {
  background: rgba(95,208,194,.6);
}

/* ===== SERVICE CARD (60% viewport width) ===== */
.service-card {
  flex: 0 0 60vw;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  background: #0E3A40 !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  box-shadow: 0 14px 34px rgba(18,42,49,.16) !important;
  transition: all .3s ease;
  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(18,42,49,.28) !important;
}

/* ===== CARD IMAGE SECTION ===== */
.card-image {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, var(--g1, #0E3A40), var(--g2, #0A2E33));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.9);
  overflow: hidden;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(247,148,30,.25);
  color: var(--orange);
  padding: .4rem .9rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  border: 1px solid rgba(247,148,30,.4);
}

/* ===== CARD CONTENT SECTION ===== */
.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: #EAF6F4 !important;
  line-height: 1.3;
}

.card-content > p {
  font-size: .95rem;
  color: rgba(234,246,244,.75) !important;
  margin: 0;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .95rem;
  color: #EAF6F4;
  font-weight: 600;
}

.card-rating i {
  color: var(--orange);
  font-size: 1rem;
}

.card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange) !important;
  margin: .5rem 0;
}

.btn-add {
  background: linear-gradient(90deg, var(--orange), var(--orange-2)) !important;
  color: #fff !important;
  border: none;
  padding: .85rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s ease;
  margin-top: auto;
}

.btn-add:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 20px rgba(247,148,30,.35);
}

/* ===== SERVICES GRID (Featured) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
}

.svc-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.svc h3 {
  margin: .5rem 0 .8rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.svc p {
  font-size: .9rem;
  line-height: 1.5;
}

/* ===== POPULAR SERVICES ===== */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pop-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 16px;
  position: relative;
  text-decoration: none;
}

.pop-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(247,148,30,.2);
  color: var(--orange);
  padding: .4rem .8rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.pop-ico {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pop-card h3 {
  margin: 1rem 0 .5rem;
  font-size: 1rem;
  font-weight: 700;
}

.pop-card p {
  font-size: .85rem;
  margin: 0 0 1rem;
}

.pop-price {
  display: block;
  color: var(--orange);
  font-weight: 800;
  font-size: .95rem;
}

/* ===== STEPS GRID ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  position: relative;
  background: #0E3A40 !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  color: #EAF6F4 !important;
  box-shadow: 0 14px 34px rgba(18,42,49,.16) !important;
  transition: all .3s ease;
}

.step:hover {
  transform: translateY(-8px);
}

.step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(247,148,30,.2);
  color: var(--orange);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step h4 {
  margin: .5rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #EAF6F4;
}

.step p {
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(234,246,244,.7);
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: #0E3A40 !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  color: #EAF6F4 !important;
  box-shadow: 0 14px 34px rgba(18,42,49,.16) !important;
  transition: all .3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(247,148,30,.2);
  color: var(--orange);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-card h4 {
  margin: .5rem 0 .8rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #EAF6F4;
}

.step-card p {
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(234,246,244,.7);
}

/* ===== CTA SECTION ===== */
.cta-hero {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(34,180,165,.1), rgba(247,148,30,.05));
}

.cta-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  color: #EAF6F4;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(234,246,244,.75);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CTA BOX (Legacy) ===== */
.cta-box {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  background: #0E3A40 !important;
  border: 1px solid rgba(255,255,255,.06) !important;
}

.cta-box h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
  color: #EAF6F4;
}

.cta-box p {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: rgba(234,246,244,.8) !important;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER CONTENT ===== */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col .brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  margin-bottom: 1rem;
  color: #EAF6F4;
}

.footer-col p {
  color: rgba(234,246,244,.72);
  font-size: .95rem;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #EAF6F4;
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin-bottom: .8rem;
  color: rgba(234,246,244,.72) !important;
  font-size: .95rem;
  transition: all .3s;
}

.footer-col a:hover {
  color: var(--orange) !important;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(95,208,194,.15);
  border-radius: 10px;
  font-size: 1.2rem;
  color: var(--turq);
  text-decoration: none;
  transition: all .3s;
}

.social-links a:hover {
  background: var(--turq);
  color: #fff !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  text-align: center;
  color: rgba(234,246,244,.6);
  font-size: .9rem;
}

.footer-bottom p {
  margin: 0;
}

/* ===== LEGACY FOOTER GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.foot-brand a {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.brand-logo-img {
  height: 40px;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
}

.foot-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(95,208,194,.1);
  border-radius: 8px;
  font-size: 1.2rem;
  transition: all .3s;
}

.foot-social a:hover {
  background: var(--teal);
  color: #fff !important;
}

.foot-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #EAF6F4;
}

.foot-col a {
  display: block;
  text-decoration: none;
  margin-bottom: .8rem;
  color: rgba(234,246,244,.72) !important;
}

.foot-col a:hover {
  color: var(--orange) !important;
}

/* ===== DIVIDER ===== */
.divider-section {
  height: 60px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(247,148,30,.1) 25%,
    rgba(247,148,30,.15) 50%,
    rgba(247,148,30,.1) 75%,
    transparent 100%);
  position: relative;
}

.divider-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(247,148,30,.3) 50%,
    transparent 100%);
  transform: translateY(-50%);
}

.divider-wave {
  height: 50px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(247,148,30,.08) 25%,
    rgba(247,148,30,.12) 50%,
    rgba(247,148,30,.08) 75%,
    transparent 100%);
  position: relative;
  margin: 2rem 0;
}

.divider-wave::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(247,148,30,.25) 50%,
    transparent 100%);
  transform: translateY(-50%);
}

/* ===== WHATSAPP FAB ===== */
.fab-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  transition: all .3s ease;
  z-index: 999;
}

/* ===== MOBILE & RESPONSIVE ===== */
@media (max-width: 1400px) {
  .service-card {
    flex: 0 0 70vw;
  }
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 80vw;
    max-width: 500px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .nav-links {
    background: #F3EEE4 !important;
    border-bottom: 1px solid rgba(0,0,0,.1) !important;
    box-shadow: 0 20px 40px rgba(18,42,49,.15);
  }

  .nav-links li a {
    color: #1E2C33 !important;
    border-bottom: 1px solid rgba(0,0,0,.08) !important;
    font-weight: 700;
  }

  .nav-links li a:hover {
    color: var(--orange) !important;
  }
}

@media (max-width: 768px) {
  .service-card {
    flex: 0 0 90vw;
    max-width: 100%;
  }

  .card-image {
    height: 200px;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .fab-wa {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 560px) {
  .service-card {
    flex: 0 0 100vw;
    margin: 0 -20px;
    width: calc(100vw - 40px);
    border-radius: 16px;
  }

  .card-image {
    height: 180px;
    font-size: 3.5rem;
  }

  .card-content {
    padding: 1.2rem;
  }

  .card-content h3 {
    font-size: 1.1rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
  }

  .category-tile {
    padding: 1.2rem .8rem;
  }

  .category-tile h3 {
    font-size: .95rem;
  }

  .category-tile p {
    font-size: .8rem;
  }

  .cat-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .container-wide {
    width: 95%;
  }

  .cta-hero {
    padding: 2.5rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .fab-wa {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    bottom: 1rem;
    right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
