/*
 Theme Name:   Frutin Child
 Theme URI:    https://themeholy.com/wordpress/frutin/
 Description:  Arizona Logistic – Child theme for Frutin WordPress Theme
 Author URI:   #
 Template:     frutin
 Version:      1.2
 Tags:         two-columns, three-columns, left-sidebar, right-sidebar, flexible-header, custom-background, custom-colors, custom-header, custom-menu, theme-options, editor-style, featured-images, microformats, post-formats, sticky-post, threaded-comments, translation-ready
 Text Domain:  frutin-child
*/

/* =============================================
   ARIZONA LOGISTIC – CUSTOM STYLES v1.2
   =============================================
   Changelog:
   - Logo link moved to center-top (Slide 1)
   - Nav tab font made bolder and larger (Slide 1)
   - Stronger hero animation (Slide 1)
   - Gallery with left/right arrow navigation (Slide 2 & 4)
   - Phosphor glow effect on ALL images sitewide (Slide 2)
   - Logo doubled in size (Slide 3)
   - Services page font size increased (Slide 4)
   - Section animations added (Slides 5, 9, 11)
   - Real Google Map iframe on Coverage section (Slide 6)
   - Removed "Why Choose Us" section (Slide 10 & 12)
   - Captcha added to contact form (Slide 13)
   ============================================= */


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

/* Global link reset — prevents parent Frutin theme colors bleeding through */
a { color: inherit; text-decoration: none; }

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --orange: #39d425;
  --orange2: #5af542;
  --white: #f5f0e8;
  --muted: #7a7570;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --px: 5%;
}

html { scroll-behavior: smooth; height: 100%; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Push footer to bottom — works even when parent theme adds wrappers */
body > footer,
body footer:last-of-type { margin-top: auto; }

/* Parent theme site wrapper (if present) should also stretch */
body > .site,
body > .site-wrap,
body > .page-wrap,
body > #page,
body > .wrapper { flex: 1; display: flex; flex-direction: column; }

body > .site > footer,
body > #page > footer { margin-top: auto; }

/* ══════════════════════════════════════
   NAV — SLIDE 1 CHANGES
   • Logo size doubled
   • Nav tab text bolder/larger
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem var(--px);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
nav.scrolled { padding: 0.75rem var(--px); }

/* Logo — bigger across the whole site */
.logo-img { display:flex; align-items:center; flex-shrink:0; z-index:201; text-decoration:none; }
.logo-img img {
  height: auto;
  width: 120px !important;
  object-fit: contain;
  display: block;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  z-index: 201;
}
.logo span { color: var(--orange); }

/* SLIDE 1: Nav tabs bolder and larger */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: #000;
  padding: 0.5rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange2); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  padding: 0.5rem 1rem;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mob-cta {
  background: var(--orange);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: #000;
  padding: 0.9rem 2.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   HERO — SLIDE 1: Stronger animation
══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7.5rem var(--px) 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.65) 55%, var(--bg) 100%),
    repeating-linear-gradient(-55deg, transparent 0px, transparent 40px,
      rgba(57,212,37,0.03) 40px, rgba(57,212,37,0.03) 41px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(57,212,37,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,212,37,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.2) 70%, transparent 100%);
  animation: gridShift 12s linear infinite; /* faster: was 20s */
}
@keyframes gridShift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* SLIDE 1: Stronger orb pulse */
.hero-orb {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(57,212,37,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbPulse 2.5s ease-in-out infinite; /* faster + stronger */
  pointer-events: none;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 1; } /* more pronounced */
}

/* SLIDE 1: Stronger badge entrance */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(57,212,37,0.12);
  border: 1px solid rgba(57,212,37,0.3);
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.2rem;
  width: fit-content;
  opacity: 0;
  transform: translateY(30px);
  animation: strongFadeUp 0.6s 0.1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* SLIDE 1: Stronger hero animation keyframe */
