/* ===== Brand ===== */

.brand-text {
  letter-spacing: 1px;
  font-variant: small-caps;
}

/* ===== Hero Section ===== */

.hero-section {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-section h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Icon Circles ===== */

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Step Numbers ===== */

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0f3460;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Cards ===== */

.card {
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

/* ===== Contact Card ===== */

.contact-card {
  background: #f8f9fa;
  transition: box-shadow 0.2s ease;
}

.contact-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

/* ===== Section Spacing ===== */

section {
  scroll-margin-top: 70px;
}

/* ===== Smooth Scrolling ===== */

html {
  scroll-behavior: smooth;
}

/* ===== Footer ===== */

footer {
  border-top: 3px solid #0f3460;
}

/* ===== Responsive Adjustments ===== */

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
}

