/* ==========================================================================
   PT MITRA ABADI MAHAKAM - Modern Light Corporate Design System
   Theme: Bright Light Mode (Putih Murni, Light Gray, Kuning Gold, Merah Crimson, Hitam)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Bright Light Color Palette */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;

  /* Typography Colors */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Accents - Kuning & Merah & Hitam */
  --yellow-main: #d97706;
  --yellow-bright: #eab308;
  --yellow-light: #fef3c7;
  --yellow-glow: rgba(217, 119, 6, 0.15);
  --yellow-border: rgba(217, 119, 6, 0.3);

  --red-main: #dc2626;
  --red-light: #fee2e2;
  --red-glow: rgba(220, 38, 38, 0.15);
  --red-border: rgba(220, 38, 38, 0.3);

  --border-light: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Simple Bright Header Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.95rem 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--red-main);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red-main);
  border-radius: 3px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}

.btn-yellow {
  background-color: var(--yellow-bright);
  color: #000000;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.35);
}

.btn-yellow:hover {
  background-color: #ca8a04;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.45);
}

.btn-red {
  background-color: var(--red-main);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-red:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--red-main);
  color: var(--red-main);
  background: var(--red-light);
}

/* Bright Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 60%, #fef3c7 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.section-badge-bright {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--yellow-border);
  color: var(--yellow-main);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.12;
  margin-bottom: 1.4rem;
  color: var(--text-dark);
}

.hero-content h1 span.text-red {
  color: var(--red-main);
}

.hero-content h1 span.text-yellow {
  color: var(--yellow-main);
}

.hero-description {
  font-size: 1.18rem;
  color: var(--text-body);
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-lg);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.hero-image-card:hover img {
  transform: scale(1.04);
}

.floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red-light);
  color: var(--red-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.badge-text p:first-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.badge-text p:last-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Stats Section */
.stats-section {
  padding: 3.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

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

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red-main);
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
}

.stat-item h3.yellow {
  color: var(--yellow-main);
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Section Header Style */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  padding: 6.5rem 0;
  background: var(--bg-body);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-lg);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #ffffff;
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow-light);
  color: var(--yellow-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.highlight-icon.red {
  background: var(--red-light);
  color: var(--red-main);
}

.highlight-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.highlight-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Milestone Projects Section */
.milestones-section {
  padding: 6.5rem 0;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.timeline-track {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 200px;
  width: 4px;
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--red-main) 60%, var(--red-main) 100%);
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

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

.timeline-year-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  position: relative;
}

.timeline-marker {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--yellow-main);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
  flex-shrink: 0;
  z-index: 2;
  transition: var(--transition-fast);
  margin-right: -11px;
}

.timeline-item.active-project .timeline-marker {
  border-color: var(--red-main);
  box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.25);
  animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.timeline-year-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  text-align: right;
  white-space: nowrap;
}

.timeline-item.active-project .timeline-year-pill {
  border-color: var(--red-border);
  background: linear-gradient(135deg, #ffffff 0%, var(--red-light) 100%);
  color: var(--red-main);
}

.timeline-year-pill .status-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red-main);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.timeline-year-pill .status-tag i {
  font-size: 0.48rem;
  color: #22c55e;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.6rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -8px;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transform: rotate(45deg);
}

.timeline-item.active-project .timeline-card {
  border-left: 4px solid var(--red-main);
}

.timeline-item:hover .timeline-card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.timeline-card-header {
  margin-bottom: 0.8rem;
}

.timeline-client-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.timeline-client-name i {
  color: var(--yellow-main);
  font-size: 1.15rem;
}

.timeline-item.active-project .timeline-client-name i {
  color: var(--red-main);
}

.timeline-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.timeline-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
}

.timeline-badge-pill.scope {
  background: var(--bg-surface-alt);
  color: var(--text-body);
  border: 1px solid var(--border-light);
}

.timeline-badge-pill.scope i {
  color: var(--yellow-main);
}

