:root {
  --primary-color: #306db5;
  --primary-hover: #2c3e77;
  --bg-header: #f8f9fb;
  --border-color: #e6e9ee;
  --subtext-color: #798ca1;
}

/* ============================================== */
/* Seha – Pixel-Perfect Clone */
/* ============================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif;
  background: #fff;
  direction: rtl;
}

/* ============================================== */
/* App Layout */
/* ============================================== */
.App {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.App .nav-container {
  padding-top: 0;
}

main {
  height: 100%;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

/* ============================================== */
/* Mobile Top Header */
/* ============================================== */
.mobile-top-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
  background: var(--bg-header);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-top-header .mobile-menu-btn {
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 1;
}

.mobile-top-header .mobile-menu-btn img {
  width: 28px;
  height: 28px;
}

.mobile-top-header .mobile-logo-link img {
  width: 110px;
  max-width: 100%;
}

/* ============================================== */
/* Desktop Navigation – matching original exactly */
/* ============================================== */
.seha-nav-shell {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg-header);
}

.seha-nav {
  background: var(--bg-header);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 4% !important;
}

.seha-nav-grid {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 2%;
  margin-bottom: 0;
}

.seha-nav .nav-brand-block {
  flex: 0.5;
  display: flex;
  align-items: center;
  position: relative;
  margin-inline-start: 0;
  padding-inline-end: 50px;
}

.seha-nav .logo {
  width: auto;
  max-width: 120px;
}

/* nav main links – matching .menu in original */
.seha-nav .nav-main {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
  margin-inline-end: 16px;
}

.seha-nav .nav-main .nav-link {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 400;
  font-family: "Cairo", sans-serif;
  padding: 5px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.seha-nav .nav-main .nav-link:hover {
  color: var(--primary-hover);
}

.seha-nav .nav-main .nav-link.active {
  font-weight: 400;
  border-bottom: none;
  padding-bottom: 5px;
}

/* Auth area – matching second .menu in original */
.seha-nav .nav-auth {
  display: flex;
  align-items: center;
  flex: 1;
  margin: 0;
  justify-content: flex-end;
}

.seha-nav .nav-auth .nav-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  font-family: "Cairo", sans-serif;
  padding-right: 10px;
  padding-left: 0;
  text-decoration: none;
}

.seha-nav .nav-auth .nav-link p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

/* Login button – matching original exactly */
.seha-nav .nav-auth .login {
  display: inline-flex;
  background: var(--primary-color);
  color: #fff !important;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  margin-inline: 10%;
  padding: 10px 20px 10px 27px !important;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  flex-direction: row;
  justify-content: center;
}

.seha-nav .nav-auth .login:hover {
  color: #fff;
  background-color: #2c3e77;
}

.seha-nav .nav-auth .login p {
  display: flex;
  text-align: right;
  font-size: 14px;
  width: fit-content;
  padding: 0;
  margin: 0;
  align-items: center;
  color: #fff;
}

.seha-nav .nav-auth .login img {
  filter: brightness(0) invert(1);
  width: 10px;
  margin: auto 4%;
}

/* ============================================== */
/* Inner Page / Inquiries – matching original */
/* ============================================== */
.inner-page {
  margin-top: 50px;
  padding-top: 7%;
}

.inner-page p {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.inquiries-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 65vh;
  margin-top: 4%;
}

.inquiries-container .heading {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Cairo", sans-serif;
  position: relative;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='204'%20height='21'%20viewBox='0%200%20204%2021'%3e%3crect%20id='Rectangle_9405'%20data-name='Rectangle%209405'%20width='204'%20height='21'%20fill='%237eb7db'%20opacity='0.25'/%3e%3c/svg%3e");
  background-size: contain;
  padding: 0 20px;
}

.inquiries-container .heading::before {
  content: "";
  position: absolute;
  right: 25%;
  bottom: -15px;
  width: 50%;
  height: 4px;
  background-color: #7eb7db;
}

@media (min-width: 992px) {
  .inquiries-container .heading::before {
    right: 0;
  }
}

.inquiries-container .sub-heading {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--subtext-color);
  font-family: "Cairo", sans-serif;
  line-height: 1.8;
}

