/* ============================================================
   FINNHOS — Style.css
   Premium Logistics & Supply Chain Consulting
   ============================================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ── */
:root {
  --primary:        #122044;
  --primary-dark:   #0a1628;
  --accent:         #f97316;
  --accent-dark:    #ea6c0a;
  --bg:             #ffffff;
  --bg-secondary:   #f1f5f9;
  --card:           #ffffff;
  --text:           #0f172a;
  --text-muted:     #64748b;
  --border:         #e2e8f0;
  --white:          #ffffff;
  --nav-bg:         rgba(18,32,68,0.94);
  --nav-bg-solid:   rgba(10,22,40,0.98);
  --radius:         12px;
  --radius-lg:      16px;
  --radius-xl:      20px;
  --shadow:         0 4px 24px rgba(18,32,68,0.08);
  --shadow-lg:      0 12px 40px rgba(18,32,68,0.14);
  --transition:     0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-dark {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(18,32,68,0.25);
}
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: var(--nav-bg-solid);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(249,115,22,0.3);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  font-family: 'Inter', sans-serif;
  padding: 0;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--accent); }
.nav-dropdown-toggle svg {
  width: 16px; height: 16px;
  transition: transform var(--transition);
}
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0a1628;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  min-width: 280px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 100;
}
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-header {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), background var(--transition);
}
.dropdown-header:hover { color: var(--accent); background: rgba(255,255,255,0.04); }
.dropdown-item {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition), background var(--transition);
}
.dropdown-item:hover, .dropdown-item.active { color: var(--accent); background: rgba(255,255,255,0.04); }
/* Nav CTA */
.nav-download {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.nav-download:hover { color: var(--accent); }
.nav-download svg { width: 15px; height: 15px; }
/* Hamburger */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger-line {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.navbar-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #0a1628;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 12px 0 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu-link {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition);
}
.mobile-menu-link:hover, .mobile-menu-link.active { color: var(--accent); }
.mobile-services-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.mobile-services-toggle svg { width: 16px; height: 16px; color: rgba(255,255,255,0.5); transition: transform var(--transition); }
.mobile-services-toggle.open svg { transform: rotate(180deg); }
.mobile-services-sub { display: none; background: rgba(0,0,0,0.2); }
.mobile-services-sub.open { display: block; }
.mobile-services-sub a {
  display: block;
  padding: 10px 24px 10px 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.mobile-services-sub a:hover { color: var(--accent); }
.mobile-menu-cta { padding: 16px 24px 0; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: overlay;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--primary) 40%, rgba(18,32,68,0.85) 70%, rgba(18,32,68,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(249,115,22,0); }
}
.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  color: var(--white);
  max-width: 780px;
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-bottom: 44px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 32px; height: 32px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--primary);
  padding: 140px 0 80px;
  color: var(--white);
  text-align: center;
  position: relative;
}
.page-header h1 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 20px; }
.page-header p { font-size: 19px; color: rgba(255,255,255,0.75); max-width: 680px; margin: 0 auto; }
.page-header.left { text-align: left; }
.page-header.left p { margin: 0; max-width: 600px; }

/* ── STATS GRID ── */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stat-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-card:hover { background: #e8edf5; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(249,115,22,0.15);
  border-radius: 50%;
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scale(2.5); }
.service-card:hover { background: rgba(255,255,255,0.1); }
.service-card-icon {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.service-card-icon svg { width: 28px; height: 28px; color: var(--white); }
.service-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  transition: color var(--transition);
  position: relative; z-index: 1;
}
.service-card:hover h4 { color: var(--accent); }
.service-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  flex-grow: 1;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
  position: relative; z-index: 1;
}
.service-card:hover .service-card-link { color: var(--white); }
.service-card-link svg { width: 16px; height: 16px; }

/* Service page card (white bg) */
.service-card-light {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.service-card-light:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}
.service-card-light .service-card-icon {
  background: rgba(249,115,22,0.1);
  box-shadow: none;
}
.service-card-light .service-card-icon svg { color: var(--accent); }
.service-card-light h2 { font-size: 22px; color: var(--primary); margin-bottom: 12px; }
.service-card-light p { font-size: 15px; color: var(--text-muted); flex-grow: 1; margin-bottom: 28px; }

