/* ═══════════════════════════════════════════
   CODA Agency — mobile.css
   Loaded ONLY on screens under 768px
   ═══════════════════════════════════════════ */

/* ── RESET OVERFLOW ── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

/* ── PROGRESS BAR ── */
#progress-bar { display: none; }

/* ── PRELOADER ── */
.preloader-logo { font-size: 3.5rem; letter-spacing: -2px; }

/* ── NAV ── */
nav {
  padding: 16px 5% !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex !important;
  position: fixed;
  top: 0; right: -100%; bottom: 0;
  width: 75vw;
  max-width: 280px;
  background: #000;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: 40px 28px;
  z-index: 9995;
  list-style: none;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.nav-links.open { right: 0; }
.nav-links li { width: 100%; }
.nav-links li a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: -0.3px;
}
.nav-links li a::after { display: none; }
.nav-cta { display: none; }
.hamburger {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 9999;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu-overlay {
  display: block;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── SECTIONS ── */
section { padding: 64px 5% !important; }
.section-label {
  font-size: 10px !important;
  letter-spacing: 2px !important;
  margin-bottom: 24px !important;
}
.section-title {
  font-size: 26px !important;
  letter-spacing: -0.5px !important;
  line-height: 1.15 !important;
}

/* ── HERO ── */
#hero {
  padding: 0 5% 80px !important;
  min-height: 100svh;
  justify-content: flex-end;
}
.hero-top-label {
  font-size: 9px !important;
  top: 90px !important;
  left: 5% !important;
  letter-spacing: 1px;
}
.hero-counter {
  font-size: 9px !important;
  top: 90px !important;
  right: 5% !important;
}
.hero-headline {
  font-size: clamp(2.8rem, 14vw, 4rem) !important;
  letter-spacing: -2px !important;
  line-height: 0.92 !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
  overflow: visible !important;
}
.hero-headline .headline-text { width: 100%; }
.hero-logo {
  height: 1.6em !important;
  width: auto !important;
  margin-top: 8px;
}
.hero-bottom {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 20px !important;
  margin-top: 28px !important;
}
.hero-desc {
  font-size: 14px !important;
  max-width: 100% !important;
  line-height: 1.7 !important;
}
.hero-cta-wrap {
  flex-direction: column !important;
  width: 100% !important;
  gap: 10px !important;
}
.btn-white, .btn-ghost-white {
  width: 100% !important;
  font-size: 14px !important;
  padding: 14px 20px !important;
  height: auto !important;
  justify-content: center !important;
  text-align: center !important;
}
.hero-scroll-hint { display: none !important; }

/* ── MARQUEE ── */
.marquee-item { font-size: 10px !important; padding: 0 24px !important; }

/* ── INTRO ── */
#intro { background: #fff; }
.intro-grid {
  grid-template-columns: 1fr !important;
  gap: 40px !important;
  margin-top: 32px !important;
}
.intro-big {
  font-size: clamp(1.5rem, 6vw, 2rem) !important;
  letter-spacing: -0.5px !important;
}
.intro-right { gap: 24px !important; }
.stat-number { font-size: 44px !important; letter-spacing: -2px !important; }
.stat-number span { font-size: 24px !important; }

/* ── SERVICES ── */
.services-list { margin-top: 32px !important; }
.service-row {
  display: grid !important;
  grid-template-columns: 28px 1fr auto !important;
  gap: 10px !important;
  padding: 20px 0 !important;
  align-items: center !important;
}
.svc-num { font-size: 10px !important; }
.svc-name { font-size: 16px !important; }
.svc-tags { display: none !important; }
.svc-arrow { font-size: 16px !important; }

/* ── PROCESS ── */
.process-grid {
  grid-template-columns: 1fr !important;
  margin-top: 32px !important;
}
.process-card { padding: 28px 20px !important; }
.process-name { font-size: 20px !important; }

/* ── PORTFOLIO ── */
#portfolio { padding-bottom: 0 !important; }
.portfolio-header {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
  margin-bottom: 32px !important;
}
.portfolio-header .btn-white {
  align-self: flex-start !important;
  width: auto !important;
  font-size: 13px !important;
  padding: 12px 20px !important;
}
.portfolio-grid {
  grid-template-columns: 1fr !important;
  margin: 0 -5% !important;
}
.portfolio-card {
  aspect-ratio: 4/3 !important;
  padding: 20px !important;
}
.portfolio-name { font-size: 20px !important; }
.portfolio-cat { font-size: 10px !important; }
.overlay-content h3 { font-size: 20px !important; }

/* ── CLIENTS ── */
.clients-slider { margin-top: 32px !important; }
.clients-track {
  gap: 28px !important;
  animation-duration: 22s !important;
}
.client-logo { min-width: 110px !important; }
.client-logo img { max-width: 60px !important; max-height: 44px !important; }
.client-name { font-size: 11px !important; }

/* ── ABOUT ── */
#about { padding: 72px 5% !important; }
.about-quote {
  font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
  letter-spacing: -0.5px !important;
  line-height: 1.35 !important;
}
.about-bottom {
  flex-direction: column !important;
  gap: 28px !important;
  margin-top: 40px !important;
  padding-top: 32px !important;
}
.about-info p { font-size: 14px !important; max-width: 100% !important; }
.about-list-item { font-size: 12px !important; }

/* ── TESTIMONIALS ── */
.testi-grid {
  grid-template-columns: 1fr !important;
  margin-top: 32px !important;
}
.testi-card { padding: 28px 20px !important; }
.testi-quote-mark { font-size: 52px !important; margin-bottom: 16px !important; }
.testi-text { font-size: 14px !important; line-height: 1.75 !important; }
.testi-name { font-size: 14px !important; }

/* ── CTA ── */
#cta { padding: 80px 5% !important; }
.cta-headline {
  font-size: clamp(2.2rem, 10vw, 3.2rem) !important;
  letter-spacing: -2px !important;
  margin-bottom: 32px !important;
}
.magnetic-btn {
  font-size: 12px !important;
  padding: 14px 28px !important;
}

/* ── CONTACT ── */
#contact { padding: 64px 5% !important; }
.contact-grid {
  grid-template-columns: 1fr !important;
  gap: 40px !important;
  margin-top: 32px !important;
}
.contact-info-title {
  font-size: 22px !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 12px !important;
}
.contact-grid > div > p { font-size: 13px !important; }
.contact-detail { padding: 14px 0 !important; }
.contact-detail-value { font-size: 14px !important; }
.form-row-grid {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}
.form-field label { font-size: 10px !important; padding: 18px 0 6px !important; }
.form-field input,
.form-field select,
.form-field textarea { font-size: 14px !important; padding: 0 0 16px !important; }
.submit-row {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 12px !important;
  margin-top: 28px !important;
}
.submit-btn {
  width: 100% !important;
  text-align: center !important;
  font-size: 12px !important;
  padding: 14px 20px !important;
}
.submit-note { font-size: 10px !important; text-align: center !important; }

/* ── LOCATION ── */
#location { padding: 64px 5% !important; }
.location-grid {
  grid-template-columns: 1fr !important;
  gap: 32px !important;
  margin-top: 32px !important;
}
.location-content p { font-size: 13px !important; margin-bottom: 28px !important; }
.location-details {
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}
.location-address h3,
.location-hours h3 { font-size: 15px !important; }
.location-address p,
.location-hours p { font-size: 12px !important; }
.location-map iframe { height: 220px !important; }
.map-link {
  position: static !important;
  display: block !important;
  margin-top: 12px !important;
  text-align: center !important;
  width: 100% !important;
  border-radius: 0 !important;
}

/* ── FOOTER ── */
footer { padding: 32px 5% !important; }
.footer-logo { padding-bottom: 16px !important; margin-bottom: 16px !important; }
.footer-logo img { height: 40px !important; }
.footer-top { padding-bottom: 24px !important; }
.footer-nav {
  gap: 12px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}
.footer-nav a { font-size: 10px !important; }
.footer-bottom {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 6px !important;
  padding-top: 20px !important;
}
.footer-bottom p { font-size: 10px !important; }

/* ── WHATSAPP ── */
.whatsapp-float {
  width: 48px !important;
  height: 48px !important;
  bottom: 16px !important;
  right: 16px !important;
}
.whatsapp-float svg { width: 22px !important; height: 22px !important; }
.whatsapp-tooltip { display: none !important; }

/* ── ALL PROJECTS PAGE ── */
#all-projects { padding-top: 100px !important; }
.all-projects-grid {
  grid-template-columns: 1fr !important;
  margin-top: 32px !important;
}