/* ============================================== */
/* Form – matching Bootstrap defaults + original */
/* ============================================== */
.inquiries-container .form-group {
  margin-bottom: 15px;
}

.inquiries-container .form-group label {
  margin-bottom: 5px;
}

.inquiries-container .form-control {
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Cairo", sans-serif;
  background: #fff;
  color: #000;
  transition: border-color 0.15s ease-in-out;
  width: 100%;
  line-height: 1.5;
  display: block;
}

.inquiries-container .form-control:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  color: #212529;
}

.inquiries-container .form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* ============================================== */
/* Buttons – matching original */
/* ============================================== */
.btn-primary {
  background: var(--primary-color) !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 0.8rem !important;
  line-height: 1.5rem !important;
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s !important;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.9;
  color: #fff !important;
  background-color: var(--primary-color);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.inquiries-container .btn {
  padding-top: 6px;
}

/* ============================================== */
/* Results – matching original */
/* ============================================== */
.results-inquiery {
  background: #f7f7f7 !important;
  padding: 10px !important;
  margin: 25px 1px 1px !important;
  border: 1px solid gainsboro !important;
  text-align: right;
}

.results-inquiery > div {
  padding: 10px !important;
  font-size: 1rem;
  color: #333;
}

.results-inquiery span {
  display: block;
  font-weight: 700;
  padding: 8px 0;
  color: var(--primary-color);
}

/* ============================================== */
/* Alert */
/* ============================================== */
.alert {
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
}

.alert-danger {
  background: #fff2f0;
  border: 1px solid #ffccc7;
  color: #ff4d4f;
}

/* ============================================== */
/* Big Footer – matching original */
/* ============================================== */
.big-footer {
  background-color: var(--primary-color);
  color: #f0f3f8;
  padding-top: 44px;
  padding-bottom: 10px;
  width: 100%;
  font-family: "Cairo", sans-serif;
  text-align: center;
}

.big-footer .big-footer-inner {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.big-footer .footer-col h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 30px 0 20px 0;
  position: relative;
  display: inline-block;
  font-family: "Cairo", sans-serif;
}

.big-footer .footer-col h3::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 50%;
  height: 4px;
  background-color: #7eb7db;
}

/* Logo */
.big-footer .footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.big-footer .footer-logo-wrap img {
  height: auto;
  max-width: 150px;
}

/* About text */
.big-footer .footer-description {
  width: 100%;
  line-height: 30px;
  font-size: 16px;
  margin: 40px 0 0 0;
  text-align: center;
  font-family: "Cairo", sans-serif;
  padding-left: 1%;
  padding-right: 1%;
  color: #f0f3f8;
}

/* Footer links */
.big-footer .footer-menu .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.big-footer .footer-menu .footer-links li {
  margin: 10% 0;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Cairo", sans-serif;
  border-bottom: none;
  padding: 0;
}

.big-footer .footer-links li a {
  color: #fff;
  text-decoration: none;
}

/* Contact */
.big-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.big-footer .footer-contact li {
  margin: 10% 0;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Cairo", sans-serif;
}

.big-footer .footer-contact li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

/* Hours */
.big-footer .footer-hours {
  margin: 0;
  font-size: 1rem;
  color: #f0f3f8;
  font-weight: 200;
  font-family: "Cairo", sans-serif;
}

/* Social */
.big-footer .footer-socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin: 25px 0 35px 0;
}

.big-footer .footer-socials a,
.big-footer .footer-socials button {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
}

.big-footer .footer-socials img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

/* Partners */
.big-footer .footer-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.big-footer .footer-partners img {
  height: 50px;
  width: auto;
  opacity: 0.95;
}

.big-footer .footer-partners .spacer {
  width: 1px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: #4f83c0;
  align-self: stretch;
}

/* Bottom links – matching original */
.big-footer .footer-bottom-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}

.big-footer .footer-bottom-links p {
  font-size: 0.6rem;
  text-align: right;
  color: #f0f3f8;
  margin: 0 0 10px 0;
  font-weight: lighter;
}

.big-footer .footer-bottom-links ul {
  flex: 1;
  display: flex;
  flex-direction: row;
  padding: 0;
  align-items: center;
  justify-content: center;
  list-style-type: "";
  margin: 0;
}

