/* ═══════════════════════════════════════════════════════
   URBANGAP — STYLE.CSS
   Shared styles for all pages
   ═══════════════════════════════════════════════════════ */

/* ===== FONTS ===== */
@font-face {
  font-family: 'montbold';
  src: url('MontBold.woff2') format('woff2'),
       url('MontBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'montsemibold';
  src: url('MontSemiBold.woff2') format('woff2'),
       url('MontSemiBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== BOOTSTRAP OVERRIDES & DESIGN TOKENS ===== */
:root,
[data-bs-theme="dark"] {
  --bs-body-bg: #0a0a0a;
  --bs-body-color: #ffffff;
  --bs-body-font-family: 'Manrope', sans-serif;
  --bs-body-font-size: 16px;
  --bs-body-line-height: 1.6;
  --bs-link-color: inherit;
  --bs-link-hover-color: inherit;
  --bs-link-color-rgb: 255,255,255;
  --bs-link-hover-color-rgb: 255,255,255;
  --bs-border-color: rgba(255,255,255,0.15);
  --bs-hr-color: rgba(255,255,255,0.15);
  --bs-hr-opacity: 1;
  --bs-hr-margin-y: 0;
  --ug-accent: #e4092b;
  --ug-accent-hover: #c00823;
  --ug-text-soft: rgba(255,255,255,0.7);
  --ug-text-muted: rgba(255,255,255,0.6);
  --ug-text-dim: rgba(255,255,255,0.55);
  --ug-bg-subtle: #1a1a1a;
  --ug-space-section: clamp(80px, 10vw, 160px);
}

/* ===== BASE RESETS (over Bootstrap) ===== */
html { overflow-x: hidden; scrollbar-gutter: stable; }
body { overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
img { display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: normal; margin-bottom: 0; }

/* ===== LAYOUT ===== */
.ug-container {
  max-width: 1656px;
  margin: 0 auto;
  padding-left: 3.5vw;
  padding-right: 3.5vw;
}

/* ===== TYPOGRAPHY ===== */
.ug-font-bold { font-family: 'montbold', sans-serif; font-weight: 400; }
.ug-font-semi { font-family: 'montsemibold', sans-serif; font-weight: 400; }
.ug-title-xl { font-size: clamp(36px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.02em; }
.ug-title-lg { font-size: clamp(24px, 3.8vw, 56px); line-height: 1.15; letter-spacing: -0.02em; }
.ug-title-md { font-size: clamp(22px, 2vw, 30px); line-height: 1.2; }
.ug-title-sm { font-size: clamp(24px, 2.5vw, 36px); line-height: 1.2; }
.ug-text-body { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.75); }
.ug-text-body-lg { font-size: 20px; line-height: 1.5; color: rgba(255,255,255,0.85); }
.ug-counter { font-size: 150px; line-height: 1; letter-spacing: -0.05em; }
.ug-mb-fluid { margin-bottom: clamp(40px, 5vw, 80px); }
.ug-text-indent { text-indent: 0; }
@media (min-width: 576px) { .ug-text-indent { text-indent: 20%; } }

/* ===== BUTTONS ===== */
.ug-btn {
  font-family: 'montsemibold', sans-serif; font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #ffffff;
  border: solid 1px #ffffff;
  border-radius: 10em;
  padding: 18px 27px;
  white-space: pre-wrap;
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.ug-btn:hover { background: #fff; color: var(--bs-body-bg); }
.ug-btn i { font-size: 12px; }
.ug-btn-icon-right { font-size: 12px; margin-left: 6px; }
.ug-btn-icon-left { font-size: 11px; margin-right: 6px; }

/* ===== SPACERS ===== */
.ug-spacer-sm { height: 32px; }
.ug-spacer-lg { height: var(--ug-space-section); }

/* ===== ICON LINKS ===== */
.ug-icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; transition: transform 0.3s;
}
.ug-icon-link:hover { transform: translateY(4px); }
.ug-icon-link--diagonal:hover { transform: translate(3px, -3px); }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.ug-navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 36px 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s ease, background 0.4s ease;
}
.ug-navbar.ug-scrolled {
  padding: 18px 3.5vw;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
}
.ug-navbar-logo svg { height: 18px; fill: #fff; }
.ug-navbar-nav { display: flex; align-items: center; gap: 32px; list-style: none; margin-bottom: 0; padding-left: 0; }
.ug-navbar-link { font-family: 'montsemibold', sans-serif; font-weight: 400; font-size: 14px; color: var(--ug-text-soft); transition: color 0.3s; }
.ug-navbar-link:hover { color: var(--ug-accent); }
.ug-navbar-link.ug-active-link { color: var(--ug-accent); }

.ug-dropdown { position: relative; }
.ug-dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.ug-dropdown-toggle::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-top: -2px;
  display: inline-block;
  margin-left: 0;
  vertical-align: initial;
  border-top: 0;
}
.ug-dropdown:hover .ug-dropdown-toggle::after { transform: rotate(-135deg); }
.ug-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 220px;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  list-style: none;
  margin: 0;
}
.ug-dropdown:hover .ug-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.ug-dropdown-item { font-family: 'montsemibold', sans-serif; font-weight: 400; display: block; padding: 10px 20px; font-size: 13px; color: var(--ug-text-muted); transition: color 0.2s, background 0.2s; }
.ug-dropdown-item:hover { color: var(--ug-accent); background: rgba(255,255,255,0.06); }
.ug-navbar-btn { font-size: 14px; }
.ug-mobile-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001;
  background: none; border: none; padding: 0;
}
.ug-mobile-toggle span { width: 24px; height: 2px; background: #fff; display: block; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.ug-hero {
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 3.5vw 48px;
}
.ug-hero-inner { max-width: 1656px; margin: 0 auto; width: 100%; }
.ug-hero-title { max-width: 1284px; margin-bottom: 48px; }
.ug-hero-sub { font-family: 'montsemibold', sans-serif; font-weight: 400; font-size: 16px; color: var(--ug-text-soft); line-height: 1.4; margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════ */
.ug-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ug-text-muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ug-breadcrumb a { color: var(--ug-text-muted); transition: color 0.3s; }
.ug-breadcrumb a:hover { color: #fff; }
.ug-breadcrumb-sep { color: rgba(255,255,255,0.3); }
.ug-breadcrumb-current { color: #fff; }

/* ═══════════════════════════════════════════════════════
   CAROUSEL (homepage)
   ═══════════════════════════════════════════════════════ */
.ug-carousel { height: 90vh; position: relative; overflow: hidden; }
.ug-carousel-slide {
  position: absolute; inset: -20%;
  background-size: cover; background-position: center;
  opacity: 0;
  will-change: transform;
}
.ug-carousel-slide.ug-active { opacity: 1; }

/* ===== SECTIONS (spacing) ===== */
.ug-section-quad { padding-top: var(--ug-space-section); padding-bottom: var(--ug-space-section); }
.ug-section-quad-top { padding-top: var(--ug-space-section); padding-bottom: 0; }
.ug-section-double-bottom { padding-top: var(--ug-space-section); padding-bottom: clamp(40px, 5vw, 80px); }

/* ===== IMAGE MARQUEE (homepage) ===== */
.ug-marquee { overflow: hidden; }
.ug-marquee-wrapper { overflow: hidden; }
.ug-marquee-track { display: flex; gap: 12px; padding: 6px 0; animation: ug-mq-left 30s linear infinite; }
.ug-marquee-track--reverse { animation: ug-mq-right 30s linear infinite; }
.ug-marquee-item {
  flex-shrink: 0; width: 25vw; height: 25vw;
  border-radius: 20px; overflow: hidden; background: var(--ug-bg-subtle);
}
.ug-marquee-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes ug-mq-left { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-25vw * 5 - 60px)); } }
@keyframes ug-mq-right { 0% { transform: translateX(calc(-25vw * 5 - 60px)); } 100% { transform: translateX(0); } }

/* ===== STATS (homepage) ===== */
.ug-stat-label {
  font-size: 20px;
  color: var(--ug-text-muted);
  margin-top: 12px; line-height: 1.4; max-width: 300px;
}

/* ===== CLIENTS MARQUEE (homepage) ===== */
.ug-clients { padding: 24px 0 var(--ug-space-section); overflow: hidden; }
.ug-clients-track { display: flex; align-items: center; animation: ug-cl-left 25s linear infinite; }
.ug-clients-track--reverse { animation: ug-cl-right 25s linear infinite; }
.ug-client-logo {
  flex-shrink: 0; width: clamp(100px, 18vw, 140px);
  opacity: 0.5; transition: opacity 0.3s; padding: 8px 16px;
}
.ug-client-logo:hover { opacity: 1; }
@keyframes ug-cl-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes ug-cl-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ===== FULL-WIDTH IMAGE ===== */
.ug-fullimage { height: 100vh; background-size: cover; background-position: center; }

/* ===== SERVICES — HOME ===== */
.ug-service-row { padding: clamp(32px, 4vw, 56px) 0; }
.ug-service-num { font-size: 18px; color: var(--ug-text-soft); }

/* ═══════════════════════════════════════════════════════
   INTERNAL PAGE — CONTENT SECTIONS
   ═══════════════════════════════════════════════════════ */
.ug-content-section {
  padding-top: var(--ug-space-section);
  padding-bottom: var(--ug-space-section);
}

/* ═══════════════════════════════════════════════════════
   INTERNAL PAGE — SERVICE ROWS (visible, no accordion)
   ═══════════════════════════════════════════════════════ */
.ug-content-section .ug-service-row {
  padding: clamp(24px, 3vw, 40px) 0;
}
.ug-content-section .ug-service-num {
  font-size: 14px;
  color: var(--ug-text-muted);
  padding-top: 4px;
}
.ug-content-section .ug-service-row .ug-title-md {
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════
   INTERNAL PAGE — FAQ
   ═══════════════════════════════════════════════════════ */
.ug-faq-item { padding: clamp(20px, 2.5vw, 32px) 0; cursor: pointer; }
.ug-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ug-faq-question-text {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.4;
}
.ug-faq-toggle {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.ug-faq-item.ug-open .ug-faq-toggle { transform: rotate(45deg); }
.ug-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  opacity: 0;
}
.ug-faq-item.ug-open .ug-faq-answer {
  max-height: 500px;
  opacity: 1;
}
.ug-faq-answer-inner {
  padding-top: 16px;
  max-width: 800px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.ug-footer-main { padding-top: var(--ug-space-section); padding-bottom: clamp(100px, 14vw, 200px); }
.ug-footer-heading { margin-bottom: 32px; }
.ug-footer-links { font-size: 15px; line-height: 2; color: var(--ug-text-muted); }
.ug-footer-links a { color: var(--ug-text-muted); transition: color 0.3s; }
.ug-footer-links a:hover { color: var(--ug-accent); }
.ug-footer-copyright { padding: 32px 0; font-size: 14px; color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.ug-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.ug-reveal.ug-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   STICKY BADGE
   ═══════════════════════════════════════════════════════ */
.ug-badge {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-width: 360px;
}
.ug-badge:hover {
  border-color: rgba(228,9,43,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}
.ug-badge-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--ug-accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; position: relative;
}
.ug-badge-icon::before,
.ug-badge-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--ug-accent);
  border-radius: 13px;
  animation: ug-radar 2s ease-out infinite;
}
.ug-badge-icon::after { animation-delay: 1s; }
@keyframes ug-radar {
  0% { inset: -4px; opacity: 0.6; }
  100% { inset: -14px; opacity: 0; border-radius: 18px; }
}
.ug-badge-content { flex: 1; min-width: 0; }
.ug-badge-title { font-size: 15px; color: var(--ug-accent); line-height: 1.3; margin-bottom: 2px; }
.ug-badge-desc {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ug-badge-arrow { flex-shrink: 0; color: var(--ug-accent); font-size: 18px; transition: transform 0.3s; }
.ug-badge:hover .ug-badge-arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════
   MODAL + FORM
   ═══════════════════════════════════════════════════════ */
.ug-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.ug-modal-overlay.ug-active { opacity: 1; visibility: visible; }
.ug-modal {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  width: 90vw; max-width: 500px; max-height: 90vh;
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.35s;
}
.ug-modal-scroll { flex: 1; overflow-y: auto; padding: 32px; }
.ug-modal-scroll::-webkit-scrollbar { width: 4px; }
.ug-modal-scroll::-webkit-scrollbar-track { background: transparent; }
.ug-modal-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
.ug-modal-overlay.ug-active .ug-modal { transform: translateY(0); }

.ug-modal-close {
  position: absolute; top: 24px; right: 24px; z-index: 1;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--ug-text-muted); font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; line-height: 1;
}
.ug-modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.ug-modal-pill {
  display: inline-block;
  background: rgba(228,9,43,0.12);
  border: 1px solid rgba(228,9,43,0.3);
  color: var(--ug-accent);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 10em; margin-bottom: 20px;
}
.ug-modal-title {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.ug-modal-desc {
  font-size: 15px; line-height: 1.65; color: var(--ug-text-dim);
  margin-bottom: 32px; max-width: 520px;
}

.ug-modal-features {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 24px 28px; margin-bottom: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.ug-modal-feature { display: flex; align-items: flex-start; gap: 16px; }
.ug-modal-feature-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.ug-modal-feature-title { font-size: 15px; color: #fff; margin-bottom: 2px; }
.ug-modal-feature-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.4; }

.ug-step-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.ug-step-number {
  width: 32px; height: 32px;
  background: var(--ug-accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; flex-shrink: 0;
}
.ug-step-number.ug-done { background: rgba(228,9,43,0.25); }
.ug-step-label { font-size: 16px; color: #fff; }

.ug-form-step { display: none; }
.ug-form-step.ug-active { display: block; }
.ug-form-label { display: block; font-size: 14px; color: var(--ug-text-dim); margin-bottom: 10px; }
.ug-form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 12px 14px;
  color: #fff; font-family: 'Manrope', sans-serif; font-size: 15px;
  transition: border-color 0.3s; outline: none;
}
.ug-form-input:focus { border-color: var(--ug-accent); }
.ug-form-input::placeholder { color: rgba(255,255,255,0.2); }
.ug-form-textarea { resize: vertical; min-height: 110px; }

.ug-radio-group { display: flex; flex-direction: column; gap: 8px; }
.ug-radio-label {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid transparent; border-radius: 10px;
  cursor: pointer; font-size: 15px; color: rgba(255,255,255,0.75);
  transition: border-color 0.3s, background 0.3s;
}
.ug-radio-label:hover { background: rgba(255,255,255,0.07); }
.ug-radio-label input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%; flex-shrink: 0; position: relative;
  transition: border-color 0.3s;
}
.ug-radio-label input[type="radio"]:checked { border-color: var(--ug-accent); }
.ug-radio-label input[type="radio"]:checked::after {
  content: '';
  position: absolute; top: 3px; left: 3px;
  width: 8px; height: 8px;
  background: var(--ug-accent); border-radius: 50%;
}
.ug-radio-label:has(input:checked) {
  border-color: rgba(228,9,43,0.4); background: rgba(228,9,43,0.06);
}

.ug-checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ug-text-dim); line-height: 1.5; cursor: pointer;
}
.ug-checkbox-label a { color: var(--ug-accent); text-decoration: none; }
.ug-checkbox-label a:hover { text-decoration: underline; }
.ug-checkbox-label .ug-required { color: var(--ug-accent); }
.ug-checkbox-label input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px; flex-shrink: 0; margin-top: 1px;
  position: relative;
  transition: border-color 0.3s, background 0.3s; cursor: pointer;
}
.ug-checkbox-label input[type="checkbox"]:checked {
  border-color: var(--ug-accent); background: var(--ug-accent);
}
.ug-checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute; top: 0px; left: 3px;
  font-size: 13px; color: #fff; font-weight: 700;
}

.ug-form-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px; gap: 12px;
}
.ug-btn-back {
  font-family: 'montsemibold', sans-serif; font-weight: 400;
  background: transparent;
  border: solid 1px rgba(255,255,255,0.15);
  border-radius: 10em;
  color: var(--ug-text-soft); font-size: 14px;
  cursor: pointer; padding: 14px 22px;
  transition: all 0.3s;
}
.ug-btn-back:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.ug-btn-next {
  font-family: 'montsemibold', sans-serif; font-weight: 400;
  background: var(--ug-accent); color: #fff;
  border: solid 1px var(--ug-accent);
  border-radius: 10em; padding: 14px 28px;
  white-space: pre-wrap; text-align: center; vertical-align: middle;
  font-size: 15px; cursor: pointer;
  transition: all 0.3s;
}
.ug-btn-next:hover { background: var(--ug-accent-hover); border-color: var(--ug-accent-hover); }

