/* ============================================================
   VIP EXPRESS — Custom Styles
   Design: Dark & Premium | Sora + Inter | Amber Accent
   ============================================================ */

/* ---- CSS Variables (overridden by JS from content.json) ---- */
:root {
  --primary:    #EAB308;
  --secondary:  #111827;
  --accent:     #D97706;
  --dark:       #0A0A0A;
  --light:      #F9F7F0;
  --text:       #111827;
  --text-light: #6B7280;
  --radius:     12px;
  --nav-h:      80px;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: auto; } /* JS handles smooth scroll */

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

::selection { background: var(--primary); color: #000; }

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

/* ---- Skip link ---- */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--primary); color: #000; padding: 8px 16px;
  font-weight: 700; border-radius: 0 0 8px 8px;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   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-logo {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 1.5rem; letter-spacing: 0.15em;
  color: var(--primary); margin-bottom: 20px;
}
.loader-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,0.1); border-radius: 99px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: var(--primary); border-radius: 99px;
  animation: loaderAnim 1.4s ease forwards;
}
@keyframes loaderAnim {
  0%   { width: 0; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav_1 {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
#nav_1 .nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem;
  letter-spacing: 0.08em; color: var(--primary);
  transition: color 0.3s;
}
.nav-logo-tag {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); transition: color 0.3s;
}

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
  margin: 0; padding: 0;
}
.nav-link {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em;
  text-decoration: none; color: rgba(255,255,255,0.8);
  position: relative; padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.4rem;
  background: var(--primary); color: #0A0A0A;
  font-weight: 700; font-size: 0.875rem;
  border-radius: var(--radius); text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav-cta:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all 0.3s ease;
}

/* Navbar scrolled */
#nav_1.scrolled {
  background: rgba(10,10,10,0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Dark nav text when over light section (handled by JS class) */
#nav_1.nav-light .nav-link   { color: rgba(0,0,0,0.7); }
#nav_1.nav-light .nav-link:hover { color: #000; }
#nav_1.nav-light .nav-logo-text { color: var(--accent); }
#nav_1.nav-light .nav-logo-tag  { color: rgba(0,0,0,0.4); }
#nav_1.nav-light .hamburger span { background: #0A0A0A; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 950;
  background: #080808;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }

#mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; cursor: pointer; color: #fff;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}
#mobile-menu-close:focus-visible { outline: 3px solid var(--primary); border-radius: 8px; }

#mobile-nav-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
}
.mobile-nav-link {
  font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 700;
  text-decoration: none; color: rgba(255,255,255,0.7);
  padding: 0.5rem 1rem; display: block;
  transition: color 0.25s;
}
.mobile-nav-link:hover { color: var(--primary); }

.mobile-cta-btn {
  margin-top: 2rem; padding: 0.85rem 2.5rem;
  background: var(--primary); color: #0A0A0A;
  font-weight: 700; font-size: 1rem; border-radius: var(--radius);
  text-decoration: none; transition: background 0.25s;
}
.mobile-cta-btn:hover { background: var(--accent); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary);
  position: relative; padding-left: 32px;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 2px; background: var(--primary);
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--text-light); max-width: 540px;
}

.accent { color: var(--primary); }

/* ============================================================
   HERO
   ============================================================ */
#hero_1 {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-text-side {
  background: var(--dark); padding: 120px 4rem 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-image-side {
  position: relative; overflow: hidden;
}
.hero-image-side img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-image-side::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 30%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary); border: 1px solid rgba(234,179,8,0.3);
  padding: 0.4rem 0.9rem; border-radius: 99px;
  width: fit-content; margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 1.5rem;
}
.hero-headline .accent-line {
  color: var(--primary); display: block;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 460px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--primary); color: #0A0A0A;
  font-weight: 700; font-size: 0.95rem;
  border-radius: var(--radius); text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234,179,8,0.25);
}
.btn-primary:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius); text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-ghost:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2rem;
  line-height: 1; color: var(--primary);
}
.hero-stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.25rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about_1 {
  background: var(--light); padding: 100px 0;
  position: relative;
}
#about_1::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--primary);
}
.about-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-image-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.about-image-wrap img {
  width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius);
  transition: transform 0.5s ease;
}
.about-image-wrap:hover img { transform: scale(1.03); }
.about-image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--primary); color: #0A0A0A;
  font-weight: 700; font-size: 0.85rem;
  padding: 0.6rem 1.1rem; border-radius: 99px;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.about-text-wrap .section-label { margin-bottom: 1rem; }
