/* ============================================
   INOVA GROUPP — Custom Styles
   Design: Dark & Premium | Archivo + DM Sans
   Colors: Charcoal + Amber Gold
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --primary: #D4922B;
  --secondary: #1C1C1C;
  --accent: #E8A535;
  --dark: #0F0F0F;
  --light: #F7F5F2;
  --text: #1C1C1C;
  --text-light: #6B6B6B;
  --charcoal: #2A2A2A;

  --radius: 10px;
  --radius-sm: 6px;
  --nav-height: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--light);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === SKIP LINK (ACCESSIBILITY) === */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* === PAGE LOADER === */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.loader-inner { text-align: center; }
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.25rem;
}
.loader-logo {
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(212, 146, 43, 0.28);
  background: #c2831f;
}
.btn-primary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.btn-primary.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-primary.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-primary.btn-full { width: 100%; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}
.btn-ghost-light.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-ghost-light:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
}

/* === SECTION LABELS (decorative small caps) === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}
.section-label.light { color: var(--primary); }

.section-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.section-headline.light { color: #fff; }
.section-headline em {
  font-style: normal;
  color: var(--primary);
}

.section-subhead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 600px;
}
.section-subhead.light { color: rgba(255,255,255,0.65); }

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a4a;
  max-width: 580px;
}
.section-body.light { color: rgba(255,255,255,0.72); }

/* Section header centered */
.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15, 15, 15, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.nav-logo:hover { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links li a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.45rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-links li a:hover { color: #fff; }
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-links li a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:focus-visible { outline: 2px solid var(--primary); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 3rem;
  gap: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.mobile-menu-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  transition: color 0.2s ease;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-menu-close:focus-visible { outline: 2px solid var(--primary); }
.mobile-menu-close svg { width: 24px; height: 24px; }

.mobile-nav-links { flex: 1; }
.mobile-nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-links li a {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 1rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav-links li a:hover { color: var(--primary); padding-left: 0.5rem; }
.mobile-menu-cta { width: 100%; text-align: center; margin-top: 2rem; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-content {
  background: var(--dark);
  padding: calc(var(--nav-height) + 6rem) 5rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 146, 43, 0.12);
  border: 1px solid rgba(212, 146, 43, 0.3);
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1.75rem;
}

.hero-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.62);
  max-width: 490px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.hero-section:hover .hero-img { transform: scale(1.04); }
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.hero-visual-diagonal {
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  width: 80px;
  background: var(--dark);
  -webkit-clip-path: polygon(0 0, 50% 0, 0 100%);
  clip-path: polygon(0 0, 50% 0, 0 100%);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  animation: float 2.5s ease-in-out infinite;
  z-index: 3;
  display: flex;
}
.hero-scroll-cue svg { width: 24px; height: 24px; }
.hero-scroll-cue:hover { color: rgba(255,255,255,0.6); }
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === ABOUT SECTION === */
.about-section {
  background: var(--light);
  padding: 7rem 0;
  position: relative;
  overflow-x: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  opacity: 0.15;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text-col {}
.about-text-col .section-headline { max-width: none; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about-feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 3px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 146, 43, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; }
.about-feature-title {
  font-family: 'Archivo', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.about-feature-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }

.about-image-col { position: relative; }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-image-wrap:hover .about-img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 2rem;
  left: -2.5rem;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 8px 24px rgba(212, 146, 43, 0.35);
}
.about-img-badge-num {
  font-family: 'Archivo', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.about-img-badge-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === SERVICES SECTION === */
.services-section {
  background: var(--dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}

.section-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='1' cy='1' r='0.5' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E");
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 0.7;
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

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

.service-card {
  background: var(--secondary);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 146, 43, 0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.service-card-inner { padding: 1.75rem 1.75rem 2rem; }

.service-card-featured {
  grid-column: span 2;
}
.service-card-featured .service-card-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-featured .service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-featured:hover .service-card-img { transform: scale(1.05); }

.service-icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 146, 43, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.1rem;
  transition: background 0.25s ease;
}
.service-card:hover .service-icon { background: rgba(212, 146, 43, 0.18); }
.service-icon svg { width: 20px; height: 20px; }

.service-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.service-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* === GALLERY SECTION === */
.gallery-section {
  background: var(--light);
  padding: 7rem 0;
  overflow-x: hidden;
}

.gallery-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-masonry {
  columns: 4;
  column-gap: 0.875rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.875rem;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}
.gallery-item a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0);
  transition: background 0.3s ease;
}
.gallery-item a:hover::after { background: rgba(15,15,15,0.25); }
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item a:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.75rem;
  background: linear-gradient(transparent, rgba(15,15,15,0.65));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-item a:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
  pointer-events: none;
}
.gallery-zoom-icon svg { width: 18px; height: 18px; }
.gallery-item a:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

/* === PROCESS SECTION === */
.process-section {
  background: var(--charcoal);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}

.process-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 1px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.process-step:hover {
  border-color: rgba(212, 146, 43, 0.25);
  background: rgba(212, 146, 43, 0.04);
}

.process-step-num {
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.process-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 146, 43, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background 0.25s ease;
}
.process-step:hover .process-icon { background: rgba(212, 146, 43, 0.18); }
.process-icon svg { width: 22px; height: 22px; }

.process-step-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.65rem;
}
.process-step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* Faded big background numbers */
.process-step::before {
  content: attr(data-num);
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  font-family: 'Archivo', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  padding: 9rem 2rem;
  background: var(--secondary);
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}
.cta-section:hover .cta-bg-img { transform: scale(1.04); }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.78);
}
.cta-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.cta-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* === CONTACT SECTION === */
.contact-section {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 620px;
  overflow-x: hidden;
}

