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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  /* Converting to dark theme - dark background and light text */
  color: #e2e8f0;
  background: #0f172a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  /* Dark header with subtle transparency */
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand h2 {
  /* Enhanced gold gradient for dark theme */
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-menu a {
  text-decoration: none;
  /* Light text for dark theme */
  color: #001c40;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  /* Brighter gold gradient for visibility on dark background */
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #fbbf24;
}

/* Buttons */
.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  /* Elegant dark gradient with gold accents */
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
  /* Reverse gradient with gold highlight */
  background: linear-gradient(135deg, #475569 0%, #334155 50%, #1e293b 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(251, 191, 36, 0.2);
  border-color: #fbbf24;
}

.btn-secondary {
  /* Dark secondary button with subtle gradient */
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
  color: #e2e8f0;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.btn-secondary:hover {
  /* Gold gradient on hover */
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  background-image: url(hero-img.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 140px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Dark overlay for better text contrast */
  background: rgba(15, 23, 42, 0.8);
  opacity: 0.9;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  /* Light gradient for dark theme */
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
  /* Light gray text for readability */
  color: #cbd5e1;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.document-illustration {
  position: relative;
}

.document {
  /* Dark document with subtle gradient */
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(251, 191, 36, 0.3);
  width: 320px;
  height: 420px;
  position: relative;
}

.document-header {
  /* Brighter gold gradient for visibility */
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  height: 70px;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.document-lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.line {
  /* Darker lines for document illustration */
  background: linear-gradient(135deg, #475569 0%, #64748b 100%);
  height: 14px;
  border-radius: 7px;
  margin-bottom: 1rem;
}

.line.short {
  width: 60%;
}

.checkmark {
  /* Keeping green checkmark but adjusting for dark theme */
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* Services */
.why-choose-us {
  padding: 100px 0;
  /* Dark gradient background */
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.why-choose-us h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  /* Light text */
  color: #e2e8f0;
  font-weight: 700;
  position: relative;
}

.why-choose-us h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  /* Brighter gold underline */
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  /* Dark card with subtle gradient */
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(251, 191, 36, 0.2);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* Brighter gold top border */
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  /* Light heading text */
  color: #f1f5f9;
}

.service-card p {
  /* Light gray paragraph text */
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

/* Why Choose Us? */
.how-it-works {
  padding: 80px 0;
  /* Slightly different dark background for section variation */
  background: #1e293b;
}

.how-it-works h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  /* Light text */
  color: #e2e8f0;
  font-weight: 700;
  position: relative;
}
.how-it-works h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  /* Brighter gold underline */
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 2px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  /* Gold background for step numbers */
  background: #fbbf24;
  color: #0f172a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 4rem;
  margin: 2rem 0 1rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  /* Light heading */
  color: #f1f5f9;
}

.step p {
  /* Light gray text */
  color: #cbd5e1;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background-image: url(output-onlinepngtools.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
}

/* Adding dark overlay to pricing section for better contrast */
.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.8);
  z-index: 1;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  /* Light heading for dark overlay */
  color: #f1f5f9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  /* Dark pricing cards */
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #e2e8f0;
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.pricing-card.featured {
  /* Featured card with gold border */
  border: 3px solid #fbbf24;
  background: linear-gradient(135deg, #334155 0%, #475569 100%);
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  /* Gold background for featured badge */
  background: #fbbf24;
  color: #0f172a;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  /* Light heading */
  color: #f1f5f9;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  /* Brighter gold for price */
  color: #fbbf24;
  margin-bottom: 2rem;
}

.price span {
  font-size: 1rem;
  /* Light gray for price suffix */
  color: #cbd5e1;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-card li {
  padding: 0.5rem 0;
  /* Light text for list items */
  color: #e2e8f0;
}

/* USA Map Section */
.usa-map-section {
  padding: 100px 0;
  /* Dark gradient background */
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.usa-map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  /* Light heading */
  color: #f1f5f9;
}

.usa-map-section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  /* Light gray description text */
  color: #cbd5e1;
  margin-bottom: 3rem;
}

.map-container {
  margin-bottom: 3rem;
  text-align: center;
}

#usa-map {
  max-width: 100%;
  height: 400px;
  border: 2px solid rgba(251, 191, 36, 0.4);
  border-radius: 20px;
  /* Dark map background */
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.state-path {
  /* Darker state fill with gold stroke */
  fill: #475569;
  stroke: #fbbf24;
  stroke-width: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.state-path:hover {
  /* Gold fill on hover with dark stroke */
  fill: #fbbf24;
  stroke: #0f172a;
  stroke-width: 2;
}

.states-list {
  margin-top: 3rem;
}

.states-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.column h4 {
  /* Light column headings */
  color: #f1f5f9;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.state-btn {
  /* Dark state buttons */
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #e2e8f0;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
}

.state-btn:hover {
  /* Gold gradient on hover */
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  border-color: #fbbf24;
  transform: translateX(5px);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  /* Dark modal background */
  background-color: #1e293b;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  position: relative;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
  /* Light close button */
  color: #cbd5e1;
}

.close:hover {
  color: #fbbf24;
}

#modal-state-name {
  text-align: center;
  margin-bottom: 2rem;
  /* Light modal heading */
  color: #f1f5f9;
}

.modal-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.modal-price-card {
  /* Dark modal price cards */
  background: #334155;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
}

.modal-price-card.featured {
  border-color: #fbbf24;
  /* Slightly lighter background for featured */
  background: #475569;
}

.modal-price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  /* Light heading */
  color: #f1f5f9;
}

.modal-price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  /* Gold price in modal */
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.modal-price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.modal-price-card li {
  padding: 0.5rem 0;
  /* Light list items */
  color: #e2e8f0;
}

/* Contact Form Modal Styles */
.contact-modal {
  max-width: 600px;
  padding: 2rem;
}

.contact-form {
  margin-top: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  /* Light form labels */
  color: #e2e8f0;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  /* Dark form inputs with light border */
  border: 2px solid #475569;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #334155;
  color: #e2e8f0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  /* Gold focus border */
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group input:invalid,
.form-group select:invalid {
  /* Red border for invalid inputs */
  border-color: #826100;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .cta-button {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Success Modal Styles */
.success-modal {
  max-width: 400px;
  text-align: center;
  padding: 2rem;
}

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

.success-icon {
  width: 60px;
  height: 60px;
  /* Gold success icon background */
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #0f172a;
  font-weight: bold;
}

.success-modal h2 {
  /* Light success heading */
  color: #f1f5f9;
  margin: 0;
}

.success-modal p {
  /* Light success text */
  color: #cbd5e1;
  margin: 0;
}

/* Footer */
.footer {
  /* Darker footer gradient */
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  /* Light footer headings */
  color: #f9fafb;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  /* Light footer links */
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  /* Gold hover for footer links */
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  /* Light footer bottom text */
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .services-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .states-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .modal-pricing {
    grid-template-columns: 1fr;
  }

  .contact-modal {
    margin: 1rem;
    padding: 1.5rem;
    max-width: calc(100% - 2rem);
  }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }

  .contact-form .cta-button {
    padding: 0.8rem;
    font-size: 1rem;
  }
}

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

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .document {
    width: 250px;
    height: 320px;
  }
  .hero {
    background-attachment: scroll;
    background-size: cover;
    background-position: right;
  }

  .contact-modal {
    margin: 0.5rem;
    padding: 1rem;
    max-width: calc(100% - 1rem);
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }
}
