/* ====================================
   Excellence Code - Static Export
   Complete CSS Stylesheet
   ==================================== */

/* -------- CSS Variables / Design Tokens -------- */
:root {
  /* Core Brand Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222, 47%, 11%);

  /* Surface colors */
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 47%, 11%);

  /* Primary: Deep Blue */
  --primary: hsl(213, 52%, 24%);
  --primary-foreground: hsl(210, 40%, 98%);

  /* Secondary */
  --secondary: hsl(220, 44%, 41%);
  --secondary-foreground: hsl(210, 40%, 98%);

  /* Muted */
  --muted: hsl(210, 20%, 98%);
  --muted-foreground: hsl(215, 16%, 47%);

  /* Border */
  --border: hsl(214, 32%, 91%);
  --input: hsl(214, 32%, 91%);

  /* Radius */
  --radius: 0.5rem;

  /* Shadows */
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* -------- Reset & Base -------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* -------- Utilities -------- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.w-full { width: 100%; }

.hidden { display: none !important; }

/* -------- Animations -------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 1s; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(213, 52%, 20%);
  box-shadow: var(--shadow-card-hover);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background-color: var(--muted);
  border-color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* -------- Section Styles -------- */
.section-muted {
  background-color: var(--muted);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 4rem;
}

/* ======== HEADER ======== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-inner { height: 5rem; }
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .logo { font-size: 1.5rem; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta { display: inline-flex; }
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--foreground);
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  animation: fadeIn 0.3s ease;
}

@media (min-width: 768px) {
  .nav-mobile { display: none !important; }
}

.nav-mobile .nav-link {
  font-size: 1rem;
  padding: 0.5rem 0;
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), rgba(255,255,255,0.8), rgba(255,255,255,0.6));
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent, rgba(255,255,255,0.9));
}

.hero-accents {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.accent-circle {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.accent-square {
  position: absolute;
  bottom: 33%;
  left: 8%;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(30, 58, 95, 0.06);
  transform: rotate(45deg);
}

.accent-rounded {
  position: absolute;
  top: 50%;
  right: 25%;
  width: 6rem;
  height: 6rem;
  background: rgba(30, 58, 95, 0.03);
  border-radius: 0.75rem;
  transform: rotate(12deg);
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  background: rgba(30, 58, 95, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 4.5rem; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 28rem;
  margin: 4rem auto 0;
}

.stat {
  text-align: center;
}

.stat-bordered {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 640px) {
  .stat-value { font-size: 1.875rem; }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.scroll-link:hover {
  color: var(--primary);
}

.scroll-link span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-link svg {
  animation: bounce 2s ease-in-out infinite;
}

/* ======== ABOUT ======== */
.about {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .about { padding: 8rem 0; }
}

