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

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;

  --orange-50: #fff7ed;
  --orange-400: #fb923c;
  --orange-600: #ea580c;

  --indigo-500: #6366f1;

  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.5;
}

.page-wrapper {
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.text-primary {
  color: var(--blue-600);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--blue-700);
}

.btn-outline {
  background: var(--white);
  border: 2px solid var(--slate-200);
  color: var(--slate-900);
}

.btn-outline:hover {
  background: var(--slate-50);
}

.btn-nav {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

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

.btn-full {
  width: 100%;
  padding: 1rem;
}

.btn-mobile {
  display: block;
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  background: var(--blue-600);
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--blue-900);
}

.logo-highlight {
  color: var(--blue-600);
}

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

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

.nav-link {
  color: var(--slate-600);
  font-weight: 500;
  transition: color 0.2s;
}

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

.mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-900);
}

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

.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.mobile-link {
  display: block;
  color: var(--slate-600);
  padding: 0.5rem 0;
}

/* ===== HERO ===== */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-content { text-align: left; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--blue-100);
  width: fit-content;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-badge { margin: 0; }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.1;
}

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

.hero-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 36rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

@media (min-width: 768px) {
  .hero-buttons { justify-content: flex-start; }
}

.hero-image {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(96, 165, 250, 0.2);
  filter: blur(48px);
  border-radius: 9999px;
}

.hero-image-card {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-100);
  padding: 1rem;
  overflow: hidden;
}

.hero-image-card img {
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-image-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}

@media (min-width: 480px) {
  .hero-image-overlay {
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 1rem;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
  }
}

.overlay-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .overlay-item {
    gap: 0.75rem;
  }
}

.overlay-icon svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 480px) {
  .overlay-icon svg {
    width: 20px;
    height: 20px;
  }
}

.overlay-icon {
  padding: 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-icon.green {
  background: var(--green-100);
  color: var(--green-600);
}

.overlay-icon.blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.overlay-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--slate-500);
}

.overlay-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-800);
}

.overlay-divider {
  display: none;
  width: 1px;
  height: 2.5rem;
  background: var(--slate-200);
}

@media (min-width: 480px) {
  .overlay-divider {
    display: block;
  }
}

/* ===== STATS ===== */
.stats {
  background: var(--blue-900);
  padding: 3rem 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  color: var(--white);
}

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

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
}

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

/* ===== MODULES / SOLUTIONS ===== */
.modules {
  padding: 6rem 1rem;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-subtitle {
  color: var(--blue-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
}

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

.section-description {
  color: var(--slate-600);
  max-width: 42rem;
  margin: 0 auto;
}

.modules-grid {
  display: grid;
  gap: 2rem;
}

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

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

.module-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--slate-100);
  background: var(--slate-50);
  transition: all 0.3s;
}

.module-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.module-icon {
  margin-bottom: 1.5rem;
  background: var(--white);
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--blue-600);
  transition: transform 0.3s;
}

.module-card:hover .module-icon {
  transform: scale(1.1);
}

.module-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--slate-900);
}

.module-desc {
  color: var(--slate-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== EDUCATION SECTION ===== */
.education {
  padding: 5rem 1rem;
  background: var(--blue-50);
}

.education-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .education-grid { flex-direction: row; }
}

.education-image {
  flex: 1;
  position: relative;
}

.education-image img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
}

.education-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  display: none;
  align-items: center;
  gap: 1rem;
  color: var(--blue-600);
}

@media (min-width: 1024px) {
  .education-float { display: flex; }
}

.float-title {
  font-weight: 700;
  color: var(--slate-900);
  font-size: 1.125rem;
  line-height: 1.2;
}

.float-subtitle {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.education-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.education-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
}

.education-description {
  color: var(--slate-600);
  font-size: 1.125rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--slate-700);
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-item svg {
  color: var(--blue-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ===== FLEET SECTION ===== */
.fleet {
  padding: 6rem 1rem;
  background: var(--white);
}

.fleet-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .fleet-grid { flex-direction: row-reverse; }
}

.fleet-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fleet-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
}

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

.fleet-description {
  color: var(--slate-600);
}

.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fleet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate-700);
  font-weight: 500;
}

.check-icon {
  background: var(--green-100);
  padding: 0.25rem;
  border-radius: 9999px;
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-demo {
  flex: 1;
}

.demo-card {
  background: var(--slate-100);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vehicle-item {
  background: var(--white);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 4px solid var(--blue-600);
}

.vehicle-item.warning {
  border-left-color: var(--orange-400);
}

.vehicle-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--slate-400);
}

