
/* Base styles */
:root {
  --brand-blue: #1A3263;
  --brand-light-blue: #3A5795;
  --brand-red: #D32F2F;
  --brand-gray: #4A4A4A;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--brand-blue);
  text-align: center;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

ul {
  list-style: none;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Header */
.header {
  background-color: var(--brand-blue);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.logo {
  color: var(--white);
  font-weight: bold;
  font-size: 1.25rem;
}

.phone-desktop {
  display: none;
  align-items: center;
  color: var(--white);
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.3s;
}

.phone-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.phone-desktop:hover {
  color: var(--gray-200);
}

.call-button-mobile {
  background-color: var(--brand-red);
  color: var(--white);
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
}

.call-button-mobile:hover {
  background-color: #b71c1c;
}

/* Hero section */
.hero {
  background: linear-gradient(to right, var(--brand-blue), var(--brand-light-blue));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?auto=format&fit=crop&q=80&w=2600&h=1548');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
  background-blend-mode: overlay;
}

.hero-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  gap: 2.5rem;
}

.hero-text {
  color: var(--white);
  max-width: 100%;
}

.hero-text h1 {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

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

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.375rem;
  text-align: center;
  transition: all 0.3s;
}

.button.primary {
  background-color: var(--brand-red);
  color: var(--white);
}

.button.primary:hover {
  background-color: #b71c1c;
}

.button.secondary {
  background-color: var(--white);
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
}

.button.secondary:hover {
  background-color: var(--gray-100);
}

.button.large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.button.full-width {
  width: 100%;
}

.hero-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.hero-card h3 {
  color: var(--brand-blue);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.checklist {
  margin-bottom: 1.5rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--brand-red);
  border-radius: 50%;
}

/* Services section */
.services {
  background-color: var(--gray-50);
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.service-icon {
  background-color: var(--brand-light-blue);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-svg {
  color: var(--white);
}

.service-card h3 {
  color: var(--brand-blue);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray-600);
}

.service-notes {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 4rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.service-notes h3 {
  color: var(--brand-blue);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

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

.note {
  border-left: 4px solid var(--brand-red);
  padding-left: 1rem;
}

.note h4 {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.note p {
  color: var(--gray-700);
}

/* Why Choose section */
.why-choose {
  padding: 4rem 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature {
  background-color: var(--gray-50);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.feature-number {
  background-color: var(--brand-light-blue);
  color: var(--white);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.feature h3 {
  color: var(--brand-blue);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.feature p {
  color: var(--gray-600);
}

.service-area {
  background-color: var(--gray-50);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.service-area h3 {
  color: var(--brand-blue);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.service-area > p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

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

.city {
  padding: 0.5rem;
}

/* FAQ section */
.faq {
  background-color: var(--white);
  padding: 4rem 0;
}

.accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 1rem;
  text-align: left;
  font-weight: 500;
  color: var(--brand-blue);
  cursor: pointer;
  position: relative;
  font-size: 1rem;
}

.accordion-button::after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: bold;
}

.accordion-button.active::after {
  content: '-';
}

.accordion-content {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--gray-700);
}

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

/* Contact section */
.contact {
  background-color: var(--gray-100);
  padding: 4rem 0;
}

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

.contact-form-wrap {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  flex: 1;
}

.contact-form-wrap h3 {
  color: var(--brand-blue);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
}

.contact-info {
  flex: 1;
}

.call-us {
  background-color: var(--brand-blue);
  color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.call-us h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.phone-large {
  font-size: 1.875rem;
  font-weight: bold;
  margin: 1.5rem 0;
}

.call-us .note {
  font-size: 0.875rem;
  opacity: 0.9;
  border-left: none;
  padding-left: 0;
}

.what-to-expect {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.what-to-expect h3 {
  color: var(--brand-blue);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.steps {
  list-style: none;
}

.steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.step-number {
  background-color: var(--brand-light-blue);
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.step-title {
  font-weight: 500;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Footer */
.footer {
  background-color: var(--brand-blue);
  color: var(--white);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-column p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Media Queries */
@media (min-width: 640px) {
  .logo {
    font-size: 1.5rem;
  }

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

  .hero-buttons {
    flex-direction: row;
  }
}

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

  .call-button-mobile {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1;
    padding-right: 2rem;
  }

  .hero-card {
    flex: 1;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .cities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-flex {
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