.big-footer .footer-bottom-links ul li {
  height: fit-content;
  margin: 20px 0 0;
  line-height: 1;
  font-size: 10px;
  padding: 0 0 0 10px;
  font-weight: 200;
  border-left: 1px solid white;
}

.big-footer .footer-bottom-links ul li:last-child {
  border-left: 0;
}

.big-footer .footer-bottom-links a,
.big-footer .footer-bottom-links ul li a {
  color: #f0f3f8;
  text-decoration: none;
}

.big-footer .footer-bottom-links a:hover,
.big-footer .footer-bottom-links ul li a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* Footer watermark */
.big-footer .footer-watermark {
  position: absolute;
  right: 140px;
  bottom: -36px;
  width: 300px;
  height: 260px;
  background: url("../media/NLogo.19a2d86c23a7fd79db691f779fc9a94a.svg") no-repeat center/contain;
  opacity: 0.08;
  pointer-events: none;
}

/* ============================================== */
/* Chat FAB */
/* ============================================== */
.chat-fab {
  position: fixed;
  right: 30px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  background-color: #f0f3f8;
  color: #fff;
  cursor: pointer;
  border-radius: 11px;
  font-size: 18px;
  padding: 0;
  gap: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease;
  text-decoration: none;
}

@supports (-webkit-hyphens: none) {
  .chat-fab {
    width: 50px;
  }
}

.chat-fab:hover {
  transform: scale(1.03);
}

.chat-fab .chat-icon-circle,
.chat-fab .chat-bubble {
  display: none;
}

.chat-fab .chat-bubble svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.chat-fab svg {
  width: 24px;
  height: 24px;
}

.chat-fab svg path {
  fill: var(--primary-color);
}

/* ============================================== */
/* Mini Footer Container – hide */
/* ============================================== */
.mini-footer-container {
  display: none !important;
}

/* ============================================== */
/* R e s p o n s i v e   B r e a k p o i n t s    */
/* ============================================== */

