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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #2563EB;
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #333;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-submit {
  background: #f59e0b;
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: #d97706;
}

.btn-white {
  background: #fff;
  color: #2563EB;
}

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: #2563EB;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #1e293b;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #2563EB;
  margin: 15px auto 0;
  border-radius: 2px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: #1e293b;
}

.nav-logo i {
  color: #2563EB;
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563EB;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #2563EB;
}

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

.nav-phone {
  background: #2563EB;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.nav-phone:hover {
  background: #1d4ed8;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #1e293b;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-menu ul li a {
  font-weight: 500;
  color: #475569;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 70px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%);
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

.hero-content {
  flex: 1;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-form {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  width: 380px;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}

.hero-form form input,
.hero-form form select,
.hero-form form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
}

.hero-form form input:focus,
.hero-form form select:focus,
.hero-form form textarea:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.trust-badges {
  padding: 70px 0;
  background: #f8fafc;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.badge-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  width: 60px;
  height: 60px;
  background: #2563EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.badge-icon i {
  color: #fff;
  font-size: 24px;
}

.badge-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}

.badge-item p {
  font-size: 14px;
  color: #64748b;
}

.services-section {
  padding: 80px 0;
  background: #fff;
}

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

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.service-content p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.88);
  z-index: -1;
}

.about-content {
  background: #fff;
  border-radius: 10px;
  padding: 50px;
  max-width: 800px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-content h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1e293b;
}

.about-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2563EB;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 16px;
  line-height: 1.8;
}

.service-areas {
  padding: 80px 0;
  background: #f8fafc;
}

.area-info {
  max-width: 800px;
  margin: 0 auto;
}

.area-details {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.area-details h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
}

.area-contact-info {
  margin-bottom: 30px;
}

.area-contact-info p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-contact-info p i {
  color: #2563EB;
  width: 16px;
}

.area-details h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e293b;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
}

.areas-grid span {
  font-size: 14px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.areas-grid span i {
  color: #22c55e;
  font-size: 12px;
}

.testimonials-section {
  padding: 80px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stars {
  margin-bottom: 15px;
}

.stars i {
  color: #f59e0b;
  font-size: 16px;
}

.testimonial-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.blog-section {
  padding: 80px 0;
  background: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
  line-height: 1.7;
}

.read-more {
  color: #2563EB;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #1d4ed8;
}

.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.quote-section {
  padding: 80px 0;
  background: #1e293b;
  text-align: center;
  color: #fff;
}

.quote-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.quote-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.quote-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #475569;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: #334155;
  color: #fff;
  transition: border-color 0.3s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #94a3b8;
}

.form-row select {
  color: #94a3b8;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-row textarea {
  width: 100%;
  resize: vertical;
}

.form-row select option {
  background: #334155;
  color: #fff;
}

.footer {
  padding: 60px 0 0;
  background: #0f172a;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e293b;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li i {
  color: #2563EB;
  width: 16px;
  font-size: 13px;
}

.footer-col ul li a {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: background 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  background: #2563EB;
  color: #fff;
}

.affiliations li {
  font-size: 13px !important;
}

.affiliations li i {
  color: #22c55e !important;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: #2563EB;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #60a5fa;
}

.mobile-sticky-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
  background: #22c55e;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: mobileCallPulse 2s infinite;
}

.mobile-sticky-call:hover {
  background: #16a34a;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.55), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.mobile-sticky-call i {
  font-size: 16px;
  animation: mobileCallRing 2s ease-in-out infinite;
}

@keyframes mobileCallPulse {
  0%
}

@keyframes mobileCallRing {
  0%
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-form {
    width: 100%;
    max-width: 450px;
  }

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

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

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

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

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

  .mobile-sticky-call {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .badges-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 30px;
  }

  .area-details {
    padding: 25px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .quote-section h2 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-form {
    padding: 20px;
  }

  .hero-container {
    padding: 40px 20px;
  }
}