/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
}

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

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

.flex-1 {
  flex: 1;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

/* Header styles */
.header {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  padding: 1rem;
}

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

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

.logo {
  position: relative;
  height: 2.5rem;
  width: 2.5rem;
  overflow: hidden;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f59e0b;
}

.header h1 {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.header-contact {
  display: none;
}

.phone-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d97706;
  transition: background-color 0.2s;
}

.phone-button:hover {
  background-color: #fffbeb;
}

/* Hero section */
.hero {
  position: relative;
  background-color: #1e3a8a;
  padding: 4rem 1rem;
  color: white;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://placehold.co/1200x800");
  background-size: cover;
  background-position: center;
}

.hero-container {
  position: relative;
  z-index: 1;
}

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

.coming-soon-badge {
  display: inline-block;
  background-color: #fbbf24;
  color: #1e3a8a;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  color: #e5e7eb;
  max-width: 700px;
  margin: 0 auto;
}

/* Services section */
.services {
  padding: 3rem 1rem;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6b7280;
}

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

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

.service-icon {
  background-color: #dbeafe;
  color: #1d4ed8;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #6b7280;
}

/* Contact section */
.contact {
  padding: 3rem 1rem;
  background-color: #f9fafb;
}

.contact-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 48rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-info,
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-item i {
  color: #f59e0b;
  margin-top: 0.25rem;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: #6b7280;
}

.contact-item a:hover {
  color: #d97706;
}

.notice {
  background-color: #fffbeb;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.notice p {
  font-size: 0.875rem;
  color: #92400e;
}

/* Footer */
.footer {
  background-color: #1e3a8a;
  color: white;
  padding: 1.5rem 1rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-copyright p {
  font-size: 0.875rem;
  color: #d1d5db;
}

.website-link {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.website-link a:hover {
  color: #fbbf24;
}

.footer-coming-soon p {
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer-coming-soon span {
  font-weight: 500;
  color: #fbbf24;
}

/* Responsive styles */
@media (min-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .header h1 {
    font-size: 1.5rem;
  }

  .header-contact {
    display: block;
  }

  .hero {
    padding: 6rem 1.5rem;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

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

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

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-coming-soon {
    text-align: right;
  }
}