.about-text-wrap h2 { color: var(--text); margin-bottom: 1.25rem; }
.about-text-wrap p {
  color: #4B5563; font-size: 1rem; line-height: 1.75; margin-bottom: 1rem;
}
.about-cta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin: 1.75rem 0 2.5rem;
}
.about-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--text); text-decoration: none;
  transition: color 0.25s;
}
.about-phone:hover { color: var(--accent); }
.about-phone .icon-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-whatsapp {
  font-size: 0.8rem; color: #16A34A; font-weight: 600;
  display: flex; align-items: center; gap: 0.35rem;
  text-decoration: none;
}
.about-whatsapp:hover { color: #15803d; }

.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 1.5rem; border-radius: var(--radius);
  background: var(--dark); border: 1px solid rgba(255,255,255,0.06);
}
.about-stat {
  text-align: center; padding: 0.75rem 0.5rem;
}
.about-stat-value {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1.6rem; color: var(--primary); line-height: 1;
}
.about-stat-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px;
}

/* ============================================================
   SERVICES LIST (ZIGZAG)
   ============================================================ */
#services_1 {
  background: var(--dark); padding: 100px 0;
}
.services-header {
  max-width: 1200px; margin: 0 auto 5rem; padding: 0 2rem; text-align: center;
}
.services-header h2 { color: #fff; margin: 1rem 0 0.75rem; }
.services-header p   { color: rgba(255,255,255,0.55); margin: 0 auto; }

.services-list-wrap { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-bottom: 6rem; padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-row.reversed { direction: rtl; }
.service-row.reversed > * { direction: ltr; }

.service-content .service-num {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 5rem; line-height: 1; color: rgba(234,179,8,0.12);
  margin-bottom: -1rem; display: block;
}
.service-content h3 {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem); color: #fff;
  margin: 0 0 1rem; letter-spacing: -0.01em;
}
.service-content p {
  color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 1.75rem;
}
.service-features {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.service-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
}
.service-features li::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary); flex-shrink: 0;
}

.service-image-wrap {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4/3;
}
.service-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-image-wrap:hover img { transform: scale(1.05); }
.service-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(234,179,8,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   FEATURES
   ============================================================ */
#features_1 {
  background: var(--light); padding: 100px 0;
  position: relative;
}
#features_1::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--primary);
}
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header h2 { color: var(--text); margin: 1rem 0 0.75rem; }
.features-header p   { color: var(--text-light); margin: 0 auto; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative; overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(234,179,8,0.3);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--primary);
  transition: height 0.35s ease;
}
.feature-card:hover::before { height: 100%; }
.feature-card-num {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 3.5rem;
  line-height: 1; color: rgba(234,179,8,0.12); margin-bottom: 0.5rem;
  display: block;
}
.feature-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(234,179,8,0.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 1.05rem; color: var(--text); margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery_1 {
  background: #0f0f0f; padding: 100px 0;
}
.gallery-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-header h2 { color: #fff; margin: 1rem 0; }

.gallery-masonry {
  columns: 3; column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer; display: block;
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff; font-size: 0.8rem; font-weight: 500;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ============================================================
   PROCESS
   ============================================================ */
#process_1 {
  background: var(--light); padding: 100px 0;
}
.process-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header h2 { color: var(--text); margin: 1rem 0 0.75rem; }
.process-header p   { color: var(--text-light); margin: 0 auto; }

.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px; background: rgba(234,179,8,0.25);
  pointer-events: none;
}
.process-step { text-align: center; position: relative; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--dark); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  transition: background 0.3s, transform 0.3s;
}
.process-step:hover .step-circle { background: var(--primary); color: #0A0A0A; transform: scale(1.05); }
.step-num {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem;
  display: none;
}
.process-step h3 {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--text); margin-bottom: 0.6rem;
}
.process-step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   MAP / SERVICE AREAS
   ============================================================ */
