* {
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #1e40af;
  --secondary-color: #3b82f6;
  --accent-color: #10b981;
  --dark-color: #1f2937;
  --light-gray: #f8fafc;
  --border-color: #e2e8f0;
}

.navbar-custom {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.15);
  backdrop-filter: blur(10px);
}

.navbar-custom .nav-link {
  font-size: 1.4rem;
  font-weight: 500;
  color: #f32f2f;
  margin: 0 15px;
  padding: 8px 16px !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: red;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-info {
  background: linear-gradient(135deg, var(--light-gray), #ffffff);
  padding: 15px 0;
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--secondary-color);
}

.btn-quote {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), #f32f2f);
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  color: white;
}

.carousel-item {
  height: 600px;
  position: relative;
  overflow: hidden;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), #f32f2f);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.carousel-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.carousel-content p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
}

.btn-hero {
  background: white;
  color: var(--primary-color);
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: white;
  color: var(--primary-color);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.header-email {
  font-size: 1.2rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), #f32f2f);
  border-radius: 2px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), #f32f2f);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 4rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), #f32f2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.service-card h4 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
}

.about-bg {
  background: linear-gradient(135deg, var(--light-gray), #ffffff);
  position: relative;
}

.about-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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='%233b82f6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-content {
  position: relative;
  z-index: 2;
}

.feature-check {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), #f32f2f);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.contact-bg {
  background: white;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), #f32f2f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 1rem 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.btn-submit {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), #f32f2f);
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 600px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-custom {
  background: linear-gradient(135deg, var(--dark-color), #111827);
  color: white;
  padding: 60px 0 30px 0;
  position: relative;
}

.footer-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
}

.footer-custom h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-custom a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-custom a:hover {
  color: var(--accent-color);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.stats-section {
  padding: 20px 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .carousel-content h2 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .service-card {
    margin-bottom: 2rem;
  }
}
