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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: #333;
}

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

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

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

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
}

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

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d4ed8;
}

nav {
  display: none;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #1d4ed8;
}

.desktop-cta {
  display: none;
}

.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #2563eb, #1d4ed8);
  color: white;
  position: relative;
}

.hero-container {
  padding: 4rem 1rem;
}

.hero-content {
  display: grid;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.hero-image {
  display: none;
}

.gradient-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  background: linear-gradient(to top, white, transparent);
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.375rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: white;
  color: #1d4ed8;
  border: none;
}

.btn-primary:hover {
  background-color: #eff6ff;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-blue {
  background-color: #1d4ed8;
  color: white;
  border: none;
}

.btn-blue:hover {
  background-color: #1e40af;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  background-color: #dbeafe;
  color: #1d4ed8;
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  max-width: 700px;
  color: #6b7280;
  font-size: 1rem;
}

/* Services Section */
.services {
  background-color: #f9fafb;
}

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

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

.service-icon {
  background-color: #dbeafe;
  color: #1d4ed8;
  border-radius: 9999px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-description {
  color: #6b7280;
}

/* About Section */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

.about-image-container {
  position: relative;
}

.about-image-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 140px;
  height: 140px;
  background-color: #dbeafe;
  border-radius: 50%;
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 10;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #dbeafe;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: block;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  color: #2563eb;
}

/* Testimonials Section */
.testimonials {
  background-color: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
  color: #f59e0b;
}

.testimonial-text {
  color: #6b7280;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.author-avatar {
  background-color: #f3f4f6;
  border-radius: 9999px;
  padding: 0.25rem;
}

.author-info p:first-child {
  font-weight: 500;
}

author-info p:last-child {
  font-size: 0.875rem;
  color: #6b7280;
}

/* CTA Section */
.cta {
  background-color: #1d4ed8;
  color: white;
}

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

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
}

.cta-content p {
  color: #dbeafe;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}

.cta-features {
  background-color: #1e40af;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-features h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.features-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.features-list .check-icon {
  color: #93c5fd;
  margin-top: 0.125rem;
}

/* Contact Section */
.contact-header {
  margin-bottom: 2.5rem;
}

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background-color: #dbeafe;
  color: #1d4ed8;
  border-radius: 9999px;
  padding: 0.75rem;
}

.contact-item-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

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

.business-hours {
  margin-top: 1.5rem;
}

.business-hours h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hours-grid div:nth-child(odd) {
  color: #6b7280;
}

.contact-form-container {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.contact-form-container h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 1rem;
}

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

.form-submit {
  width: 100%;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0;
}

.success-icon {
  background-color: #d1fae5;
  color: #059669;
  border-radius: 9999px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.success-message {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 2.5rem 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

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

.footer-nav {
  display: flex;
  gap: 1rem;
}

.footer-nav a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #1d4ed8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
}

.copyright {
  font-size: 0.875rem;
  color: #6b7280;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  color: #6b7280;
  transition: color 0.2s;
}

.social-link:hover {
  color: #1d4ed8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Responsive styles */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .header-container {
    padding: 0 1.5rem;
  }
  
  nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .desktop-cta {
    display: flex;
  }
  
  .mobile-menu-button {
    display: none;
  }
  
  .hero-container {
    padding: 6rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .section-description {
    font-size: 1.25rem;
  }
  
  .footer-top {
    flex-direction: row;
  }
  
  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .hero-image {
    display: block;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
} 