.contact-dark-side {
  background: var(--dark);
  padding: 5rem 4.5rem 5rem 5rem;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.contact-dark-side::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 146, 43, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-info-inner { position: relative; z-index: 1; width: 100%; }

.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.contact-info-item:hover {
  border-color: rgba(212, 146, 43, 0.25);
  background: rgba(212, 146, 43, 0.04);
}
.contact-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 146, 43, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-body {}
.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.contact-info-value a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}
.contact-info-value a:hover { color: var(--primary); }

.contact-light-side {
  background: #fff;
  padding: 5rem 5rem 5rem 4.5rem;
  display: flex;
  align-items: center;
}

/* === CONTACT FORM === */
.contact-form { width: 100%; max-width: 560px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--light);
  border: 1.5px solid #e0ddd9;
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 146, 43, 0.12);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(56, 161, 105, 0.1);
  border: 1px solid rgba(56, 161, 105, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: #276749;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* === FOOTER === */
.footer-section {
  background: var(--dark);
  padding-top: 5rem;
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
#footer-links-list li { margin-bottom: 0.65rem; }
#footer-links-list li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
  display: inline-block;
}
#footer-links-list li a:hover { color: var(--primary); }

#footer-contact-list li { margin-bottom: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.footer-contact-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-icon svg { width: 14px; height: 14px; }
.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  transition: color 0.2s ease;
}
.footer-contact-text a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-contact-text a:hover, .footer-contact-text:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.25); }

/* === SCROLL TO TOP === */
.scroll-top-btn {
  position: fixed;
  bottom: 7.5rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  z-index: 500;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.3s ease;
  opacity: 0;
}
.scroll-top-btn:not([hidden]) { opacity: 1; }
.scroll-top-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.scroll-top-btn:focus-visible { outline: 2px solid var(--primary); }
.scroll-top-btn svg { width: 18px; height: 18px; }

/* === WHATSAPP BUTTON === */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.whatsapp-btn:focus-visible { outline: 3px solid #25D366; outline-offset: 3px; }

/* GSAP handles all initial states via gsap.from() — no CSS pre-hiding needed */

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .hero-content { padding: calc(var(--nav-height) + 4rem) 3.5rem 4rem; }
  .about-container { gap: 4rem; }
  .about-img-badge { left: -1.5rem; }
  .contact-dark-side { padding: 4rem 3rem 4rem 4rem; }
  .contact-light-side { padding: 4rem 4rem 4rem 3rem; }
  .footer-grid { gap: 3rem; }
}