/* ── DIFFERENTIATORS ── */
.diff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.diff-icon {
  width: 48px; height: 48px;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.diff-icon svg { width: 24px; height: 24px; color: var(--accent); }
.diff-card h4 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
.diff-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ── METHODOLOGY ── */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.methodology-grid::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}
.method-step { text-align: center; position: relative; z-index: 1; }
.method-number {
  width: 92px; height: 92px;
  margin: 0 auto 24px;
  background: var(--card);
  border: 4px solid var(--bg);
  box-shadow: 0 8px 32px rgba(18,32,68,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
}
.method-step h4 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.method-step p { font-size: 14px; color: var(--text-muted); }

/* ── TESTIMONIAL CARDS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
}
.testimonial-card .quote-mark {
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-author h5 { font-size: 15px; color: var(--white); margin-bottom: 2px; }
.testimonial-author span { font-size: 13px; color: rgba(255,255,255,0.55); }

/* White testimonial card */
.testimonial-card-light {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.testimonial-card-light:hover { box-shadow: var(--shadow-lg); }
.testimonial-card-light .quote-mark { color: var(--accent); opacity: 0.45; }
.testimonial-card-light p { color: rgba(15,23,42,0.75); font-style: italic; font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.testimonial-card-light .testimonial-author h5 { color: var(--primary); }
.testimonial-card-light .testimonial-author span { color: var(--text-muted); }
.testimonial-card-light .author-avatar { background: var(--primary); }

/* ── FAQ ACCORDION ── */
.faq-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 12px 12px;
  box-shadow: var(--shadow);
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  gap: 16px;
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--accent); }
.accordion-btn.open { color: var(--accent); }
.accordion-icon {
  width: 24px; height: 24px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.accordion-btn.open .accordion-icon { background: var(--accent); transform: rotate(45deg); }
.accordion-icon svg { width: 14px; height: 14px; color: var(--text-muted); }
.accordion-btn.open .accordion-icon svg { color: var(--white); }
.accordion-content {
  display: none;
  padding: 0 16px 22px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}
.accordion-content.open { display: block; }

/* ── CONTACT FORM ── */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(18,32,68,0.08);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus,
.form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-error { font-size: 13px; color: #ef4444; margin-top: 5px; display: none; }
.form-error.visible { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #16a34a;
  text-align: center;
  margin-top: 16px;
}
.form-success.visible { display: block; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--accent);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.15) 1px, transparent 0);
  background-size: 32px 32px;
}
.cta-section h2 { font-size: clamp(32px,4vw,48px); color: var(--white); margin-bottom: 20px; position: relative; z-index: 1; }
.cta-section p { font-size: 19px; color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-section .btn { position: relative; z-index: 1; }

/* ── WHY CHOOSE ── */
.why-section { background: var(--bg-secondary); }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  width: 100%;
  height: 260px;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(100%);
}
.map-label {
  position: relative; z-index: 1;
  background: rgba(18,32,68,0.9);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.map-label svg { color: var(--accent); width: 16px; height: 16px; }

/* ── CONTACT INFO ── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-info-item h4 { font-size: 17px; color: var(--primary); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item address { font-size: 15px; color: var(--text-muted); font-style: normal; line-height: 1.6; }

/* ── SERVICE DETAIL PAGE ── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: flex-start; }
.service-sidebar {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: sticky;
  top: 100px;
}
.service-sidebar h3 { font-size: 22px; margin-bottom: 16px; }
.service-sidebar p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.service-sidebar hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 28px 0; }
.service-sidebar h4 { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 16px; font-weight: 600; }
.other-services-list { display: flex; flex-direction: column; gap: 12px; }
.other-services-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.other-services-list a:hover { color: var(--accent); }
.other-services-list a svg { width: 14px; height: 14px; opacity: 0; transition: opacity var(--transition); }
.other-services-list a:hover svg { opacity: 1; }
.section-title { font-size: clamp(26px,3vw,36px); color: var(--primary); margin-bottom: 24px; }
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--radius);
}
.benefit-icon { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.benefit-item span { font-size: 14px; font-weight: 600; color: var(--primary); }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; gap: 24px; }
.step-number-wrap { display: flex; flex-direction: column; align-items: center; }
.step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
}
.step-line { width: 2px; flex-grow: 1; background: var(--border); margin: 4px 0; min-height: 32px; }
.process-step:last-child .step-line { display: none; }
.step-content { padding-bottom: 32px; padding-top: 6px; }
.step-content h4 { font-size: 18px; color: var(--primary); }
.results-box {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.results-box h3 { font-size: 22px; color: var(--primary); margin-bottom: 12px; }
.results-box p { font-size: 16px; color: rgba(15,23,42,0.75); font-style: italic; font-weight: 500; }

/* ── FOOTER ── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 60px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-brand .logo-name { font-size: 22px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social:hover { background: var(--accent); }
.footer-social svg { width: 18px; height: 18px; color: var(--white); }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 24px; }

/* ── LAYOUT HELPERS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gap-section { gap: 96px; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--accent); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ── SECTION BG VARIANTS ── */
.bg-primary { background: var(--primary); color: var(--white); }
.bg-secondary { background: var(--bg-secondary); }
.bg-accent { background: var(--accent); }
.bg-white { background: var(--bg); }

/* ── INLINE SVG helpers ── */
.icon-sm { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .methodology-grid { grid-template-columns: repeat(2,1fr); }
  .methodology-grid::before { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .navbar-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-2 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .four-col { grid-template-columns: repeat(2,1fr); }
  .three-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .methodology-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .form-card { padding: 28px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 36px; }
}