.vehicle-plate {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
}

.vehicle-name {
  font-weight: 700;
  color: var(--slate-800);
  font-size: 0.875rem;
}

.vehicle-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.status-active {
  color: var(--green-600);
  background: var(--green-50);
}

.status-warning {
  color: var(--orange-600);
  background: var(--orange-50);
}

.fleet-summary {
  background: var(--blue-600);
  padding: 1.5rem;
  border-radius: 0.75rem;
  color: var(--white);
  margin-top: 0.5rem;
}

.summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.summary-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.summary-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.summary-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ===== CLOUD SECTION ===== */
.cloud {
  padding: 6rem 1rem;
  background: var(--slate-900);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.cloud-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.cloud-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(48px);
}

.blob-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: var(--blue-500);
}

.blob-2 {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: var(--blue-800);
}

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

.cloud-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cloud-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.cloud-subtitle {
  color: var(--blue-200);
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}

.cloud-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cloud-grid { grid-template-columns: 1fr 1fr; }
}

.cloud-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cloud-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 480px) {
  .cloud-feature {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.cloud-feature-icon {
  background: rgba(37, 99, 235, 0.2);
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--blue-400);
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .cloud-feature-icon {
    padding: 1rem;
  }
}

.cloud-feature h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 480px) {
  .cloud-feature h4 {
    font-size: 1.25rem;
  }
}

.cloud-feature p {
  color: var(--slate-400);
  font-size: 0.875rem;
  line-height: 1.6;
}

.cloud-demo {
  position: relative;
}

.cloud-demo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 1.25rem;
  border-radius: 1rem;
}

@media (min-width: 480px) {
  .cloud-demo-card {
    padding: 2rem;
    border-radius: 1.5rem;
  }
}

.demo-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 480px) {
  .demo-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
}

.demo-file {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-400);
}

@media (min-width: 480px) {
  .demo-file {
    gap: 0.75rem;
  }
}

.demo-file span {
  font-weight: 600;
  color: var(--white);
  font-size: 0.875rem;
  word-break: break-all;
}

@media (min-width: 480px) {
  .demo-file span {
    font-size: 1rem;
    word-break: normal;
  }
}

.demo-status {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green-400);
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
}

.demo-signatures {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.signature-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

@media (min-width: 480px) {
  .signature-item {
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 0.875rem;
  }
}

.signature-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.625rem;
  margin-right: 0.5rem;
}

@media (min-width: 480px) {
  .signature-avatar {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
    margin-right: 0.75rem;
  }
}

.signature-avatar.blue {
  background: var(--blue-500);
}

.signature-avatar.indigo {
  background: var(--indigo-500);
}

.signature-date {
  color: var(--slate-500);
  font-size: 0.625rem;
  width: 100%;
  padding-left: 2.25rem;
}

@media (min-width: 480px) {
  .signature-date {
    font-size: 0.75rem;
    width: auto;
    padding-left: 0;
  }
}

.demo-search {
  margin-top: 1.5rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--blue-400);
}

@media (min-width: 480px) {
  .demo-search {
    margin-top: 2rem;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
  }
}

.demo-search > svg {
  flex-shrink: 0;
}

.search-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--blue-300);
}

@media (min-width: 480px) {
  .search-title {
    font-size: 0.75rem;
  }
}

.search-desc {
  font-size: 0.625rem;
  color: var(--slate-400);
  font-style: italic;
}

@media (min-width: 480px) {
  .search-desc {
    font-size: 0.6875rem;
  }
}

.cloud-demo-float {
  display: none;
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--blue-600);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  color: var(--white);
  animation: bounce 2s infinite;
}

@media (min-width: 768px) {
  .cloud-demo-float {
    display: block;
  }
}

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

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 6rem 1rem;
  background: var(--white);
}

.contact-card {
  max-width: 64rem;
  margin: 0 auto;
  background: var(--blue-600);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact-card { flex-direction: row; }
}

.contact-info {
  flex: 1;
  padding: 3rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.contact-info h3 {
  font-size: 1.875rem;
  font-weight: 700;
}

.contact-info p {
  color: var(--blue-100);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item svg {
  color: var(--blue-200);
}

.contact-form {
  flex: 1;
  background: var(--white);
  padding: 3rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--slate-200);
  outline: none;
  transition: all 0.2s;
  font-size: 1rem;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--blue-600);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--slate-800);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}

.footer-logo svg {
  color: var(--blue-500);
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.875rem;
}

.footer-links h6 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue-400);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
}
