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

:root {
  --bg-color: #0B0F19; /* Very dark blue background */
  --card-bg: #111827; /* Slightly lighter card bg */
  --card-bg-light: #1F2937; /* For inner cards */
  --border-color: rgba(255, 255, 255, 0.1);
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF; /* Light gray */
  --accent-purple: #7C3AED;
  --accent-purple-hover: #6D28D9;
  --accent-green: #10B981;
  --accent-green-hover: #059669;
  --accent-blue: #3B82F6;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }

/* Grid Layouts */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-60-40 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .grid-60-40 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  gap: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-green {
  background: linear-gradient(135deg, var(--accent-green), #059669);
  color: #ffffff;
}
.btn-green:hover { 
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

.btn-purple {
  background: linear-gradient(135deg, var(--accent-purple), #6D28D9);
  color: #ffffff;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-purple:hover { 
  background: linear-gradient(135deg, #6D28D9, #5B21B6);
  box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.4);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.btn-dark:hover { 
  background: rgba(255, 255, 255, 0.1); 
  border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  text-align: center;
  background: radial-gradient(circle at top, rgba(124, 58, 237, 0.15) 0%, rgba(11, 15, 25, 1) 70%);
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  font-size: 2.5rem;
}
.text-highlight, .text-gradient {
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}
.services-section, .faq-section {
  padding: 5rem 0;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
}
.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hide default arrow */
}
.faq-question::-webkit-details-marker {
  display: none; /* Hide default arrow in Safari */
}
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-purple);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
details[open] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

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

.logo img {
  height: 50px; /* Base size for mobile */
  width: auto;
  max-width: 100%;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .logo img {
    height: 75px; /* Larger size for desktop/laptop */
  }
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d1d5db; /* Slightly dimmed white */
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
}

.nav-links a.active {
  color: #EC4899; /* Pink text for active */
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #EC4899; /* Pink underline for active */
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive Header */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-actions .btn-dark, .nav-actions .consult-office {
    display: none; /* Hide secondary buttons on mobile to save space */
  }
}

/* Service Page specific components */
.breadcrumb {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb span { margin: 0 0.5rem; }
.breadcrumb a { color: #9ca3af; }

.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  margin-bottom: 1rem;
}
.icon-box svg { width: 24px; height: 24px; }

.meta-info {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  margin-top: 1rem;
  color: #d1d5db;
}
.meta-info div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.meta-info svg { color: var(--accent-purple); }

/* Custom Cards */
.dark-card, .glass-panel {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.dark-card:hover, .glass-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 0 20px rgba(124, 58, 237, 0.15);
}

/* Premium Icon Box */
.premium-icon-box {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.15));
  border: 2px solid rgba(124, 58, 237, 0.4);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: inset 0 0 30px rgba(124, 58, 237, 0.2), 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-card:hover .premium-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.2));
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4), inset 0 0 20px rgba(124, 58, 237, 0.2);
}

.premium-icon-box svg {
  width: 45px;
  height: 45px;
  color: #a78bfa;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.6));
  transition: all 0.4s ease;
}

.dark-card:hover .premium-icon-box svg {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* List with checkmarks */
.check-list {
  list-style: none;
  margin: 1.5rem 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.check-list li svg {
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Futuristic Road/Data Stream Animation */
.road-animation-container {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.road-lines {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-blue), transparent);
  position: absolute;
  left: -50%;
  animation: dataStream 3s ease-in-out infinite;
  box-shadow: 0 0 20px var(--accent-blue);
}

@keyframes dataStream {
  0% { left: -50%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.car-icon {
  display: none; /* Hide the cheesy car emoji for premium feel */
}

.car-icon {
  font-size: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s ease-in-out infinite alternate;
}

@keyframes bounce {
  from { transform: translateX(-50%) translateY(2px); }
  to { transform: translateX(-50%) translateY(-2px); }
}

/* Media Section (Gov & Videos) */
.media-section {
  padding: 6rem 0;
  background-color: #080a0f;
  border-top: 1px solid var(--border-color);
}

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

@media (max-width: 900px) {
  .media-grid { grid-template-columns: 1fr; }
}

.gov-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.gov-logo-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 200px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.gov-logo-card img {
  max-width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Callout Box */
.callout-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.callout-icon {
  background: rgba(245, 158, 11, 0.1);
  padding: 8px;
  border-radius: 6px;
  color: #F59E0B;
}

/* Vertical Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 1.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  width: 2px;
  background: var(--accent-green); /* Or purple, user screenshot has green line */
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 4px solid var(--accent-purple); /* Or blue */
}
.timeline-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: #ffffff;
}
.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #9ca3af;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #0B0F19; /* very dark input bg */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 1px var(--accent-purple);
}

.form-control::placeholder {
  color: #4b5563;
}

/* Select arrow styling */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/200.svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

/* Footer / Contact Actions under Form */
.form-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.form-footer-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  text-decoration: underline;
  color: var(--text-secondary);
}
.form-footer-link:hover { color: #ffffff; }

/* Side Border Highlight (like in the screenshot for the left card) */
.border-left-highlight {
  border-left: 4px solid #F59E0B; /* Orange/Yellow highlight */
}

/* Footer Styling */
footer {
  background-color: #05080e;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-purple);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

table th, table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

table th {
  color: #9ca3af;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-pending { background: rgba(245, 158, 11, 0.2); color: #F59E0B; }
.badge-completed { background: rgba(16, 185, 129, 0.2); color: #10B981; }
.badge-contacted { background: rgba(59, 130, 246, 0.2); color: #3B82F6; }

/* Google Auth Button */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  margin-top: 1rem;
}

.btn-google:hover {
  background-color: #f8f9fa;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.btn-google img {
  width: 18px;
  height: 18px;
  margin-right: 12px;
}