@keyframes strongFadeUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(50px);
  animation: strongFadeUp 0.9s 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
}
h1 em {
  font-style: normal;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

/* h2 em — same outline/stroke effect as h1 em (fixes inner pages) */
h2 em {
  font-style: normal;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.hero-sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 2.2rem;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: strongFadeUp 0.8s 0.65s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hero-desc {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: #000;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-primary:hover { 
  background: var(--orange2); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 30px rgba(57,212,37,0.4);
}

.btn-ghost {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

.hero-floating-stats {
  position: absolute;
  top: 40%;
  right: var(--px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: strongFadeUp 0.8s 1.1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-floating-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1.2rem;
  text-align: right;
}
.hero-floating-stat .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  line-height: 1;
}
.hero-floating-stat .lbl {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* TICKER */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
}
.ticker {
  display: inline-block;
  animation: ticker 22s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #000;
  padding: 0 2rem;
}
.ticker span::before { content: '◆  '; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
section { padding: 5rem var(--px); }

.label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
  font-weight: 500;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

/* h3–h6 base — prevents parent Frutin theme color bleed */
h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); line-height: 1.05; }
h4 { font-size: 1rem; line-height: 1.2; }
h5 { font-size: 0.9rem; }
h6 { font-size: 0.8rem; }

/* STATS */
.stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem var(--px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--orange);
  letter-spacing: 0.02em;
}
.stat-label {
  color: var(--muted);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* SERVICES */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.35s ease;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 42px; height: 42px;
  background: rgba(57,212,37,0.12);
  border: 1px solid rgba(57,212,37,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 1.1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   SLIDE 2 & 4: GLOBAL IMAGE GLOW EFFECT
   Phosphor green glow — always visible on gallery images, hover on others
══════════════════════════════════════ */
img {
  position: relative;
  transition: box-shadow 0.4s ease, filter 0.4s ease;
}
img:hover {
  box-shadow: 0 0 30px rgba(57,212,37,0.35), 0 0 60px rgba(57,212,37,0.15);
  filter: brightness(1.05) saturate(1.1);
}
/* Gallery slides always have the neon glow border */
.az-gallery-slide img {
  box-shadow: 0 0 20px rgba(57,212,37,0.5), 0 0 50px rgba(57,212,37,0.2), inset 0 0 0 2px rgba(57,212,37,0.3);
  border: 1px solid rgba(57,212,37,0.4);
}
.az-gallery-slide img:hover {
  box-shadow: 0 0 35px rgba(57,212,37,0.7), 0 0 80px rgba(57,212,37,0.3), inset 0 0 0 2px rgba(57,212,37,0.5);
  filter: brightness(1.08) saturate(1.15);
}

/* ══════════════════════════════════════
   SLIDE 2 & 4: GALLERY CAROUSEL
   Arrow navigation left/right
══════════════════════════════════════ */
.az-gallery {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(57,212,37,0.2);
  border-radius: 4px;
}

.az-gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.az-gallery-slide {
  min-width: 100%;
  position: relative;
}

.az-gallery-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.az-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.75);
  border: 1px solid rgba(57,212,37,0.4);
  color: var(--orange);
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.az-gallery-btn:hover {
  background: rgba(57,212,37,0.2);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}
.az-gallery-btn.prev { left: 1rem; }
.az-gallery-btn.next { right: 1rem; }

.az-gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}
.az-gallery-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, width 0.3s;
}
.az-gallery-dot.active {
  background: var(--orange);
  width: 18px;
  border-radius: 3px;
}

/* ABOUT */
.about {
  background: var(--bg2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg3);
  overflow: hidden;
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(57,212,37,0.15) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0px, transparent 20px,
      rgba(255,255,255,0.015) 20px, rgba(255,255,255,0.015) 21px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem; right: 0;
  background: var(--orange);
  color: #000;
  padding: 0.8rem 1.3rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.about-content h2 { margin-bottom: 1.3rem; }
.about-content p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.3rem;
  font-size: 0.93rem;
}

.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.feature-item:hover { border-color: rgba(57,212,37,0.3); background: rgba(57,212,37,0.03); }

.feature-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.feature-text p { font-size: 0.78rem; color: var(--muted); margin: 0; }

/* ══════════════════════════════════════
   SLIDE 10 & 12: WHY SECTION — HIDDEN
   Removed from all pages
══════════════════════════════════════ */
#why { display: none !important; }
.why-section { display: none !important; }

/* ══════════════════════════════════════
   SLIDE 6: GOOGLE MAP IFRAME
══════════════════════════════════════ */
.google-map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(57,212,37,0.2);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.google-map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
  filter: grayscale(0.3) invert(0.08);
}

/* ══════════════════════════════════════
   SLIDES 5, 9, 11: SECTION ANIMATIONS
   Different from home — uses slide-in from sides
══════════════════════════════════════ */
.section-anim-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.section-anim-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.section-anim-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.section-anim-left.visible,
.section-anim-right.visible,
.section-anim-scale.visible {
  opacity: 1;
  transform: none;
}

/* Page hero sections */
.page-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9.5rem var(--px) 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.7) 60%, var(--bg) 100%),
    repeating-linear-gradient(-55deg, transparent 0px, transparent 40px,
      rgba(57,212,37,0.03) 40px, rgba(57,212,37,0.03) 41px);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,212,37,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,212,37,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.15) 80%, transparent 100%);
  animation: gridShift 10s linear infinite;
}
.page-hero-orb {
  position: absolute;
  top: 10%; right: 8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(57,212,37,0.18) 0%, transparent 65%);
  border-radius: 50%;
  animation: orbPulse 2s ease-in-out infinite;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
