/* ============================================================
   FAROOQ JAVED — style.css (FINAL)
   Palette: #FFFFFF (white) · #0A0A0A (black) · #C9A84C (gold)
   Fonts: Cormorant Garamond (headings) · Inter (body)
   Fixed: CLS, forced reflow, contrast, accessibility
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black:       #0A0A0A;
  --white:       #FFFFFF;
  --gold:        #C9A84C;
  --gold-dark:   #A07D2A;
  --gold-light:  #E8D4A0;
  --bg-alt:      #F7F4EF;
  --text-muted:  #3A3A3A;
  --text-dark:   #1a1a1a;
  --border:      #E0D9CC;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --max-w:       1200px;
  --header-h:    72px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-gold:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 18px;
  font-family: var(--font-body);
  font-display: swap;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s;
}

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

.gold-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .75rem;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ---------- Accessibility ---------- */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--black);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }

a:focus-visible,
button:focus-visible,
.portfolio-card:focus-visible,
.service-card:focus-visible,
.blog-card:focus-visible,
.case-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Improved contrast */
.hero-description p,
.section-header p,
.service-card p,
.blog-card p,
.case-card p,
.footer-brand p {
  color: #2a2a2a;
}

.text-muted,
.blog-meta,
.review-text {
  color: #4a4a4a;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .85rem 2.2rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .2s, box-shadow .3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .25s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  font-size: .82rem;
  padding: .55rem 1.2rem;
}
.btn-whatsapp:hover {
  background: #1EB85A;
  border-color: #1EB85A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,.35);
}
.btn-whatsapp svg { width: 16px; height: 16px; fill: var(--white); }

/* ---------- Keyword Tags ---------- */
.keyword-tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.2s;
}
.keyword-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- HEADER ---------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color .3s, box-shadow .3s;
}
#site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.site-logo { flex-shrink: 0; }
.logo-pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--white);
  background: var(--black);
  padding: .45rem 1.3rem;
  border-radius: 100px;
  border: 2px solid var(--gold);
  transition: background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
  text-decoration: none;
}
.logo-pill span { color: var(--gold); }
.site-logo:hover .logo-pill {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 14px rgba(201,168,76,.4);
}
.site-logo:hover .logo-pill span { color: var(--black); }

/* Desktop navigation */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.nav-list { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .28rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--black);
  padding: .5rem .75rem;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  background: var(--bg-alt);
  color: var(--gold-dark);
}
.nav-link .caret {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .25s;
}
.nav-item:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease-gold), transform .25s var(--ease-gold), visibility .25s;
  z-index: 100;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  font-size: .84rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: .55rem .85rem;
  border-radius: 8px;
  transition: background .2s, color .2s, padding-left .2s;
  text-decoration: none;
}
.dropdown a:hover {
  background: var(--bg-alt);
  color: var(--gold-dark);
  padding-left: 1.1rem;
}
.dropdown-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .4rem .85rem .2rem;
  display: block;
}

.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 2px solid var(--black);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  padding: 0;
}
.burger:hover { background: var(--black); border-color: var(--black); }
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s var(--ease-gold), opacity .3s, background .2s;
}
.burger:hover span { background: var(--white); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-h));
  background: var(--white);
  border-top: 2px solid var(--gold);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .4s var(--ease-out);
  z-index: 999;
  padding: 1.5rem 0 3rem;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-list { padding: 0 1.5rem; }

.mobile-nav-item > .mobile-nav-link,
.mobile-nav-item > .mobile-nav-folder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  text-decoration: none;
}
.mobile-nav-item > .mobile-nav-link:hover,
.mobile-nav-item > .mobile-nav-folder:hover { color: var(--gold-dark); }

.mobile-folder-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
  flex-shrink: 0;
}
.mobile-nav-item.folder-open .mobile-folder-icon { transform: rotate(180deg); }

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-gold);
  padding-left: 1rem;
}
.mobile-nav-item.folder-open .mobile-sub { max-height: 500px; }
.mobile-sub a {
  display: block;
  font-size: .95rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
  text-decoration: none;
}
.mobile-sub a:hover { color: var(--gold-dark); padding-left: .5rem; }