.timeline-badge-pill.location {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.timeline-badge-pill.location i {
  color: #22c55e;
}

/* Business Services Section */
.services-section {
  padding: 6.5rem 0;
  background: #ffffff;
}

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

/* Every card spans 2 of 8 sub-columns → same width as 4-column layout */
.services-grid .service-card {
  grid-column: span 2;
}

/* Row 2 (cards 5–7): offset by 1 sub-col so card 6 sits at center */
.services-grid .service-card:nth-child(5) { grid-column: 2 / span 2; }
.services-grid .service-card:nth-child(6) { grid-column: 4 / span 2; }
.services-grid .service-card:nth-child(7) { grid-column: 6 / span 2; }

.service-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow-main);
  transition: var(--transition-fast);
}

.service-card.red-border::before {
  background: var(--red-main);
}

.service-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--yellow-light);
  color: var(--yellow-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.service-card.red-border .service-icon {
  background: var(--red-light);
  color: var(--red-main);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 2.8rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red-main);
  transition: var(--transition-fast);
}

.service-link.yellow {
  color: var(--yellow-main);
}

.service-link:hover {
  gap: 0.8rem;
}

/* Vision & Mission Section */
.vision-section {
  padding: 6.5rem 0;
  background: var(--bg-body);
}

.vision-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--red-main);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.8rem;
}

/* Every card spans 2 of 8 sub-columns → uniform card width */
.checklist-grid .checklist-card { grid-column: span 2; }

/* Row 1 (cards 1–3): centered as a group, P2 at exact center */
.checklist-grid .checklist-card:nth-child(1) { grid-column: 2 / span 2; }
.checklist-grid .checklist-card:nth-child(2) { grid-column: 4 / span 2; }
.checklist-grid .checklist-card:nth-child(3) { grid-column: 6 / span 2; }

/* Row 2 (cards 4–5): 2 cards centered */
.checklist-grid .checklist-card:nth-child(4) { grid-column: 3 / span 2; }
.checklist-grid .checklist-card:nth-child(5) { grid-column: 5 / span 2; }

.checklist-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.checklist-card:hover {
  border-color: var(--red-main);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.checklist-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--red-main);
  margin-bottom: 0.6rem;
}

.checklist-number.yellow {
  color: var(--yellow-main);
}

.checklist-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.checklist-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Contact Section */
.contact-section {
  padding: 6.5rem 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Label kecil di dalam contact items tidak perlu margin besar */
.contact-item p {
  margin-bottom: 0.2rem;
}

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

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

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--yellow-light);
  color: var(--yellow-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-icon.red {
  background: var(--red-light);
  color: var(--red-main);
}

.contact-form {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--red-main);
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

.floating-wa-btn:hover {
  transform: scale(1.08);
}

/* Toast Modal */
.toast-modal {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 2000;
  background: #ffffff;
  border: 1px solid var(--yellow-bright);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.8rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(120%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast-modal.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer (Clean Dark/Charcoal Footer) */
.footer {
  background: #0f172a;
  color: #ffffff;
  padding: 5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 1rem 0 1.5rem 0;
  max-width: 340px;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  color: #ffffff;
  font-family: var(--font-heading);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--yellow-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.7rem;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .service-card,
  .services-grid .service-card:nth-child(5),
  .services-grid .service-card:nth-child(6),
  .services-grid .service-card:nth-child(7) {
    grid-column: span 1;
  }
  .checklist-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .checklist-grid .checklist-card,
  .checklist-grid .checklist-card:nth-child(1),
  .checklist-grid .checklist-card:nth-child(2),
  .checklist-grid .checklist-card:nth-child(3),
  .checklist-grid .checklist-card:nth-child(4),
  .checklist-grid .checklist-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid .service-card,
  .services-grid .service-card:nth-child(5),
  .services-grid .service-card:nth-child(6),
  .services-grid .service-card:nth-child(7) {
    grid-column: span 1;
  }
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .checklist-grid .checklist-card,
  .checklist-grid .checklist-card:nth-child(1),
  .checklist-grid .checklist-card:nth-child(2),
  .checklist-grid .checklist-card:nth-child(3),
  .checklist-grid .checklist-card:nth-child(4),
  .checklist-grid .checklist-card:nth-child(5) {
    grid-column: span 1;
  }
}