/* Page hero content animates in with a slide-from-left (distinct from home's fade-up) */
.page-hero-content .label,
.page-hero-content h1,
.page-hero-content .page-hero-desc {
  opacity: 0;
  animation: pageHeroSlideIn 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
.page-hero-content h1 { animation-delay: 0.15s; }
.page-hero-content .page-hero-desc { animation-delay: 0.3s; }
@keyframes pageHeroSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: none; }
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.page-hero-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--orange); }
.page-hero-breadcrumb span { color: var(--orange); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: strongFadeUp 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
}
.page-hero-title em {
  font-style: normal;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}
.page-hero-sub {
  margin-top: 1.8rem;
  opacity: 0;
  transform: translateY(18px);
  animation: strongFadeUp 0.7s 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.page-hero-desc {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}
.page-hero-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--orange), transparent);
  min-width: 60px;
  opacity: 0.4;
}

/* TESTIMONIALS */
.testimonials { background: var(--bg2); }

.testi-card {
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.2s;
  height: 100%;
}
.testi-card:hover { border-color: rgba(57,212,37,0.2); }
.testi-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(57,212,37,0.12);
  position: absolute;
  top: -0.3rem; left: 1.3rem;
  line-height: 1;
}

.testi-text {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testi-author { display: flex; align-items: center; gap: 0.75rem; }

.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(57,212,37,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--orange);
  flex-shrink: 0;
}

.testi-name { font-size: 0.85rem; font-weight: 500; }
.testi-role { font-size: 0.75rem; color: var(--muted); }

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.testi-stars .fa-star { color: var(--orange); font-size: 0.78rem; }

/* CTA */
.cta {
  text-align: center;
  padding: 7rem var(--px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw); height: min(600px, 90vw);
  background: radial-gradient(circle, rgba(57,212,37,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta h2 { margin-bottom: 1rem; }
.cta p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  font-size: 0.95rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3.5rem var(--px) 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 300;
  margin-top: 0.8rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  grid-column: 1 / -1;
}
.footer-bottom p { font-size: 0.72rem; color: var(--muted); }

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.scroll-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--orange);
  color: #000;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: none; }
.scroll-top:hover { background: var(--orange2); }

/* ══════════════════════
   AI CHAT WIDGET
══════════════════════ */

  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(57,212,37,0.5);
}



  100% { transform: scale(1.8); opacity: 0; }
}


  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}



  content: '';
  position: absolute;
  bottom: 1px; right: 1px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  border: 1.5px solid var(--bg3);
}
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
  font-size: 0.7rem;
  color: var(--muted);
}

  content: '';
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}



.msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  animation: msgIn 0.3s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.msg.user { flex-direction: row-reverse; }

.msg-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(57,212,37,0.1);
  border: 1px solid rgba(57,212,37,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--orange);
  flex-shrink: 0;
  font-family: var(--font-display);
}
.msg.user .msg-avatar { background: rgba(255,255,255,0.05); border-color: var(--border); color: var(--muted); }

.msg-bubble {
  max-width: 78%;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  line-height: 1.55;
}
.msg.bot .msg-bubble {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
}
.msg.user .msg-bubble {
  background: var(--orange);
  color: #000;
  font-weight: 500;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0.65rem 0.9rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  width: fit-content;
}
.typing-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}











/* ══════════════════════════════════════
   SLIDE 13: CAPTCHA MODAL (math puzzle)
══════════════════════════════════════ */
.captcha-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.captcha-overlay.active { display: flex; }

