/* ─────── BREADCRUMB ─────── */

.breadcrumb-nav {
  background: var(--bg1);
  padding: 12px 20px;
  position: relative;
  z-index: 10;
}

.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.breadcrumb-link {
  color: var(--text2);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
  opacity: 0.8;
}

.breadcrumb-separator {
  color: var(--text2);
}

.breadcrumb-current {
  color: var(--blue);
  font-weight: 500;
}

/* ─────── SECTION TAG ─────── */

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(31, 134, 255, 0.15);
  border: 1px solid rgba(31, 134, 255, 0.3);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 8px 16px;
  border-radius: 24px;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231f86ff"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon></svg>') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

/* ─────── HERO SERVICES SECTION ─────── */

.hero-services {
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(10, 28, 54, 0.8), rgba(7, 22, 45, 0.6));
  border-bottom: 1px solid var(--border1);
}

.hero-services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-services-left {
  z-index: 1;
}

.hero-title-dual {
  font-size: 48px;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title-dual .text-sky {
  color: var(--blue);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}

/* CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Metrics Row */
.metrics-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric-card {
  background: rgba(31, 134, 255, 0.08);
  border: 1px solid rgba(31, 134, 255, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  min-width: 120px;
}

.metric-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--text2);
  font-weight: 600;
}

/* Right Column - Expertise Cards */
.hero-services-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.expertise-card {
  background: linear-gradient(135deg, rgba(31, 134, 255, 0.1), rgba(19, 191, 159, 0.05));
  border: 1px solid rgba(31, 134, 255, 0.2);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(31, 134, 255, 0.15), rgba(19, 191, 159, 0.08));
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 134, 255, 0.15);
}

.expertise-icon {
  width: 56px;
  height: 56px;
  background: rgba(31, 134, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}

.expertise-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0;
}

/* ─────── GLOBAL FORM STYLES ─────── */
select {
    background: transparent !important;
    color: #fff !important;
    color-scheme: dark;
}

select option {
    background: #0a192f !important;
    color: #fff !important;
}

/* ─────── RESPONSIVE ─────── */

@media (max-width: 1024px) {
  .hero-services-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title-dual {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-services {
    padding: 60px 20px;
  }

  .hero-services-right {
    order: 2;
  }

  .hero-title-dual {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .metrics-row {
    gap: 16px;
  }

  .metric-card {
    flex: 1;
    min-width: 100px;
  }

  .breadcrumb-inner {
    font-size: 12px;
  }
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue);
  background: rgba(31, 134, 255, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

.section-sub {
  color: #a5bdd8;
  font-size: 16px;
}

/* ─────── BUTTONS ─────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: #1f86ff;
  color: white;
}

.btn-primary:hover {
  background: #1675e1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 134, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(100, 120, 170, 0.4);
}

.btn-ghost:hover {
  background: rgba(31, 134, 255, 0.1);
  border-color: #1f86ff;
  color: #1f86ff;
}

section {
  overflow: hidden;
}

@media (max-width: 768px) {
  section[style*="padding: 80px"] {
    padding: 60px 20px !important;
  }
  
  section[style*="padding: 64px"] {
    padding: 48px 20px !important;
  }
  
  section[style*="padding: 120px"] {
    padding: 80px 20px !important;
  }
}

@media (max-width: 480px) {
  section[style*="padding: 80px"] {
    padding: 40px 16px !important;
  }
  
  section[style*="padding: 64px"] {
    padding: 32px 16px !important;
  }
  
  section[style*="padding: 120px"] {
    padding: 60px 16px !important;
  }
}

/* ─────── RESPONSIVE UTILITIES ─────── */

@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-tag {
    font-size: 11px;
    padding: 5px 12px;
  }
}

@media (max-width: 480px) {
  .section-tag {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 16px;
  }
  
  .section-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .section-sub {
    font-size: 14px;
  }
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .gap-8 {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .md\:grid {
    display: grid;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hidden\.md {
    display: none !important;
  }
  
  .gap-6 {
    gap: 1rem;
  }
  
  .gap-8 {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .gap-4 {
    gap: 0.75rem;
  }
  
  .gap-6 {
    gap: 0.75rem;
  }
  
  .gap-8 {
    gap: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .lg\:hidden {
    display: none !important;
  }

  .lg\:grid {
    display: grid;
  }
}

