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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  height: 100%;
}

html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

html::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.1'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm-20-18c9.941 0 18 8.059 18 18s-8.059 18-18 18S-8 39.941-8 30s8.059-18 18-18z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

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

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-container {
  flex-shrink: 0;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.header-email {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-email:hover {
  color: #3b82f6;
}

.header-phone {
  background: #ffb932;
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-phone:hover {
  background: #ffd600;
  transform: translateY(-1px);
}

.header-phone i {
  font-size: 0.8rem;
}

.tagline {
  font-size: 1rem;
  color: #6b7280;
  text-align: right;
  margin: 0;
  flex: 1;
  font-weight: 400;
}

/* Navigation */
nav {
  background: #f8fafc;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 72px;
  z-index: 99;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

nav li {
  margin: 0;
}

nav a {
  color: #374151;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

nav a:hover {
  background-color: #ffffff;
  color: #1f2937;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Main Content */
main {
  flex: 1;
  padding: 4rem 0;
}

main .container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto;
}

/* Section Styles */
.section {
  background: transparent;
  padding: 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  opacity: 0.3;
}

.section h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #6b7280;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.service-icon {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #f3f4f6;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
}

.service-icon i {
  font-size: 1.5rem;
  color: #1a1a1a;
}

.service-item h3 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-item p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #f3f4f6;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #1a1a1a;
}

.feature-item h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-item p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-panel {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  min-height: 400px;
}

.contact-info-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.contact-map-section {
  padding: 1.5rem;
  display: flex;
  align-items: stretch;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: 0;
  border: none;
  background: transparent;
  transition: none;
}

.contact-item:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #f3f4f6;
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: #1a1a1a;
}

.contact-details h3 {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-details p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.contact-details a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: #1d4ed8;
}

.contact-cta {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-cta p {
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero {
  text-align: center;
}

.service-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.service-hero .subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-content h2 {
  color: #1a1a1a;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.service-content p {
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-content ul {
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  line-height: 1.7;
}

.service-content li {
  margin-bottom: 0.5rem;
}

.benefits-section {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}

.benefits-section h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefits-section ul {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Footer */
footer {
  background: #f8fafc;
  color: #6b7280;
  text-align: center;
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid #e5e7eb;
}

footer p {
  font-size: 0.875rem;
  margin: 0;
  color: #6b7280;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: row;
  }

  .logo-container {
    flex: 0 0 auto;
  }

  .header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .header-email {
    font-size: 12px;
  }

  .header-phone {
    font-size: 14px;
    font-weight: 600;
  }

  nav {
    display: none;
    top: 120px; /* Adjust for mobile header height */
  }

  main {
    padding-top: 0;
  }

  html {
    scroll-padding-top: 160px; /* Adjust for mobile sticky header + nav height */
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  nav a {
    padding: 0.5rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .section p {
    font-size: 1rem;
  }

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

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

  .contact-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-info-section {
    padding: 1.5rem;
  }

  .contact-map-section {
    padding: 1rem;
    min-height: 300px;
  }

  .contact-cta {
    padding: 2rem 1rem;
  }

  .contact-cta h2 {
    font-size: 1.875rem;
  }

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

  .service-content {
    padding: 2rem 1rem;
  }

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

  .service-content p,
  .service-content ul {
    font-size: 1rem;
  }

  .cta-section {
    padding: 2rem 1rem;
  }
}

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