#map_1 {
  background: var(--dark); padding: 80px 0;
}
.map-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.map-inner h2 { color: #fff; margin: 1rem 0 0.75rem; }
.map-inner .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 3rem; }

.areas-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
}
.area-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.2rem; border-radius: 99px;
  font-weight: 600; font-size: 0.9rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.area-pill.primary-area {
  background: var(--primary); color: #0A0A0A;
}
.area-pill.secondary-area {
  border: 1px solid rgba(234,179,8,0.3); color: rgba(255,255,255,0.75);
}
.area-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta_1 {
  position: relative; padding: 100px 2rem; text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,10,0.82);
}
.cta-content {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.cta-content h2 {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.75rem); color: #fff;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.cta-content p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta.solid { background: var(--primary); color: #0A0A0A; }
.btn-cta.solid:hover {
  background: var(--accent); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,179,8,0.3);
}
.btn-cta.outline {
  border: 2px solid rgba(255,255,255,0.3); color: #fff;
}
.btn-cta.outline:hover { border-color: #fff; transform: translateY(-2px); }
.btn-cta:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact_1 {
  background: var(--light); padding: 100px 0;
  position: relative;
}
#contact_1::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--primary);
}
.contact-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-header h2 { color: var(--text); margin: 1rem 0 0.75rem; }
.contact-header p   { color: var(--text-light); margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; text-decoration: none; color: inherit;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(234,179,8,0.4);
}
.contact-card:focus-visible { outline: 3px solid var(--primary); border-radius: var(--radius); }
.contact-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(234,179,8,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light);
}
.contact-value {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--text); line-height: 1.3; text-align: center;
}
.contact-note { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer_1 {
  background: #050505; padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand-logo {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1.3rem; letter-spacing: 0.08em;
  color: var(--primary); margin-bottom: 1rem; display: block;
}
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }

.footer-contact-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.55); font-size: 0.875rem;
  text-decoration: none; margin-bottom: 0.6rem;
  transition: color 0.25s;
}
.footer-contact-item:hover { color: var(--primary); }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--primary); }

.footer-col-title {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.5); font-size: 0.875rem; text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-services-list { list-style: none; margin: 0; padding: 0; }
.footer-services-list li {
  color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-services-list li::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--primary); flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: gap;
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #4ADE80; font-size: 0.8rem; font-weight: 600; text-decoration: none;
  transition: color 0.25s;
}
.footer-wa:hover { color: #22C55E; }

/* ============================================================
   WHATSAPP FAB + SCROLL TOP
   ============================================================ */
#whatsapp-fab {
  position: fixed; bottom: 88px; right: 24px; z-index: 800;
  width: 52px; height: 52px; border-radius: 50%;
  background: #22C55E;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
#whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(34,197,94,0.5); }

#scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #0A0A0A;
  border: none; cursor: pointer; display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(234,179,8,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234,179,8,0.4); }
#scroll-top:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-stats   { grid-template-columns: repeat(2, 1fr); }
}

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

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

  #hero_1 { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-image-side { display: none; }
  .hero-text-side { padding: 120px 1.5rem 60px; }
  .hero-stats { gap: 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap img { height: 320px; }

  .service-row,
  .service-row.reversed { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .service-row.reversed > * { direction: ltr; }
  .service-image-wrap { order: -1; }

  .features-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }

  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .areas-row { gap: 0.5rem; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; justify-content: center; }
}

/* ============================================================
   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;
  }
}