@media (max-width: 1024px) {
  .gallery-masonry { columns: 3; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-content {
    padding: calc(var(--nav-height) + 3rem) 2rem 3rem;
    order: 2;
    text-align: center;
    align-items: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-stats-row { justify-content: center; }
  .hero-badge { margin: 0 auto 1.5rem; }
  .hero-sub { text-align: center; }
  .hero-visual {
    height: 55vw;
    min-height: 260px;
    max-height: 380px;
    order: 1;
  }
  .hero-visual-diagonal { display: none; }
  .hero-scroll-cue { display: none; }

  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-col { order: -1; }
  .about-image-wrap { aspect-ratio: 16/9; }
  .about-img-badge { left: 1.5rem; bottom: -1.5rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-column: span 2; }

  .contact-section { grid-template-columns: 1fr; }
  .contact-dark-side { padding: 4rem 2rem; }
  .contact-light-side { padding: 4rem 2rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-features { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; }

  .gallery-masonry { columns: 2; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand-col { grid-column: span 1; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .hero-headline { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary.btn-lg, .btn-ghost-light.btn-lg { width: 100%; text-align: center; }

  /* Hero stats: tighten so 3 items don't overflow */
  .hero-stats-row { gap: 1.25rem; padding-top: 1.75rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.7rem; }

  /* Service card inner padding */
  .service-card-inner { padding: 1.25rem; }

  /* Contact form padding */
  .contact-dark-side { padding: 3rem 1.25rem; }
  .contact-light-side { padding: 3rem 1.25rem; }
}

/* === VERY SMALL SCREENS (< 350px) === */
@media (max-width: 349px) {
  :root { --nav-height: 56px; }

  /* Nav */
  .nav-container { padding: 0 0.75rem; }
  .nav-logo { font-size: 0.9rem; }

  /* All section containers */
  .about-container,
  .services-container,
  .gallery-container,
  .process-container { padding: 0 0.75rem; }
  .footer-grid { padding: 0 0.75rem 3rem; }
  .footer-bottom { padding: 1.25rem 0.75rem; }

  /* Hero */
  .hero-content { padding: calc(var(--nav-height) + 2rem) 0.75rem 2.5rem; }
  .hero-headline { font-size: 1.75rem; }
  .hero-sub { font-size: 0.9rem; }

  /* Hero stats — stack vertically */
  .hero-stats-row {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .hero-stat-item {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
  }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-stat-label { font-size: 0.72rem; text-transform: none; letter-spacing: 0; }

  /* About badge */
  .about-img-badge { left: 0.75rem; padding: 0.9rem 1rem; }
  .about-img-badge-num { font-size: 1.5rem; }

  /* Section headings */
  .section-headline { font-size: 1.5rem; }
  .cta-headline { font-size: 1.6rem; }

  /* Contact */
  .contact-dark-side { padding: 2.5rem 0.75rem; }
  .contact-light-side { padding: 2.5rem 0.75rem; }
  .contact-info-value { word-break: break-all; font-size: 0.82rem; }

  /* CTA section */
  .cta-section { padding: 5rem 0.75rem; }
  .cta-body { font-size: 0.9rem; }

  /* Floating buttons */
  .scroll-top-btn { right: 1rem; bottom: 6.5rem; }
  .whatsapp-btn { right: 1rem; bottom: 1rem; }
}

/* === PREFERS REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Disable GSAP animations via JS (handled in initGSAPAnimations) */
  .hero-img, .about-img, .gallery-item img,
  .service-card-featured .service-card-img { transform: none !important; }
  .hero-scroll-cue { animation: none; }
  .loader-spinner { animation: none; }
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: #3a3a3a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
