/* ============================================================
   DUKAGO — Global Stylesheet
   ============================================================ */

@font-face {
  font-family: 'Aspira';
  src: url('../fonts/AspiraWide-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Aspira';
  src: url('../fonts/AspiraWide-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Aspira';
  src: url('../fonts/AspiraWide-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

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

:root {
  --orange:       #FF6A00;
  --orange-dark:  #D95A00;
  --orange-light: #FF8C30;
  --orange-faint: #FFF3EB;
  --black:        #0C0C0C;
  --dark:         #141414;
  --dark2:        #1E1E1E;
  --mid:          #444444;
  --grey:         #888888;
  --border:       #E8E8E8;
  --bg-light:     #F8F8F7;
  --white:        #FFFFFF;
  --font:         'Aspira', 'Helvetica Neue', sans-serif;
  --nav-h:        72px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 64px rgba(0,0,0,0.12);
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

.tag {
  display: inline-block;
  background: var(--orange-faint);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.tag-dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { font-size: 1rem; color: var(--mid); line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--orange);
  color: white;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,106,0,0.32);
}

.btn-secondary {
  background: white;
  color: var(--black);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--black);
  color: white;
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-1px);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* Arrow icon in btn */
.btn-arrow::after {
  content: '→';
  font-size: 1em;
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.08); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark { display: none; } /* Hidden — text-only logo */

.logo-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--orange);
  letter-spacing: -0.04em;
}

/* No span colouring needed — whole word is orange */
.logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links > li > a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid);
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition);
  display: block;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--black);
  background: var(--bg-light);
}

/* Dropdown */
.has-dropdown { position: relative; }

/* Invisible hover bridge fills the gap between trigger and menu */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1100;
}

/* Keep dropdown open when hovering the bridge or the menu itself */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 11px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--black);
  padding-left: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 32px 5%;
  overflow-y: auto;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover { color: var(--orange); }

.mobile-menu .mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── AWARD BANNER ── */
.award-banner {
  background: linear-gradient(90deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%);
  color: white;
  text-align: center;
  padding: 11px 5%;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 998;
  margin-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.award-banner .trophy { font-size: 1rem; }

/* ── PAGE HEADER (interior pages) ── */
.page-header {
  background: var(--black);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 { color: white; margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.65); max-width: 520px; font-size: 1.1rem; }
.page-header .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb a:hover { color: var(--orange); }
.page-header .breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── CARDS ── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(255,106,0,0.2);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-faint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ── SPLIT (50/50) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.step {
  position: relative;
  padding: 32px;
  text-align: center;
}

.step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--border);
}

.step:last-child::after { display: none; }

.step-num {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.9rem; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--black);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item {
  background: var(--black);
  padding: 32px;
  text-align: center;
}

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.04em;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 20px;
  padding-top: 24px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--grey); }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--black);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,0,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #EDFFF5;
  border: 1.5px solid #34C759;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #1A7A3C;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

.form-success::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: #34C759;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-error {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #FFF5F5;
  border: 1.5px solid #FF3B30;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #C0392B;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 16px;
}

/* ── TRUST BADGES ── */
.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey);
}

.trust-item .tick {
  width: 20px;
  height: 20px;
  background: var(--orange-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--black);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,106,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact-item .icon { color: var(--orange); font-size: 0.9rem; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer-contact-item a { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer-contact-item a:hover { color: var(--orange); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--orange);
  color: white;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--orange); }

/* ── WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.6); }
}

/* ── SECTION DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── ACCENT LINE ── */
.accent-line {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 28px;
}

.accent-line.center { margin: 16px auto 28px; }

/* ── CHIPS / TAGS ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid);
}

/* ── REQUIREMENT LIST ── */
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.925rem;
}

.req-list li:last-child { border-bottom: none; }

.req-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── BANNER STRIP ── */
.banner-strip {
  background: var(--orange-faint);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-strip .icon { font-size: 1.6rem; }
.banner-strip p { color: var(--dark); margin: 0; font-size: 0.9rem; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }

  .nav-links, .nav-actions .btn-secondary { display: none; }
  .hamburger { display: flex; }

  .split { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .split.reverse { direction: ltr; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .cta-buttons { flex-direction: column; align-items: center; }

  h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .trust-row { gap: 16px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