.mobile-nav-actions {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ---------- HERO SECTION (CLS Fixed) ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse 80% 65% at 50% 45%, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.08) 40%, #f5f2ed 70%, #ffffff 100%);
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
}
.hero-bg-circle:nth-child(1) {
  width: 780px;
  height: 780px;
  top: -220px;
  right: -220px;
  border: 2px solid rgba(201,168,76,0.3);
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent);
  animation: floatCircle 14s ease-in-out infinite;
}
.hero-bg-circle:nth-child(2) {
  width: 480px;
  height: 480px;
  bottom: -130px;
  left: -130px;
  border: 1.5px solid rgba(201,168,76,0.25);
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent);
  animation: floatCircle 18s ease-in-out infinite reverse;
}
.hero-bg-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 18%;
  left: 8%;
  border: 1px solid rgba(201,168,76,0.2);
  background: radial-gradient(circle, rgba(201,168,76,0.05), transparent);
  animation: floatCircle 10s ease-in-out infinite;
}
.hero-bg-circle:nth-child(4) {
  width: 120px;
  height: 120px;
  bottom: 22%;
  right: 10%;
  border: 1px solid rgba(201,168,76,0.2);
  background: radial-gradient(circle, rgba(201,168,76,0.05), transparent);
  animation: floatCircle 8s ease-in-out 2s infinite reverse;
}
.hero-bg-line {
  position: absolute;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .15;
}
.hero-bg-line:nth-child(5) {
  width: 1px;
  height: 55%;
  top: 20%;
  left: 14%;
}
.hero-bg-line:nth-child(6) {
  width: 1px;
  height: 38%;
  top: 32%;
  right: 13%;
}
.hero-bg-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: .35;
}
.hero-bg-corner:nth-child(7) {
  top: calc(var(--header-h) + 24px);
  left: 32px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.hero-bg-corner:nth-child(8) {
  bottom: 32px;
  right: 32px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(3deg); }
  66% { transform: translate(-10px, 10px) rotate(-2deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--black);
  margin-bottom: 1rem;
  min-height: 90px;
}
.hero h1 em { font-style: italic; color: var(--gold-dark); }

.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  min-height: 60px;
}

.hero-description p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: #2a2a2a;
  max-width: 620px;
  margin: 0 auto 1rem;
  line-height: 1.65;
  min-height: 100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.4);
  padding: .4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.hero-scroll span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--black), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.5rem;
}

/* ---------- STATS BAR ---------- */
#stats {
  background: var(--black);
  padding: 2.5rem 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 80px;
}
.stat-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: .3rem;
}
.stats-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
}

/* ---------- SERVICES ---------- */
#services { padding: 7rem 0; background: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin: .5rem 0 1rem;
}
.section-header p { font-size: 1rem; color: #2a2a2a; line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform .35s var(--ease-gold), box-shadow .35s var(--ease-gold), border-color .35s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,.1);
  border-color: var(--gold-light);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background .3s, border-color .3s;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.8;
}
.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.service-card:hover .service-icon svg { stroke: var(--black); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .9rem;
  color: #2a2a2a;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.75rem;
}
.service-tags span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold-dark);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  padding: .25rem .65rem;
  border-radius: 100px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: .1rem;
}
.service-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .25s;
}
.service-card:hover .service-link { color: var(--gold-dark); border-color: var(--gold-dark); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- REVIEWS ---------- */
#reviews { padding: 7rem 0; background: var(--bg-alt); }
.reviews-track { display: flex; transition: transform .55s var(--ease-gold); }
.review-slide { min-width: 100%; padding: 0 1rem; }

.review-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}
.review-stars {
  display: flex;
  justify-content: center;
  gap: .3rem;
  margin-bottom: 1.5rem;
}
.review-stars svg { width: 22px; height: 22px; fill: var(--gold); }
.review-quote { position: relative; margin-bottom: 1.75rem; }
.review-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: .6;
  color: var(--gold-light);
  display: block;
  margin-bottom: .5rem;
}
.review-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.65;
}
.review-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.author-info strong { display: block; font-weight: 600; font-size: .95rem; }
.author-info span { font-size: .82rem; color: var(--text-muted); }

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2;
}
.slider-btn:hover { background: var(--black); transform: scale(1.08); }
.slider-btn:hover svg { stroke: var(--white); }

