/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', Helvetica, sans-serif;
  background-color: #ffffff;
  color: #354152;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Navigation Header */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 80px;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

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

.nav-logo img {
  /* width: 186px; */
  height: 36px;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #354152;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: rgba(53, 65, 82, 0.8);
}

.chevron-icon {
  width: 12px;
  height: 8px;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 8px;
  margin-top: 8px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #354152;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f1f5f9;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-login {
  padding: 8px 16px;
  background-color: #edf2ff;
  color: #475569;
  border-radius: 20px;
  line-height: 20px;
}

.btn-login:hover {
  background-color: rgba(237, 242, 255, 0.9);
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 9999px;
  font-size: 18px;
  box-shadow: 0 8px 10px -6px rgba(59, 130, 246, 0.2), 0 20px 25px -5px rgba(59, 130, 246, 0.2);
}

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

.btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: #ffffff;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 18px;
}

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

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  background-color: #eff5fc;
  color: #1d4ed8;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 9999px;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px 100px;
  width: 100%;
  overflow: hidden;
}

.hero-bg-blur {
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(219, 234, 254, 0.5);
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}

.hero-bg-blur-right {
  top: -300px;
  right: -200px;
  width: 600px;
  height: 600px;
}

.hero-bg-blur-left {
  left: -167px;
  bottom: -166px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 940px;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #0f172a;
  font-size: 72px;
  text-align: center;
  letter-spacing: -1.8px;
  line-height: 72px;
}

.hero-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 876px;
}

.hero-description p {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  text-align: center;
  line-height: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-image {
  width: 100%;
  max-width: 1024px;
  height: auto;
}

/* Availability Section */
.availability-section {
  width: 100%;
  padding: 0px 80px;
  border-top: 1px solid #eaeaea;
}

.availability-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 124px;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eaeaea;
}

.availability-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 576px;
  max-width: 100%;
}

.section-title {
  font-family: 'Plus Jakarta Sans', Helvetica, sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #000000;
  font-size: 42px;
  line-height: 54px;
  margin-top: 4px;
}

.section-description {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #475569;
  font-size: 18px;
  line-height: 32px;
  margin-top: 4px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 576px;
  max-width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background-color: #eff5fc;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.05), 0 4px 6px -4px rgba(30, 58, 138, 0.05);
}

.feature-icon {
  width: 72px;
  height: 72px;
}

.feature-title {
  font-family: 'Plus Jakarta Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #000000;
  font-size: 17px;
  line-height: 28px;
}

.feature-description {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #475569;
  font-size: 13px;
  line-height: 20px;
}

/* Cost Optimization Section */
.cost-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 80px;
  width: 100%;
  background-color: #ffffff;
  /* border-bottom: 1px solid #eaeaea; */
}

.cost-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  gap: 60px;
   border-bottom: 1px solid #eaeaea;
     padding-top: 60px;
  padding-bottom: 60px;
}

.cost-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 861px;
}

.cost-content {
  display: flex;
  gap: 101px;
}

.cost-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 296px;
}

.cost-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 16px;
  background-color: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cost-nav-item:hover {
  background-color: #f8fafc;
}

.cost-nav-item.active {
  background-color: #eff5fc;
}

.cost-nav-item img {
  width: 20px;
  height: 20px;
}

.cost-nav-item span {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #475569;
  font-size: 13.6px;
  line-height: 24px;
  white-space: nowrap;
}

.cost-nav-item.active span {
  color: #1d4ed8;
}

.cost-card {
  flex: 1;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.05), 0 4px 6px -4px rgba(30, 58, 138, 0.05);
}

.cost-image {
  width: 100%;
  height: auto;
}

/* Incident Management Section */
.incident-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 16px;
  width: 100%;
  /* border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea; */
}

.incident-container {
  display: flex;
  flex-direction: column;
  max-width: 1275px;
  width: 100%;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eaeaea;
}

.incident-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 861px;
}

.incident-content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.timeline {
  position: relative;
  min-width: 431px;
  max-height: 400px;
  padding-left: 33px;
  border-left: 1px solid #e2e8f0;
  margin-left: 32px;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 0 48px;
}

.timeline-item:last-child {
  padding-bottom: 4px;
}

.timeline-dot {
  position: absolute;
  left: -43px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dot-red {
  background-color: #dc2626;
}

.dot-yellow {
  background-color: #ffffff;
  border-color: #ffe6b3;
}

.dot-yellow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dot-blue {
  background-color: #2563eb;
}

.dot-green {
  background-color: #ffffff;
  border-color: #d6ffe2;
}

.dot-green::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.timeline-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.timeline-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.timeline-title {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 700;
  color: #0f172a;
  font-size: 17px;
  line-height: 28px;
}

.timeline-description {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #64748b;
  font-size: 13.6px;
  line-height: 24px;
}

.incident-image-container {
  flex: 1;
  min-width: 0;
}

.incident-image {
  width: 100%;
  max-width: 741px;
  height: auto;
}

/* Footer Section */
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 80px 0;
  width: 100%;
}

.footer-container {
  width: 100%;
  max-width: 1280px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.footer-logo img {
  width: 105px;
  height: 24px;
  object-fit: cover;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.copyright {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #354152;
  font-size: 14px;
  text-align: right;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.footer-label {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #697282;
  font-size: 12px;
  text-align: right;
  letter-spacing: 0.6px;
  line-height: 16px;
}

.footer-address {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #354152;
  font-size: 14px;
  text-align: right;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #d0d5db;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.footer-rights {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #495565;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #354152;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .availability-container {
    flex-direction: column;
    gap: 48px;
  }
  
  .availability-header,
  .features-grid {
    width: 100%;
  }
  
  .cost-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cost-nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-header {
    padding: 0 24px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-section {
    padding: 100px 24px 60px;
  }
  
  .hero-title {
    font-size: 48px;
    line-height: 56px;
  }
  
  .hero-description p {
    font-size: 20px;
    line-height: 32px;
  }
  
  .availability-section,
  .cost-section,
  .footer-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .section-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    min-width: auto;
  }
  
  .incident-content {
    flex-direction: column;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-info {
    align-items: flex-start;
  }
  
  .copyright,
  .footer-label,
  .footer-address {
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}


/* Contact Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.25s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 22px;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}

.modal-title {
  font-family: 'Plus Jakarta Sans', Helvetica, sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #0f172a;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #475569;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 28px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

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

.form-label {
  display: block;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 500;
  color: #354152;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 15px;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 24px;
}

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

.form-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.input-error {
  border-color: #dc2626;
}

.form-input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.form-error {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 13px;
  color: #dc2626;
  margin-top: 4px;
  min-height: 0;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-top: 4px;
}

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

.form-submit-btn {
  padding: 12px 32px;
  font-size: 16px;
  border-radius: 9999px;
  white-space: nowrap;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* intl-tel-input full width */
.form-group .iti {
  width: 100%;
}

/* Thank You View */
.thank-you-view {
  text-align: center;
  padding: 20px 0;
}

.thank-you-icon {
  margin-bottom: 20px;
}

.thank-you-view .modal-title {
  margin-bottom: 12px;
}

.thank-you-view .modal-subtitle {
  margin-bottom: 32px;
}

.thank-you-view .form-submit-btn {
  margin: 0 auto;
}

/* Modal responsive */
@media (max-width: 768px) {
  .modal-container {
    margin: 16px;
    padding: 28px 20px;
    max-width: 100%;
  }

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

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit-btn {
    justify-content: center;
  }
}