@media (max-width: 712px) {
  .logo a img {
    max-height: 60px;
    aspect-ratio: auto;
    object-fit: contain;
  }
  header {
    padding-left: 0px !important;
    padding-right: 16px !important;
  }
}
@media screen and (max-width: 520px) {
  h1 {
    font-size: 32px !important;
  }
  .pr-info {
    margin-bottom: 20px;
    margin-top: 16px;
  }
}
.h1,
h1 {
  font-size: 32px !important;
  line-height: 1.18em;
}
.hero-banner-one {
  height: fit-content;
}
.hero-banner-one .bg-wrapper {
  padding: 140px 0 30px;
}
/* Right column layout */
.hero-form-col {
  width: 41.6667%;
  padding: 12px;
}

.hero-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Title */
.hero-form-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #98cb46;
  margin-bottom: 18px;
}

/* Form layout */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.hero-form input:focus,
.hero-form textarea:focus {
  border-color: #98cb46;
}

/* Rows */
.hero-form-row {
  display: flex;
  gap: 10px;
}

.hero-form-row input {
  flex: 1;
}

.hero-form-row.three input {
  flex: 0 0 32%;
}

/* Button */
.hero-form button {
  background: var(--prime-one);
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-form button:hover {
  background: #2563eb;
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS   */
/* ========================= */

@media (max-width: 1200px) {
  .hero-form-col {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .hero-form-col {
    width: 100%;
    margin-top: 30px;
  }

  .hero-form-card {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-form-row {
    flex-direction: column;
  }

  .hero-form-row.three input {
    flex: 1;
  }

  .hero-form-card {
    padding: 18px;
  }
}
/* Section base */
.adas-section {
  position: relative;
}

/* Floating logo */
.adas-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #27304b;
  padding: 16px;
  border-radius: 20px;
  z-index: 5;
}

/* Wrapper */
.adas-wrapper {
  width: 100%;
  min-height: 400px;
  margin-top: 96px;
  margin-bottom: 16px;
  background-color: #27304b;
  display: flex;
  justify-content: center;
  transition: all 0.5s ease;
}

/* Container */
.adas-container {
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-wrap: wrap;
}

/* Left image */
.adas-left {
  width: 50%;
  min-height: 200px;
  background-image: url("../images/eno.webp");
  background-size: cover;
  background-position: center;
}

/* Right content */
.adas-right {
  width: 50%;
  min-height: 400px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

/* Typography */
.adas-heading {
  font-size: 38px;
  margin-bottom: 20px;
  color: #ffffff;
}

.adas-subheading {
  font-size: 28px;
  margin-bottom: 16px;
  color: #ffffff;
}

.adas-text {
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.adas-note {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Accordion list */
.adas-list {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.adas-list li {
  border-radius: 5px;
  overflow: hidden;
}

.adas-accordion {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  cursor: pointer;
  color: #8abd42;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  font-size: 18px;
}

.adas-panel {
  overflow: hidden;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
}

.adas-panel div {
  padding: 12px 0;
  font-size: 16px;
}

/* CTA */
.adas-cta {
  margin-top: auto;
}

.adas-call-btn {
  display: inline-block;
  background-color: #8abd42;
  color: #27304b;
  font-weight: bold;
  font-size: 20px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.adas-call-btn:hover {
  background-color: #98cb46;
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS   */
/* ========================= */

@media (max-width: 1200px) {
  .adas-right {
    padding: 60px;
  }
}

@media (max-width: 992px) {
  .adas-left,
  .adas-right {
    width: 100%;
  }

  .adas-right {
    padding: 48px 32px;
  }

  .adas-logo {
    top: 20px;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .adas-heading {
    font-size: 26px;
  }

  .adas-subheading {
    font-size: 22px;
  }

  .adas-text,
  .adas-note {
    font-size: 16px;
  }

  .adas-call-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .adas-right {
    padding: 32px 20px;
  }
}
/* Section */
.faq-section {
  padding: 80px 0;
  background: #f9fafb;
}

/* Container */
.faq-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Title */
.faq-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #27304b;
  margin-bottom: 60px;
}

/* Wrapper */
.faq-wrapper {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Button */
.faq-toggle {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* Question */
.faq-question {
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 600;
  color: #27304b;
  gap: 16px;
}

/* Number */
.faq-number {
  min-width: 40px;
  height: 40px;
  background: #98cb46;
  color: #27304b;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon */
.faq-icon {
  width: 12px;
  height: 12px;
  border-right: 3px solid #98cb46;
  border-bottom: 3px solid #98cb46;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

/* Open state */
.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(-135deg);
}

/* Answer */
.faq-answer {
  padding: 0 28px 28px 84px;
  color: #4b5563;
  line-height: 1.7;
  font-size: 16px;
}

/* ================= */
/* Responsive */
/* ================= */

@media (max-width: 768px) {
  .faq-title {
    font-size: 34px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    padding-left: 28px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-toggle {
    padding: 18px 20px;
  }

  .faq-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.map-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 26px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(39, 48, 75, 0.15);
  text-align: center;
}

.map-title {
  color: #98cb46;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.map-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(39, 48, 75, 0.2);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ================= */
/* Responsive */
/* ================= */

@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 350px;
  }

  .map-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .map-wrapper iframe {
    height: 280px;
  }

  .map-section {
    padding: 18px;
  }
}