/* ============================================== */
/* Desktop ≥ 992px */
/* ============================================== */
@media (min-width: 992px) {
  .seha-nav-grid {
    padding-inline: unset;
  }

  .seha-nav .nav-auth .login {
    justify-content: unset;
    margin-top: 0;
    margin-inline: 30px;
    padding-inline: 50px;
    gap: unset;
  }

  .seha-nav .nav-auth .login p {
    width: 100%;
    margin-inline: 0;
  }

  .big-footer .big-footer-inner {
    flex-direction: row;
    padding-right: 100px;
    padding-left: 100px;
  }

  .big-footer .footer-col {
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    margin: 0;
  }

  .big-footer .footer-col h3 {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .big-footer .footer-col h3::before {
    right: 0;
  }

  .big-footer .footer-menu .footer-links {
    width: unset;
  }

  .big-footer .footer-menu .footer-links li {
    margin: 10% 0;
    text-align: right;
    font-size: 1rem;
  }

  .big-footer .footer-contact {
    width: unset;
  }

  .big-footer .footer-contact li {
    margin: 10% 0;
    text-align: right;
    font-size: 1rem;
  }

  .big-footer .footer-description {
    text-align: justify;
    margin-bottom: 0;
  }

  .big-footer .footer-logo-wrap {
    justify-content: flex-start;
  }

  .big-footer .footer-logo-wrap img {
    width: 150px;
  }

  .big-footer .footer-socials {
    justify-content: flex-start;
  }

  .big-footer .footer-socials img {
    width: 30px;
    height: 30px;
  }

  .big-footer .footer-partners {
    justify-content: flex-start;
  }

  .big-footer .footer-hours {
    font-size: 1rem;
  }

  .big-footer .footer-bottom-links {
    flex-direction: row;
    align-items: flex-start;
  }

  .big-footer .footer-bottom-links p {
    font-size: 0.6rem;
    text-align: right;
    margin-bottom: 10px;
  }

  .big-footer .footer-bottom-links ul {
    list-style-type: "";
  }

  .big-footer .footer-bottom-links ul li {
    font-size: 10px;
    margin-top: 0;
  }

  .big-footer .footer-watermark {
    right: 140px;
    width: 300px;
    height: 260px;
  }

  .chat-fab {
    width: 50px;
    height: 40px;
    right: 30px;
    bottom: 20px;
  }
}

/* ============================================== */
/* Tablet: 992px – 1400px */
/* ============================================== */
@media (max-width: 1400px) and (min-width: 992px) {
  .seha-nav .nav-brand-block {
    flex: 0.5;
  }

  .seha-nav .nav-main {
    flex: 1;
  }

  .seha-nav .nav-main .nav-link {
    font-size: 0.95rem;
  }

  .seha-nav .nav-auth .login {
    margin-inline: 25px;
    padding: 7px 15px;
  }

  .big-footer .big-footer-inner {
    padding: 0 60px;
  }
}

/* ============================================== */
/* Tablet: 993px – 1140px */
/* ============================================== */
@media (max-width: 1140px) and (min-width: 992px) {
  .seha-nav .nav-main .nav-link {
    font-size: 0.9rem;
  }

  .seha-nav .nav-auth .login {
    margin-inline: 20px;
    padding: 6px 12px;
  }

  .big-footer .big-footer-inner {
    padding: 0 40px;
  }
}

/* ============================================== */
/* Mobile & Tablet < 992px */
/* ============================================== */
@media (max-width: 991px) {
  .mobile-top-header {
    display: flex;
  }

  .seha-nav-shell {
    display: none;
  }

  .inner-page {
    margin-top: 0;
    padding-top: 0;
  }

  .inquiries-container {
    padding-top: 28px !important;
    min-height: auto;
    margin-top: 0;
  }

  .inquiries-container .heading {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .inquiries-container .sub-heading {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0 16px;
  }

  .inquiries-container .form-control {
    padding: 12px 14px;
    font-size: 15px;
  }

  .btn-primary {
    padding: 10px 30px !important;
    font-size: 15px !important;
  }

  .big-footer .big-footer-inner {
    flex-direction: column;
    padding: 0 16px;
    text-align: center;
  }

  .big-footer .footer-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 0;
    flex: unset;
  }

  .big-footer .footer-col h3::before {
    right: 25%;
    width: 50%;
  }

  .big-footer .footer-logo-wrap {
    justify-content: center;
  }

  .big-footer .footer-description {
    text-align: center;
  }

  .big-footer .footer-socials {
    justify-content: center;
  }

  .big-footer .footer-partners {
    justify-content: center;
  }

  .big-footer .footer-bottom-links {
    align-items: center;
    text-align: center;
  }

  .big-footer .footer-bottom-links p {
    text-align: center;
  }

  .big-footer .footer-bottom-links ul {
    flex-wrap: wrap;
  }

  .big-footer .footer-bottom-links ul li {
    margin: 20px 0 0 0;
    font-size: 10px;
  }

  .chat-fab {
    right: 8px;
    bottom: 8px;
    width: 40px;
    height: 40px;
  }

  .results-inquiery {
    padding: 12px;
  }

  .results-inquiery > div {
    font-size: 14px;
    padding: 6px 8px;
  }
}

/* ============================================== */
/* Small Mobile < 768px */
/* ============================================== */
@media (max-width: 768px) {
  .big-footer {
    text-align: center;
  }

  .big-footer .footer-col h3::before {
    right: 25%;
  }

  .big-footer .footer-bottom-links {
    text-align: center;
  }
}

/* ============================================== */
/* X-Small Mobile < 576px */
/* ============================================== */
@media (max-width: 576px) {
  .inquiries-container .heading {
    font-size: 24px;
  }

  .inquiries-container .sub-heading {
    font-size: 14px;
  }

  .inquiries-container .form-control {
    padding: 10px 12px;
    font-size: 14px;
  }

  .btn-primary {
    padding: 10px 24px !important;
    font-size: 14px !important;
  }

  .big-footer .big-footer-inner {
    padding: 0 12px;
  }

  .big-footer .footer-watermark {
    width: 160px;
    height: 140px;
  }

  .chat-fab {
    right: 8px;
    bottom: 8px;
  }
}

/* Large desktop ≥ 1200px */
@media (min-width: 1200px) {
  .big-footer .big-footer-inner {
    padding-right: 100px;
    padding-left: 100px;
  }
}
