/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2e7897 0%, #1b5e7a 100%);
  color: white;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-weight: 400;
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* Form Section */
.form-section {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.form-section h2 {
  font-size: 1.75rem;
  color: #2e7897;
  margin-bottom: 10px;
  font-weight: 600;
  margin-top:0;
}

.form-section .subtitle {
  color: #6b7280;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e40af;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  margin-top: 16px;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Contact Info Section */
.contact-info {
  padding: 40px;
}

.contact-info h2 {
  font-size: 1.75rem;
  color: #2e7897;
  margin-bottom: 30px;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: #f3f4f6;
  transform: translateX(5px);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2e7897 0%, #1b5e7a 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.info-content h3 {
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 4px;
  font-weight: 600;
}

.info-content p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-content a {
  color: #2e7897;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

/* Map Section */
.map-section {
  background: #f9fafb;
  padding: 60px 20px;
}

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

.map-container h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.map-wrapper {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  height: 450px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #1e40af;
}

.map-placeholder svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.map-placeholder p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Trust Section */
.trust-section {
  background: white;
  padding: 60px 20px;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-container h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 40px;
  font-weight: 600;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #2e7897 0%, #1b5e7a 100%);
}

.badge-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.badge p {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Footer CTA */
.footer-cta {
  background: #2e7897;
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
  background-image: linear-gradient(to right, #2e7897, #008ba3, #009da3, #00ad96, #00bc7d);
}
/* .footer-cta::before{
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
} */

.footer-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.demo-btn {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: #1e3a8a;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Success Message */
.success-message {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.success-message.show {
  display: block;
}
.section-footer.mt-100.cyan-bg{
    margin-top:0;
}
.demo-form-field{
    width:100%;
}
.demo-form-row{
    column-gap:20px;
}
/* Responsive Design */
@media (max-width: 968px) {
  .hero h1 {
    font-size: 2.25rem;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-badges {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 20px 50px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

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

  .container {
    padding: 40px 20px;
  }

  .form-section,
  .contact-info {
    padding: 30px 20px;
  }

  .map-wrapper {
    height: 300px;
  }

  .trust-badges {
    gap: 30px;
  }
}
