/* ===== GALAXIS PLUS – STYLE.CSS ===== */

:root {
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-soft: #1a1a1a;
  --black-card: #141414;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --gold-gradient: linear-gradient(135deg, #9A7A2E 0%, #E8C97A 50%, #9A7A2E 100%);
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.7);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.08);
  --gold-10: rgba(201,168,76,0.1);
  --gold-20: rgba(201,168,76,0.2);
  --border: rgba(201,168,76,0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header.center { text-align: center; }
.section-desc {
  color: var(--white-70);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn-gold:hover::after { background: rgba(255,255,255,0.15); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-gold.btn-lg { padding: 18px 40px; font-size: 13px; }
.btn-gold.btn-sm { padding: 10px 20px; font-size: 11px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 17px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 80px;
}
.nav-logo { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-70);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  max-width: 760px;
  padding-left: 80px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 15px;
  color: var(--white-70);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.stat { padding: 0 32px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-70);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s forwards;
}
.scroll-indicator span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-30);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

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

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--gold-gradient);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 24px;
}
.marquee-track .sep { padding: 0; color: var(--black-soft); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.section-about {
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold-gradient);
  padding: 24px 28px;
  text-align: center;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.badge-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 4px;
  display: block;
}
.about-accent-img {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 180px;
  height: 140px;
  border: 3px solid var(--black);
  overflow: hidden;
}
.about-accent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-lead {
  font-size: 17px;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-body {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.9;
  margin-bottom: 36px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--gold-10);
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  font-size: 16px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.pillar p {
  font-size: 13px;
  color: var(--white-70);
  margin: 0;
}

/* ── SERVICES ── */
.section-services {
  padding: 120px 0;
  background: var(--black-mid);
}
.section-header { margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.service-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  transition: var(--transition);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-card:hover .service-overlay { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100%); }
.service-card.featured .service-img { height: 400px; }

.service-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.service-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.service-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.service-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.service-card:hover .service-info p { max-height: 80px; }
.service-arrow {
  display: inline-block;
  font-size: 18px;
  color: var(--gold);
  transform: translateX(-8px);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-arrow { transform: translateX(0); opacity: 1; }
.services-cta { text-align: center; margin-top: 48px; }

/* ── WHY US ── */
.section-why {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.why-bg-img {
  position: absolute;
  inset: 0;
}
.why-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15) saturate(0.3);
}
.why-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 100%);
}
.section-why .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.why-card {
  padding: 36px 28px;
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--border);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 24px;
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.7;
}

/* ── PROCESS ── */
.section-process {
  padding: 120px 0;
  background: var(--black-soft);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.process-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.process-content p {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
}
.process-connector {
  flex: 0 0 60px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  position: relative;
}
.process-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -10px;
  color: var(--gold);
  font-size: 14px;
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  overflow: hidden;
  height: 260px;
}
.gallery-track {
  display: flex;
  gap: 4px;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}
.gallery-track img {
  height: 260px;
  width: 400px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.75) saturate(0.8);
  transition: var(--transition);
}
.gallery-track img:hover { filter: brightness(1) saturate(1); }
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── CTA SECTION ── */
.section-cta {
  padding: 120px 0;
  background: var(--black);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--white-70);
}
.contact-icon { font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.contact-item a { color: var(--white-70); transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }
.cta-desc {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 0;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-visual {
  position: relative;
}
.cta-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.cta-img-border {
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 1px solid var(--border);
  z-index: -1;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { height: 48px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--white-70);
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--white-70);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li {
  font-size: 13px;
  color: var(--white-70);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact a { color: var(--white-70); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-wa { margin-top: 20px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  font-size: 13px;
  font-weight: 600;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.wa-label { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; }

/* ── SERVICES PAGE ── */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero-content .section-eyebrow { margin-bottom: 12px; }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-content h1 em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-content p {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.8;
  max-width: 540px;
}

/* Services inner page */
.services-page {
  padding: 100px 0;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  position: relative;
  overflow: hidden;
  height: 440px;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-detail:hover .service-detail-img img { transform: scale(1.04); }
.service-detail-img .service-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.6;
}
.service-detail-text { padding: 20px 0; }
.service-detail-text h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.service-detail-text h2 em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-detail-text p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.9;
  margin-bottom: 20px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--white-70);
}
.service-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured .service-img { height: 320px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-detail { gap: 50px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 120px 20px 60px; }
  .hero-title { font-size: 3rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .scroll-indicator { display: none; }

  .about-grid, .cta-inner, .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { order: -1; }
  .about-accent-img { display: none; }
  .about-badge { right: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-visual { display: none; }
  .service-detail.reverse { direction: ltr; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}