.ug-progress-bar { height: 4px; background: rgba(255,255,255,0.08); flex-shrink: 0; overflow: hidden; }
.ug-progress-fill {
  height: 100%; background: var(--ug-accent);
  border-radius: 0 0 0 20px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 33.33%;
}

.ug-form-success { text-align: center; padding: 32px 0; }
.ug-form-success-title { margin-bottom: 12px; }
.ug-form-success-text { color: var(--ug-text-dim); }
.ug-form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(228,9,43,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 28px; color: var(--ug-accent);
}

/* ═══════════════════════════════════════════════════════
   INLINE CONTACT FORM
   ═══════════════════════════════════════════════════════ */
.ug-inline-form { position: relative; }
.ug-inline-form .ug-required { color: var(--ug-accent); }
.ug-inline-form .ug-form-row { margin-top: 4px; }
.ug-inline-form .ug-form-privacy { margin-top: 16px; }
.ug-inline-form .ug-form-submit { margin-top: 24px; }
.ug-cta-desc { margin-top: 24px; }
.ug-cf-success { display: none; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .ug-navbar-nav { display: none; }
  .ug-mobile-toggle { display: flex; }

  /* Mobile menu open — scroll lock (CSS only) */
  html.ug-nav-open,
  html.ug-nav-open body { overflow: hidden; }

  /* Mobile menu open — fullscreen overlay */
  html.ug-nav-open .ug-navbar {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    padding: 100px 3.5vw 40px;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  html.ug-nav-open .ug-navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  html.ug-nav-open .ug-navbar-link { font-size: 18px; color: #fff; }
  html.ug-nav-open .ug-navbar-logo {
    position: absolute;
    top: 36px;
    left: 3.5vw;
  }
  html.ug-nav-open .ug-mobile-toggle {
    position: absolute;
    top: 36px;
    right: 3.5vw;
  }
  html.ug-nav-open .ug-dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 8px 0 0;
    min-width: 0;
    text-align: center;
  }
  html.ug-nav-open .ug-dropdown-item { padding: 6px 0; font-size: 14px; }
  html.ug-nav-open .ug-dropdown-toggle::after { display: none; }

  /* Hamburger → X animation */
  html.ug-nav-open .ug-mobile-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  html.ug-nav-open .ug-mobile-toggle span:nth-child(2) { opacity: 0; }
  html.ug-nav-open .ug-mobile-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .ug-mobile-toggle span { transition: transform 0.3s, opacity 0.3s; }

  .ug-marquee-item { width: 40vw; height: 40vw; }
  @keyframes ug-mq-left { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-40vw * 5 - 60px)); } }
  @keyframes ug-mq-right { 0% { transform: translateX(calc(-40vw * 5 - 60px)); } 100% { transform: translateX(0); } }
}
@media (max-width: 575.98px) {
  .ug-hero { min-height: 60vh; }
  .ug-counter { font-size: 60px; }
  .ug-carousel, .ug-fullimage { height: 60vh; }
  .ug-modal-scroll { padding: 24px; }
  .ug-badge { right: 12px; bottom: 12px; max-width: calc(100vw - 24px); padding: 12px 16px; }
  .ug-modal-features { padding: 20px; }
}