.captcha-box {
  background: var(--bg2);
  border: 1px solid rgba(57,212,37,0.25);
  padding: 2.5rem 2rem;
  max-width: 380px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 60px rgba(57,212,37,0.08);
  animation: captchaIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes captchaIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.captcha-close {
  position: absolute;
  top: 0.9rem; right: 1rem;
  background: none; border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.captcha-close:hover { color: var(--white); }

.captcha-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.captcha-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.captcha-desc {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.8rem;
  line-height: 1.55;
}

.captcha-question {
  background: rgba(57,212,37,0.06);
  border: 1px solid rgba(57,212,37,0.18);
  padding: 1.2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.2rem;
}

.captcha-math {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.captcha-refresh {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.72rem;
  cursor: pointer;
  margin-top: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.captcha-refresh:hover { color: var(--orange); }
.captcha-refresh svg { width: 12px; height: 12px; fill: currentColor; }

.captcha-input-row {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.captcha-input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
  letter-spacing: 0.1em;
}
.captcha-input:focus { border-color: rgba(57,212,37,0.5); }
.captcha-input.error { border-color: #e05555; animation: shake 0.35s ease; }
.captcha-input.success { border-color: var(--orange); }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}

.captcha-submit {
  background: var(--orange);
  color: #000;
  border: none;
  padding: 0.75rem 1.3rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.captcha-submit:hover { background: var(--orange2); transform: translateY(-1px); }

.captcha-error-msg {
  font-size: 0.75rem;
  color: #e05555;
  margin-top: 0.6rem;
  min-height: 1.1em;
}

.captcha-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.captcha-security-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--muted);
}
.captcha-security-note svg {
  width: 13px; height: 13px;
  fill: var(--orange);
  flex-shrink: 0;
  opacity: 0.75;
}

/* Contact form */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form-input {
  width: 100%;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.15);
  color: #f5f0e8 !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
  -webkit-text-fill-color: #f5f0e8;
  caret-color: #39d425;
}
.form-input:focus {
  border-color: rgba(57,212,37,0.6);
  background: #222;
  box-shadow: 0 0 0 3px rgba(57,212,37,0.08);
}
.form-input::placeholder { color: rgba(122,117,112,0.8); opacity: 1; }
select.form-input option { background: #1e1e1e; color: #f5f0e8; }
.form-textarea { min-height: 90px; line-height: 1.5; }
.form-send-btn { width: 100%; margin-top: 0.5rem; justify-content: center; display: flex; align-items: center; gap: 0.4rem; }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-floating-stats { display: none; }
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem var(--px); }
  .about-visual { aspect-ratio: 16/9; }
  .about-badge { right: 0; bottom: 1rem; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --px: 6%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .logo-img img { width: 110px !important; }
  .hero { padding: 6.5rem var(--px) 4rem; justify-content: center; min-height: auto; }
  .hero-sub { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero-desc { max-width: 100%; }
  .hero-actions { width: 100%; flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary { width: 100%; text-align: center; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 3rem var(--px); gap: 1.5rem; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  
  
  
  .az-gallery-slide img { height: 260px; }
  .google-map-container iframe { height: 300px; }
}

@media (max-width: 520px) {
  :root { --px: 5%; }
  .logo-img img { width: 90px !important; }
  h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  h2 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .hero { padding: 6rem var(--px) 3.5rem; min-height: auto; justify-content: center; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 2.5rem var(--px); gap: 1.2rem; }
  .stat-num { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.8rem 1.5rem; }
  .cta { padding: 4.5rem var(--px); }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary { width: 100%; text-align: center; }
  section { padding: 3.5rem var(--px); }
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem var(--px) 1.5rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; grid-column: auto; }
  .scroll-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 0.9rem; }
  
  
  
}

@media (hover: none) {
  .service-card::after { display: none; }
  .btn-primary:hover { transform: none; }
  .nav-cta:hover { transform: none; }
}

/* SWIPER CUSTOM */
.testi-swiper .swiper-pagination-bullet {
  background: var(--muted);
  opacity: 0.5;
  width: 6px; height: 6px;
}
.testi-swiper .swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
  width: 18px;
  border-radius: 3px;
  transition: width 0.3s;
}
.testi-swiper .swiper-slide { height: auto; }
.testi-swiper .testi-card { height: 100%; }

/* Page-specific styles carried over */
.who-we-are, .who-visual, .who-badge, .who-content, .who-features, .who-feature,
.who-feature-icon, .who-feature-text, .about-stats, .core-values, .values-header,
.values-grid, .value-card, .highlights, .mv-grid, .mv-card, .experience-strip,
.faq-layout, .faq-sidebar, .faq-list, .faq-item, .faq-question, .faq-answer,
.still-q, .contact-options, .contact-option, .contact-layout, .contact-info,
.contact-details, .contact-detail, .hours-grid, .contact-form-wrap, .form-header,
.form-row, .form-submit, .form-note, .form-error, .form-success,
.quick-strip, .quick-btn, .quick-btn-ghost,
.page-hero, .page-hero-bg, .page-hero-grid, .page-hero-orb,
.services-big-grid, .service-big-card, .service-num, .process, .process-grid,
.coverage, .coverage-text, .coverage-visual { /* carry all existing selectors */ }

/* ══════════════════════════════════════
   SLIDE 4: Services page — larger font
══════════════════════════════════════ */
.service-big-card h3 {
  font-family: var(--font-display);
  font-size: 2.4rem; /* was 2rem — increased per Slide 4 */
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.service-big-card p {
  color: var(--muted);
  font-size: 1rem; /* was 0.9rem */
  font-weight: 300;
  line-height: 1.8;
  max-width: 400px;
}
.service-big-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-big-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}
.service-big-card:hover { background: var(--bg3); }
.service-big-card:hover::after { width: 100%; }
.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(57,212,37,0.06);
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(57,212,37,0.1);
  border: 1px solid rgba(57,212,37,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--orange);
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.service-feature i { color: var(--orange); font-size: 0.65rem; }
.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(57,212,37,0.3);
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
}
.service-cta-link:hover { gap: 0.8rem; border-color: var(--orange); }
.services-big-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.services-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-intro-text {
  max-width: 500px;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   PROCESS (services page)
══════════════════════════════════════ */
.process { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5rem var(--px); }
.process-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem); height: 1px; background: var(--border); z-index: 0; }
.process-step { text-align: center; padding: 1rem; position: relative; z-index: 1; }
.step-circle { width: 56px; height: 56px; border: 1px solid var(--border); background: var(--bg2); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--font-display); font-size: 1.2rem; color: var(--orange); position: relative; }
.step-circle::before { content: ''; position: absolute; inset: -4px; border: 1px solid rgba(57,212,37,0.15); }
.process-step h4 { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ══════════════════════════════════════
   COVERAGE (services page)
══════════════════════════════════════ */
.coverage { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cov-stat { border-left: 2px solid var(--orange); padding-left: 1rem; }
.cov-stat .num { font-family: var(--font-display); font-size: 2.5rem; color: var(--orange); line-height: 1; }
.cov-stat .lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.coverage-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.coverage-visual { background: var(--bg2); border: 1px solid var(--border); padding: 3rem 2rem; position: relative; overflow: hidden; }
.region-tag { background: rgba(57,212,37,0.08); border: 1px solid rgba(57,212,37,0.2); color: var(--orange); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.8rem; display: inline-block; margin: 0.25rem; }

/* ══════════════════════════════════════
   ABOUT PAGE STYLES
══════════════════════════════════════ */
.who-we-are { background: var(--bg2); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 5rem var(--px); }
.who-visual { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.who-visual-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85) saturate(0.9); transition: transform 0.6s ease, filter 0.4s ease; }
.who-visual:hover .who-visual-img { transform: scale(1.03); filter: brightness(0.9) saturate(1); }
.who-visual::before { content: ''; position: absolute; top: -1px; left: -1px; width: 60px; height: 60px; border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); z-index: 2; pointer-events: none; }
.who-visual::after { content: ''; position: absolute; bottom: -1px; right: -1px; width: 60px; height: 60px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); z-index: 2; pointer-events: none; }
.who-badge { position: absolute; bottom: 1.5rem; right: 0; background: var(--orange); color: #000; padding: 0.8rem 1.4rem; font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.08em; font-weight: 700; z-index: 3; }
.who-content h2 { margin-bottom: 1.3rem; }
.who-content > p { color: var(--muted); font-weight: 300; margin-bottom: 1rem; font-size: 0.93rem; }
.who-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.who-feature { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; border: 1px solid var(--border); transition: border-color 0.2s, background 0.2s; }
.who-feature:hover { border-color: rgba(57,212,37,0.3); background: rgba(57,212,37,0.03); }
.who-feature-icon { width: 40px; height: 40px; background: rgba(57,212,37,0.1); border: 1px solid rgba(57,212,37,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--orange); flex-shrink: 0; }
.who-feature-text h4 { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.who-feature-text p { font-size: 0.78rem; color: var(--muted); margin: 0; }
.about-stats { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem var(--px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.core-values { background: var(--bg2); padding: 5rem var(--px); }
.values-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.values-header p { max-width: 380px; color: var(--muted); font-size: 0.9rem; font-weight: 300; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.value-card { background: var(--bg2); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: background 0.3s; }
.value-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.4s ease; }
.value-card:hover { background: var(--bg3); }
.value-card:hover::after { width: 100%; }
.value-card-num { font-family: var(--font-display); font-size: 4rem; color: rgba(57,212,37,0.07); position: absolute; top: 0.5rem; right: 1.2rem; line-height: 1; }
.value-icon { width: 48px; height: 48px; background: rgba(57,212,37,0.1); border: 1px solid rgba(57,212,37,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--orange); margin-bottom: 1.5rem; }
.value-card h3 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.04em; margin-bottom: 0.8rem; }
.value-card p { color: var(--muted); font-size: 0.88rem; font-weight: 300; line-height: 1.65; }
.highlights { background: var(--bg); padding: 5rem var(--px); }
.highlights-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-bottom: 4rem; align-items: start; }
.highlight-tag { background: rgba(57,212,37,0.07); border: 1px solid rgba(57,212,37,0.2); color: var(--orange); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.8rem; display: inline-block; margin: 0.25rem; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv-card { padding: 2.5rem; border: 1px solid var(--border); position: relative; overflow: hidden; transition: border-color 0.3s; }
.mv-card:hover { border-color: rgba(57,212,37,0.3); }
.mv-card-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.mv-card h3 { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.04em; margin-bottom: 1rem; }
.mv-card p { color: var(--muted); font-weight: 300; font-size: 0.9rem; line-height: 1.7; }
.experience-strip { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem var(--px); display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.exp-number { font-family: var(--font-display); font-size: clamp(5rem, 12vw, 9rem); line-height: 0.9; color: var(--orange); flex-shrink: 0; }
.exp-content { flex: 1; min-width: 240px; }
.exp-content h3 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; text-transform: uppercase; margin-bottom: 0.8rem; }
.exp-content p { color: var(--muted); font-weight: 300; font-size: 0.92rem; max-width: 480px; }

/* ══════════════════════════════════════
   CONTACT PAGE STYLES
══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.contact-detail { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.contact-detail:last-child { border-bottom: none; }
.contact-detail:hover { background: var(--bg3); }
.contact-detail-icon { width: 38px; height: 38px; background: rgba(57,212,37,0.1); border: 1px solid rgba(57,212,37,0.2); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text h4 { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-detail-text a, .contact-detail-text p { color: var(--muted); font-size: 0.85rem; text-decoration: none; display: block; transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--orange); }
.hours-grid { margin-top: 2rem; border: 1px solid var(--border); }
.hours-title { padding: 0.8rem 1.2rem; background: rgba(57,212,37,0.06); border-bottom: 1px solid var(--border); font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.1em; color: var(--orange); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 1.2rem; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); font-weight: 300; }
.hours-row .time { color: var(--white); font-weight: 400; }
.hours-row .time.closed { color: var(--muted); }
.contact-form-wrap { background: var(--bg2); border: 1px solid var(--border); padding: 2.5rem; }
.form-header h3 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.04em; margin-bottom: 0.4rem; }
.form-header p { color: var(--muted); font-size: 0.85rem; font-weight: 300; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
select.form-input { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7570' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }
select.form-input option { background: var(--bg3); }
.form-textarea { min-height: 110px; line-height: 1.6; }
.form-submit { width: 100%; background: var(--orange); color: #000; border: none; padding: 0.9rem 2rem; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.5rem; }
.form-submit:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(57,212,37,0.3); }
.form-note { font-size: 0.73rem; color: var(--muted); text-align: center; margin-top: 1rem; }
.form-error { color: #e05555; font-size: 0.8rem; margin-top: 0.8rem; min-height: 1rem; }
.form-success { display: none; text-align: center; padding: 2rem 0; }
.quick-strip { background: var(--orange); padding: 2rem var(--px); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.quick-strip-text { font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.8rem); letter-spacing: 0.04em; color: #000; }
.quick-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #000; color: var(--orange); padding: 0.65rem 1.4rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.quick-btn:hover { background: #1a1a1a; }
.quick-btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; border: 1px solid rgba(0,0,0,0.3); color: #000; padding: 0.65rem 1.4rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; white-space: nowrap; }

/* ══════════════════════════════════════
   FAQ PAGE STYLES
══════════════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-sidebar { position: sticky; top: 7rem; }
.faq-sidebar h2 { margin-bottom: 1rem; }
.faq-sidebar p { color: var(--muted); font-weight: 300; font-size: 0.9rem; line-height: 1.8; margin-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; color: var(--white); font-family: var(--font-body); font-size: 0.95rem; text-align: left; cursor: pointer; padding: 1.4rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: color 0.2s; line-height: 1.5; }
.faq-question:hover { color: var(--orange); }
.faq-question.open { color: var(--orange); }
.faq-icon { width: 26px; height: 26px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.65rem; transition: transform 0.3s, border-color 0.2s; }
.faq-question.open .faq-icon { transform: rotate(45deg); border-color: rgba(57,212,37,0.4); background: rgba(57,212,37,0.1); color: var(--orange); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 400px; padding-bottom: 1.4rem; }
.faq-answer p { color: var(--muted); font-size: 0.9rem; font-weight: 300; line-height: 1.85; }
.faq-cat-title { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.12em; color: var(--orange); margin: 2.5rem 0 0.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(57,212,37,0.15); text-transform: uppercase; }
.faq-cat-title:first-child { margin-top: 0; }
.still-q { background: var(--bg2); border-top: 1px solid var(--border); text-align: center; padding: 5rem var(--px); }
.contact-options { display: flex; gap: 1px; background: var(--border); max-width: 700px; margin: 0 auto; }
.contact-option { flex: 1; background: var(--bg3); padding: 2rem 1.5rem; text-align: center; text-decoration: none; transition: background 0.25s; }
.contact-option:hover { background: var(--bg); }
.contact-option i { font-size: 1.5rem; color: var(--orange); margin-bottom: 0.8rem; display: block; }
.contact-option h4 { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.06em; margin-bottom: 0.4rem; color: var(--white); }
.contact-option p { color: var(--muted); font-size: 0.8rem; font-weight: 300; }

/* ══════════════════════════════════════
   RESPONSIVE additions
══════════════════════════════════════ */
@media (max-width: 900px) {
  .who-we-are { grid-template-columns: 1fr; gap: 2.5rem; }
  .who-visual { aspect-ratio: 16/9; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .highlights-intro { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .services-big-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid::before { display: none; }
  .coverage { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-sidebar { position: static; }
  .contact-options { flex-direction: column; }
  .experience-strip { flex-direction: column; gap: 2rem; text-align: center; }
  footer { grid-template-columns: 1fr; }
  .quick-strip { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); padding: 2.5rem var(--px); }
}

/* ══════════════════════════════════════
   v1.2 FIXES — Parent theme bleed & UI polish
══════════════════════════════════════ */

/* Admin bar compatibility — push fixed nav down for logged-in users */
.admin-bar nav#nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav#nav { top: 46px; }
}

/* Service feature items — reset parent Frutin white-box bleed */
.service-feature,
.service-features .service-feature {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-left: 0 !important;
  list-style: none !important;
}

/* Values grid — force dark cards, override parent theme */
.values-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1px !important;
  background: var(--border) !important;
}
.value-card {
  background: var(--bg2) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.value-card h3 {
  color: var(--white) !important;
}
.value-card p {
  color: var(--muted) !important;
}

/* FAQ category nav buttons (missing in v1.1) */
.faq-cat-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.faq-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.5rem 1rem;
  font-size: 0.73rem;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
  border-radius: 0;
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  color: var(--orange);
  border-color: rgba(57,212,37,0.4);
  background: rgba(57,212,37,0.06);
}
.faq-cat-btn i { font-size: 0.55rem; color: var(--orange); }

/* General parent Frutin bleed reset — any injected light wrappers */
.site-content, .site-main, #main, #content,
.page-content, .entry-content, .th-content-wrap,
.frutin-content, .fl-builder-content {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

/* WooCommerce / store notices — hide for clean look */
.woocommerce-store-notice,
.woocommerce-store-notice__dismiss-link,
p.woocommerce-store-notice,
.wp-site-blocks .woocommerce-store-notice {
  display: none !important;
}

/* value-icon in about page */
.value-icon {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

/* who-features needs margin */
.values-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.values-header > p {
  max-width: 380px;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
}


/* ══════════════════════════════════════
   v1.2 — Heading color hard override
   Prevents parent Frutin theme dark/green
   heading colors from bleeding through
══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  color: var(--white) !important;
}
h1 em, h2 em, h3 em,
.page-hero-title em {
  color: transparent !important;
  -webkit-text-stroke: 1px var(--white);
}
p {
  color: inherit;
}

/* ══════════════════════════════════════
   I AM NOT A ROBOT CAPTCHA
══════════════════════════════════════ */
.robot-check {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.robot-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  padding: 0.7rem 1.2rem 0.7rem 0.8rem;
  cursor: pointer;
  min-width: 260px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  user-select: none;
}
.robot-box {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.robot-box.checked {
  background: #4a90d9;
  border-color: #4a90d9;
}
.robot-tick {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.2s;
}
.robot-box.checked .robot-tick {
  opacity: 1;
}
.robot-text {
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: sans-serif;
  flex: 1;
}
.robot-logo {
  height: 38px;
  width: auto;
  opacity: 0.8;
  filter: none !important;
  box-shadow: none !important;
  border: none !important;
}
.robot-email {
  animation: fadeInUp 0.4s ease forwards;
}

/* ══════════════════════════════════════
   I AM NOT A ROBOT — POPUP OVERLAY v2
══════════════════════════════════════ */
.robot-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  padding: 1rem;
}
.robot-overlay.active { display: flex; animation: fadeIn 0.2s ease; }

.robot-popup {
  background: #fff;
  border-radius: 16px;
  width: 320px;
  max-width: 95vw;
  overflow: hidden;
  position: relative;
  animation: popupIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popupIn {
  from { opacity:0; transform: scale(0.82) translateY(24px); }
  to   { opacity:1; transform: none; }
}

.robot-popup-head {
  background: #0a0a0a;
  padding: 1.15rem 1.3rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.robot-popup-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #39d425;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.robot-popup-icon svg { width: 18px; height: 18px; fill: #000; }
.robot-popup-brand { flex: 1; }
.robot-popup-brand h3 { font-size: 0.92rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; font-family: sans-serif; }
.robot-popup-brand p  { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 2px; font-family: sans-serif; }
.robot-popup-close {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.08);
  border: none; border-radius: 50%;
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  font-family: sans-serif;
}
.robot-popup-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

.robot-popup-body { padding: 1.3rem 1.3rem 0.8rem; }
.robot-popup-desc {
  font-size: 0.82rem; color: #666;
  line-height: 1.55; margin-bottom: 1.1rem;
  font-family: sans-serif;
}

.robot-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #f8f8f8;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.robot-label:hover { border-color: #4a90d9; box-shadow: 0 0 0 3px rgba(74,144,217,0.1); }

.robot-box {
  width: 26px; height: 26px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.robot-box.checked { background: #4a90d9; border-color: #4a90d9; }
.robot-tick {
  font-size: 0; width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0; transition: opacity 0.2s;
}
.robot-box.checked .robot-tick { opacity: 1; }
.robot-text { flex: 1; font-size: 0.92rem; color: #333; font-weight: 500; font-family: sans-serif; }

.robot-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.robot-logo-wrap svg { width: 32px; height: 32px; }
.robot-logo-wrap span { font-size: 0.48rem; color: #aaa; letter-spacing: 0.03em; font-family: sans-serif; }

.robot-popup-success {
  display: flex; align-items: center; gap: 0.75rem;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.robot-popup-success svg { width: 26px; height: 26px; flex-shrink: 0; }
.robot-popup-success p { font-size: 0.88rem; color: #166534; font-weight: 500; margin: 0; font-family: sans-serif; }

.robot-popup-footer {
  border-top: 1px solid #f0f0f0;
  padding: 0.65rem 1.3rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.robot-popup-footer svg { width: 12px; height: 12px; fill: #bbb; flex-shrink: 0; }
.robot-popup-footer span { font-size: 0.68rem; color: #bbb; line-height: 1.4; font-family: sans-serif; }

/* ═══════════════════════════════════════════════════════════
   IMAGE CAPTCHA — imgcap-*
═══════════════════════════════════════════════════════════ */
.imgcap-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.imgcap-overlay.active { display: flex; animation: fadeIn 0.2s ease; }

.imgcap-popup {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  font-family: sans-serif;
}

/* Head */
.imgcap-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #1a1a1a;
  padding: 0.85rem 1rem;
}
.imgcap-icon {
  width: 32px; height: 32px;
  background: var(--orange, #f90);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.imgcap-icon svg { width: 16px; height: 16px; fill: #000; }
.imgcap-brand { flex: 1; }
.imgcap-brand h3 { font-size: 0.9rem; font-weight: 700; color: #fff; margin: 0; letter-spacing: 0.02em; }
.imgcap-brand p  { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin: 2px 0 0; }
.imgcap-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 1.4rem; line-height: 1;
  padding: 0 0.2rem; border-radius: 4px; transition: color 0.15s;
}
.imgcap-close:hover { color: #fff; }

/* Body */
.imgcap-body { padding: 1.1rem 1rem 0.7rem; }
.imgcap-instruction {
  font-size: 0.8rem; color: #666; margin: 0 0 0.35rem; text-align: center;
}
.imgcap-category {
  font-size: 1.05rem; font-weight: 700; color: #111;
  text-align: center; margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}

/* 3×3 grid */
.imgcap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 0.65rem;
}
.imgcap-tile {
  aspect-ratio: 1;
  border: 2.5px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: #f9fafb;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  overflow: hidden;
  padding: 6px;
}
.imgcap-tile svg { width: 100%; height: 100%; }
.imgcap-tile:hover { border-color: #9ca3af; background: #f3f4f6; transform: scale(1.03); }
.imgcap-tile--selected {
  border-color: var(--orange, #f90) !important;
  background: rgba(249,144,0,0.08) !important;
  box-shadow: 0 0 0 2px rgba(249,144,0,0.25);
}
.imgcap-tile--selected::after {
  content: '✓';
  position: absolute;
  top: 3px; right: 5px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--orange, #f90);
}
.imgcap-tile { position: relative; }

.imgcap-error {
  font-size: 0.78rem; color: #e05555; text-align: center;
  min-height: 1.2em; margin-bottom: 0.2rem;
}

.imgcap-success {
  display: flex; align-items: center; gap: 0.75rem;
  background: #f0fdf4; border: 1.5px solid #bbf7d0;
  border-radius: 10px; padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
}
.imgcap-success svg { width: 26px; height: 26px; flex-shrink: 0; }
.imgcap-success p { font-size: 0.88rem; color: #166534; font-weight: 500; margin: 0; }

/* Footer buttons */
.imgcap-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
  border-top: 1px solid #f0f0f0;
  gap: 0.5rem;
}
.imgcap-refresh-btn {
  display: flex; align-items: center; gap: 5px;
  background: none; border: 1.5px solid #e5e7eb;
  border-radius: 7px; padding: 0.45rem 0.85rem;
  font-size: 0.78rem; color: #555; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.imgcap-refresh-btn:hover { border-color: var(--orange, #f90); color: var(--orange, #f90); }
.imgcap-verify-btn {
  background: var(--orange, #f90);
  color: #000; border: none; border-radius: 7px;
  padding: 0.48rem 1.3rem; font-size: 0.85rem;
  font-weight: 700; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.imgcap-verify-btn:hover { background: #e08500; transform: translateY(-1px); }

/* Note */
.imgcap-note {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 0.65rem; color: #bbb; padding: 0.4rem 1rem 0.7rem;
  text-align: center;
}
.imgcap-note svg { fill: #bbb; flex-shrink: 0; }

/* Shake animation */
@keyframes imgcapShake {
  0%,100%{ transform:translateX(0); }
  20%{ transform:translateX(-6px); }
  40%{ transform:translateX(6px); }
  60%{ transform:translateX(-4px); }
  80%{ transform:translateX(4px); }
}
.imgcap-shake { animation: imgcapShake 0.38s ease; }