.slider-dots { display: flex; gap: .5rem; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ---------- BLOG ---------- */
#blog { padding: 7rem 0; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: transform .35s var(--ease-gold), box-shadow .35s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.09);
  border-color: var(--gold-light);
}
.blog-card-img { height: 200px; background: var(--bg-alt); position: relative; }
.blog-card-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card:hover .blog-card-img-inner { transform: scale(1.05); }
.blog-card-img svg { width: 48px; height: 48px; stroke: var(--gold-dark); fill: none; opacity: .6; }
.blog-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: .3rem .7rem;
  border-radius: 100px;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: .75rem;
  font-weight: 500;
  color: #4a4a4a;
  margin-bottom: .75rem;
  display: flex;
  gap: 1rem;
}
.blog-meta span::before { content: '·'; margin-right: .4rem; }
.blog-meta span:first-child::before { content: ''; }

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .65rem;
}
.blog-card h3 a { text-decoration: none; color: inherit; }
.blog-card:hover h3 { color: var(--gold-dark); }
.blog-card p { font-size: .875rem; color: #2a2a2a; line-height: 1.65; margin-bottom: 1.25rem; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-read-more svg { width: 13px; height: 13px; stroke: currentColor; fill: none; transition: transform .25s; }
.blog-card:hover .blog-read-more { color: var(--gold-dark); }
.blog-card:hover .blog-read-more svg { transform: translateX(4px); }
.blog-cta { text-align: center; margin-top: 3rem; }

/* ---------- EXPLORE / PORTFOLIO ---------- */
#explore {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
}
.explore-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(255,255,255,.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}
.explore-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.explore-inner .section-label { color: var(--gold); }
.explore-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: .5rem 0 1.25rem;
}
.explore-inner h2 em { font-style: italic; color: var(--gold); }
.explore-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.explore-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.case-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.75rem;
  text-align: left;
  transition: background .3s, border-color .3s, transform .3s;
  text-decoration: none;
  display: block;
}
.case-card:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
}
.case-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.case-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .4rem;
}
.case-card p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.55; margin: 0; }
.case-result {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: .75rem;
  background: rgba(201,168,76,.12);
  padding: .2rem .65rem;
  border-radius: 100px;
}

/* ---------- FOOTER ---------- */
#site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 4rem 0 2rem;
  color: var(--white);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.footer-brand .logo-pill { margin-bottom: 1.25rem; display: inline-block; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.65; max-width: 280px; }

.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s, transform .2s;
}
.social-btn svg { width: 18px; height: 18px; fill: rgba(255,255,255,.65); transition: fill .2s; }
.social-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.15);
  transform: translateY(-2px);
}
.social-btn:hover svg { fill: var(--gold); }

.footer-links h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color .2s, padding-left .2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--white); padding-left: .35rem; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .25rem .15rem;
}
.footer-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  padding: .3rem .6rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.footer-nav .sep {
  display: inline-block;
  color: rgba(255,255,255,.2);
  margin: 0 .1rem;
  font-size: .75rem;
}
.footer-extra {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-extra a {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  text-decoration: none;
}
.footer-extra a:hover { color: var(--gold); }
.footer-extra .sep { color: rgba(255,255,255,.2); }

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  text-align: center;
}
.footer-copy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-copy a:hover { color: var(--gold-light); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-cases { grid-template-columns: 1fr; }
  .footer-top { gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  html { font-size: 16px; }

  .main-nav { display: none; }
  .nav-actions .btn-whatsapp { display: none; }
  .burger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .explore-cases { grid-template-columns: 1fr; }
  .stats-inner { gap: 1.5rem; }
  .stats-divider { display: none; }
  .review-card { padding: 2rem 1.5rem; }
  .footer-top { flex-direction: column; }
  .footer-links { min-width: 0; }
  .hero-tags { display: none; }
  .hero h1 { min-height: 60px; }
  .hero h2 { min-height: 40px; }
  .hero-description p { min-height: 80px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
  .service-card { padding: 2rem 1.5rem; }
  .section-header h2 { font-size: 1.9rem; }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  .site-header, .nav-actions, .burger, .mobile-nav, .hero-scroll, 
  .site-footer, .cta-banner, .reviews-slider-wrap .slider-controls,
  .btn, .hero-tags, .blog-cta { display: none !important; }
  body { background: white; color: black; }
  .hero-inner { padding: 1rem; }
  .hero h1, .hero h2 { color: black; }
  a { text-decoration: underline; color: black; }
}