.about-header {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .about-header {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-text .section-label,
.about-text .section-title {
  text-align: left;
}

@media (max-width: 1023px) {
  .about-text .section-label,
  .about-text .section-title {
    text-align: center;
  }
  .about-text .section-desc {
    text-align: center;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.2), transparent);
}

.about-accent-1 {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 0.75rem;
  filter: blur(20px);
}

.about-accent-2 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 4rem;
  height: 4rem;
  border: 2px solid rgba(30, 58, 95, 0.2);
  border-radius: 0.5rem;
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.stat-card {
  background: var(--background);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(214, 221, 229, 0.5);
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.stat-card-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.stat-card-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.mission-card {
  background: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(214, 221, 229, 0.5);
}

@media (min-width: 1024px) {
  .mission-card { padding: 3rem; }
}

.mission-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .mission-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .mission-title { font-size: 1.875rem; }
}

.mission-desc {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mission-stat {
  background: var(--muted);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.mission-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.mission-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ======== WHY CHOOSE US ======== */
.why-choose-us {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .why-choose-us { padding: 8rem 0; }
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(30, 58, 95, 0.3);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(30, 58, 95, 0.2);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ======== SERVICES ======== */
.services {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .services { padding: 8rem 0; }
}

.accordion {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.accordion-item.active {
  box-shadow: var(--shadow-card-hover);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  transition: background 0.2s;
}

.accordion-trigger:hover {
  background: rgba(210, 220, 232, 0.5);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-icon-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion-icon-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.accordion-icon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 95, 0.1);
}

.accordion-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.accordion-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.accordion-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

.accordion-chevron {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s;
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.accordion-item.active .accordion-content {
  display: block;
}

.services-grid {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(210, 220, 232, 0.5);
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.service-item:hover {
  background: var(--muted);
}

.service-item-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.service-item h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.service-item p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

/* ======== PROCESS ======== */
.process {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .process { padding: 8rem 0; }
}

.process-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(circle at 1px 1px, currentColor 1px, transparent 0);
  background-size: 40px 40px;
}

.timeline-desktop {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .timeline-desktop { display: block; }
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--border), rgba(30, 58, 95, 0.3), var(--border));
  transform: translateY(-50%);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.timeline-step {
  position: relative;
}

.step-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.step-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(30, 58, 95, 0.3);
}

.step-gradient {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover .step-gradient {
  opacity: 1;
}

[data-color="blue"] .step-gradient {
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.2));
}

[data-color="purple"] .step-gradient {
  background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
}

[data-color="orange"] .step-gradient {
  background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.2), rgba(250, 204, 21, 0.2));
}

[data-color="green"] .step-gradient {
  background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.2), rgba(52, 211, 153, 0.2));
}

.step-content {
  position: relative;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(30, 58, 95, 0.6);
  margin-bottom: 1rem;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: background 0.3s;
}

.step-card:hover .step-icon {
  background: rgba(30, 58, 95, 0.2);
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.step-dot {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--background);
  transition: all 0.3s;
}

.step-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.2);
}

.timeline-step:hover .step-dot {
  border-color: rgba(30, 58, 95, 0.5);
}

/* Mobile Timeline */
.timeline-mobile {
  display: block;
  position: relative;
  padding-left: 2rem;
}

@media (min-width: 1024px) {
  .timeline-mobile { display: none; }
}

.timeline-line-vertical {
  position: absolute;
  top: 0;
  left: 0.75rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(30, 58, 95, 0.3), var(--border), var(--border));
}

.timeline-step-mobile {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-step-mobile:last-child {
  margin-bottom: 0;
}

.step-dot-mobile {
  position: absolute;
  left: -2rem;
  top: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dot-mobile.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.2);
}

.step-dot-mobile.active::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-foreground);
  border-radius: 50%;
}

.step-card-mobile {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.step-card-mobile .step-gradient {
  opacity: 0.3;
}

.step-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-icon-small {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.step-card-mobile h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card-mobile p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ======== CONTACT ======== */
.contact {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .contact { padding: 8rem 0; }
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background), rgba(255,255,255,0.95), var(--background));
}

.contact .container {
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(214, 221, 229, 0.5);
}

@media (min-width: 1024px) {
  .contact-form-wrapper { padding: 2.5rem; }
}

.contact-form-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input {
  height: 3rem;
}

.form-group textarea {
  min-height: 8.75rem;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.contact-item:hover .contact-item-icon {
  background: rgba(30, 58, 95, 0.2);
}

.contact-item-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  display: block;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

.contact-item:hover .contact-item-value {
  color: var(--primary);
}

.social-links {
  margin-top: 3rem;
}

.social-links h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.social-icon:hover {
  color: var(--primary);
  border-color: rgba(30, 58, 95, 0.3);
}

/* ======== FOOTER ======== */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (min-width: 1024px) {
  .footer-main { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding: 4rem 0; }
}

.footer-logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  max-width: 28rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--primary-foreground);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-foreground);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info a:hover {
  color: var(--primary-foreground);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--primary-foreground);
}

/* -------- Custom Scrollbar -------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--muted);
}

::-webkit-scrollbar-thumb {
  background: rgba(30, 58, 95, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(30, 58, 95, 0.5);
}