/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* Import Codec Pro Fonts */
@font-face {
  font-family: "Codec Pro";
  src: url("/fonts/Codec-Pro-Regular-trial.woff2") format("woff2"), 
       url("/fonts/Codec-Pro-Regular-trial.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Codec Pro";
  src: url("/fonts/Codec-Pro-Bold-trial.woff2") format("woff2"), 
       url("/fonts/Codec-Pro-Bold-trial.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Codec Pro";
  src: url("/fonts/Codec-Pro-Extrabold-trial.woff2") format("woff2"), 
       url("/fonts/Codec-Pro-Extrabold-trial.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

/* CSS Variables */
:root {
  --primary-color: #586f45;
  --secondary-color: #b1b3a4;
  --text-dark: #070707;
  --text-light: #4a4c56;
  --background-light: #ededec;
  --white: #fff;
  --border-radius: 8px;
  --box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
  --font-family: "Codec Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: #333;
  font-weight: 400;
  animation: fadeIn 0.5s ease-out;
}

.container-fluid {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Header Styles */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
  background: transparent;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.navbar-brand {
  text-decoration: none;
  z-index: 10;
}

.navbar-toggler {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggler span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.1px;
  padding: 0 17px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.language-toggle-btn {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 550;
  line-height: 140%;
  letter-spacing: 0.1px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.language-toggle-btn:hover {
  color: var(--primary-color);
}

.contact-btn {
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: rgb(21, 23, 19);
  color: var(--white);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: medium;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0px auto;
  max-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.contact-btn:hover {
  background: #586F45;
}

/* Hero Section */
.hero {
  background: url(/assets/images/Hero-en.svg) center / cover no-repeat;
  padding: 120px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  border-radius: 0px 0px 95px 95px;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 400px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
}

.hero .text-box {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 20px;
}

.hero .hero-subtitle {
  color: #586F45;
  text-align: center;
  font-family: "Codec Pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 42px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .hero-title {
  color: #151713;
  text-align: center;
  font-family: "Codec Pro";
  font-size: clamp(2.0rem, 5vw, 42px);
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  margin: 0 auto;
  width: 100%;
  display: block;
  min-height: 1.2em;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero .hero-title .typing-cursor {
  color: #151713;
  animation: blink 1s infinite;
}

/* Blinking cursor animation */
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.hero .description {
  color: #151713;
  width: 100%;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.18px;
  margin: 30px auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero .contact-btn {
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: rgb(21, 23, 19);
  color: var(--white);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: medium;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0px auto;
  max-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero .contact-btn:hover {
  background: #586F45;
}

/* Services Section */
.services {
  padding: 0px 0;
  margin-top: 90px;
}

.services .text-box {
  margin-bottom: 60px;
  text-align: center;
}

.services .title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 10px;
}

.services .subtitle {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin: 0 auto;
  max-width: 670px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 32px;
  gap: 32px;
  padding: 0 15px;
}

.service-card {
  border-radius: 32px;
  border: 0.5px solid rgba(67, 78, 60, .2);
  padding: 40px 30px;
  text-align: center;
  background: var(--white);
  height: 357px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  background: white;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover .card-title,
.service-card:hover .card-text {
  color: var(--text-dark);
}

.service-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  justify-content: center;
}

.service-card .img-box {
  display: flex;
  padding: 12px 16px;
  background-color: #6e8d55;
  text-align: center;
  border-radius: 50%;
  width: 86px;
  height: 86px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.service-card .card-title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.service-card .card-text {
  color: #4a4c56;
  font-family: Codec Pro, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  transition: color 0.3s ease;
}

/* Special Need Service Card */
.need-service-card {
  background: rgb(239, 244, 236) !important;
  border: 1px solid #e9ecef !important;
  padding: 60px 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 357px;
}

.need-service-card:hover {
  background: rgb(239, 244, 236) !important;
  transform: translateY(-5px);
}

.need-service-illustration {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.need-service-image {
  max-width: 110px;
  height: auto;
}

.need-service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.need-service-title {
  color: #151713 !important;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: -7px;
}

.need-service-text {
  color: #6c757d !important;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
  max-width: 200px;
}

.request-service-btn {
  background: #151713;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 18px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 30px;
}

.request-service-btn:hover {
  background: #6e8d55;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Why Us Section */
.why-us {
  padding: 50px 0px;
  background-color: rgb(243, 246, 241);
  border-radius: 95px;
  margin-top: 130px;
}

.why-us .text-box {
  margin-bottom: 60px;
  text-align: center;
}

.why-us .title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 10px;
}

.why-us .subtitle {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin: 0 auto;
  max-width: 670px;
}

.why-rafa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 32px;
  gap: 32px;
  padding: 0 15px;
}

.why-rafa-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: var(--white);
  border: none;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-rafa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-rafa-card .img-box {
  padding: 12px 16px;
  background-color: #6e8d55;
  text-align: center;
  border-radius: 50%;
  width: 86px;
  height: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.why-rafa-card .card-title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 15px;
  transition: color 0.4s ease;
  text-align: center;
}

.why-rafa-card .card-text {
  color: var(--text-light);
  font-family: 'Codec Pro', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  transition: color 0.3s ease;
  text-align: center;
}

/* Expertise Section */
.expertise {
  padding: 50px 0px;
  background-color: rgb(243, 246, 241);
  border-radius: 95px;
  margin-top: 130px;
}

.expertise .text-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.expertise .title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 46px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 20px;
}

.expertise-subtitle {
  color: #6e8d55;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.expertise-text {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 600px;
  margin: 0 auto;
}

/* Rafa Difference Section */
.rafa-difference {
  padding: 50px 0px;
  background-color: rgb(243, 246, 241);
  border-radius: 95px;
  margin-top: 130px;
}

.rafa-difference .text-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.rafa-difference .title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 46px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 20px;
}

.rafa-difference-subtitle {
  color: #6e8d55;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rafa-difference-text {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  padding: 30px 0;
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 15px;
}

.contact-subtitle {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-form-section {
  background: transparent;
  padding: 0;
}

.contact-map-section {
  display: flex;
  align-items: stretch;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 10px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #6E8D55 !important;
  font-size: 16px;
  z-index: 2;
}

/* Special styling for phone icon to make it outlined */
.fa-phone-alt.input-icon {
  color: #6E8D55 !important;
}

/* English version only - flip phone icon */
html:not([dir="rtl"]) .fa-phone-alt.input-icon {
  transform: scaleX(-1);
}

.message-wrapper {
  align-items: flex-start;
}

.message-icon {
  top: 15px;
  position: absolute;
}

.form-control {
  width: 100%;
  padding: 20px 15px 18px 35px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-family: var(--font-family);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #fff;
  line-height: 1.5;
}

.message-textarea {
  padding-top: 5px;
  resize: vertical;
  min-height: 100px;
  padding: 15px 6px 12px 39px !important;
}

.form-control:focus {
  outline: none;
  border-color: #6e8d55;
  box-shadow: 0 8px 25px rgba(110, 141, 85, 0.15);
}

/* Form Control Validation Errors */
.form-control.error,
.form-control.error:focus,
input.form-control.error,
textarea.form-control.error {
  border: 2px solid #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
  background-color: #fff !important;
}

.form-control.error:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-control::placeholder {
  color: #999;
  font-family: var(--font-family);
}

.submit-btn {
  width: 100%;
  background: #6e8d55;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 18px 30px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
  background: #5a7245;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.loading {
  text-align: center;
  padding: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #6e8d55;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Alerts */
.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 500;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  animation: slideIn 0.3s ease;
}

.alert-success {
  background: #28a745;
}

.alert-warning {
  background: #ffc107;
  color: #212529;
}

.alert-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  margin-left: 10px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer */
.footer {
  background: #FAFAFA;
  padding: 60px 0 30px;
  text-align: center;
  border-radius: 95px 95px 0 0;
  margin-top: 90px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.footer-content.animate-in > *:nth-child(1) { transition-delay: 0.1s; }
.footer-content.animate-in > *:nth-child(2) { transition-delay: 0.2s; }
.footer-content.animate-in > *:nth-child(3) { transition-delay: 0.3s; }

.footer-logo-section {
  margin-bottom: 10px;
}

.footer-main-logo {
  height: auto;
}

.footer-description-section {
  max-width: 600px;
  margin: 0 auto;
}

.footer-description {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.footer-social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-social-title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #6e8d55;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icon:hover {
  background: white;
  color: #6e8d55;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(110, 141, 85, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}

.copyright {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.attribution {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
}

.kijoo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kijoo-link:hover {
  transform: translateY(-1px);
  opacity: 0.8;
}

.kijoo-logo {
  height: auto;
}

/* RTL Support for Footer */
[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

[dir="rtl"] .attribution {
  flex-direction: row-reverse;
}

/* RTL Support */

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .footer-description {
    font-size: 14px;
  }
  
  .footer-social-title {
    font-size: 16px;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .copyright,
  .attribution {
    font-size: 13px;
  }
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .navbar-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero .text-box {
  text-align: center;
}

[dir="rtl"] .contact-content {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

[dir="rtl"] .contact-form-section {
  order: 2;
}

[dir="rtl"] .contact-map-section {
  order: 1;
}

[dir="rtl"] .submit-box {
  justify-content: flex-start;
}

/* RTL Contact Form Icons */
[dir="rtl"] .input-icon {
  left: auto;
  right: 15px;
}

[dir="rtl"] .form-control {
  padding: 15px 35px 18px 15px;
  text-align: right;
  font-family: 'Cairo', Tahoma, Arial, sans-serif !important;
  font-size: 14px !important;
}

[dir="rtl"] .form-control::placeholder {
  line-height: 20px;
  font-family: 'Cairo', Tahoma, Arial, sans-serif !important;
  font-size: 14px !important;
}

[dir="rtl"] input.form-control,
[dir="rtl"] textarea.form-control {
  font-family: 'Cairo', Tahoma, Arial, sans-serif !important;
  font-size: 14px !important;
}

[dir="rtl"] .message-textarea {
  padding: 15px 35px 15px 15px !important;
}

[dir="rtl"] .message-icon {
  left: auto;
  right: 15px;
}

/* Arabic-specific phone field styling */
[dir="rtl"] .fa-phone-alt.input-icon {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .contact-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-gap: 40px !important;
    gap: 40px !important;
  }
  .contact-form-section {
    order: 1 !important;
  }
  .contact-map-section {
    order: 2 !important;
  }
}

@media (max-width: 768px) {
  .navbar-toggler {
    display: flex;
    position: relative;
    z-index: 10001;
  }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: none;
    padding: 0 16px 24px 16px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    margin: 0 auto;
    max-width: 100%;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
  .navbar-collapse.show {
    display: flex;
    opacity: 1;
    max-height: 600px; /* or a value that fits your menu */
  }
  .mobile-menu-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: 150px;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-bottom: 0;
    gap: 24px;
    position: static;
    left: unset;
    transform: unset;
  }
  [dir="rtl"] .navbar-nav {
    align-items: flex-end;
    text-align: right;
  }
  .navbar-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 16px;
    margin-bottom: 0;
  }
  .contact-btn {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }
  .mobile-menu-actions {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mobile-menu-actions.ltr {
    flex-direction: row;
  }
  .mobile-menu-actions.rtl {
    flex-direction: row-reverse;
  }
  .mobile-menu-actions .language-toggle-btn,
  .mobile-menu-actions .contact-btn {
    width: auto;
    min-width: 120px;
    margin: 0;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.font-codec {
  font-family: var(--font-family);
}

.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

/* Insight Section */
.insight {
  padding: 80px 0px;
  margin-top: 20px;
}

.insight-header {
  text-align: center;
  margin-bottom: 10px;
}

.insight-main-title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 10px;
}

.insight-grid {
  display: inline;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.insight-card {
  background-color: rgb(243, 246, 241);
  border-radius: 32px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(110, 141, 85, 0.1), transparent);
  transition: left 0.6s ease;
}

.insight-card:hover::before {
  left: 100%;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(110, 141, 85, 0.2);
}

.insight-subtitle {
  color: #6e8d55;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 800;
  line-height: 140%;
  margin-bottom: .5rem !important;
  letter-spacing: 0.5px;
}

.insight-card-title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 800;
  line-height: 110%;
  margin-bottom: 20px;
}

.insight-card-text {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 670px;
  margin: 0 auto;
}

/* Enhanced Map Styling */
.leaflet-map {
  font-family: var(--font-family);
}

/* Custom Marker Styling */
.rafa-marker {
  background: transparent !important;
  border: none !important;
}

.marker-container {
  position: relative;
  width: 40px;
  height: 50px;
}

.marker-pin {
  position: absolute;
  top: 0;
  left: 76%;
  transform: translateX(-50%) rotate(-42deg);
  width: 30px;
  height: 30px;
  background: #6E8D55;
  border-radius: 15px 15px 15px 0;
  transform-origin: 50% 100%;
  animation: markerDrop .8s ease-out;
  box-shadow: 0 4px 12px rgba(110,141,85,.4);
}

.marker-pin::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
}

.marker-dot {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 8px;
  height: 8px;
  background: #6E8D55;
  border-radius: 50%;
}

.marker-pulse {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: rgba(110, 141, 85, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes markerDrop {
  0% {
    transform: translateX(-50%) translateY(-200px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translateX(-50%) scale(1.5);
    opacity: 0;
  }
}

.rafa-marker.zoomed-in .marker-pin {
  transform: translateX(-50%) scale(1.2);
}

/* Custom Popup Styling */
.rafa-popup .leaflet-popup-content-wrapper {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0;
  overflow: hidden;
}

.rafa-popup .leaflet-popup-content {
  margin: 0;
  padding: 0;
  width: 280px !important;
}

.rafa-popup .leaflet-popup-tip {
  background: white;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-popup {
  font-family: var(--font-family);
}

.custom-popup.rtl {
  direction: rtl;
  text-align: right;
}

.popup-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #6E8D55 0%, #5a7245 100%);
  color: white;
}

.company-logo {
  margin-right: 12px;
}

.popup-header .rtl .company-logo {
  margin-right: 0;
  margin-left: 12px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  background: white;
  color: #6E8D55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-family);
}

.company-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-family);
}

.company-info p {
  margin: 2px 0 0 0;
  font-size: 12px;
  opacity: 0.9;
  font-family: var(--font-family);
}

.popup-body {
  padding: 20px;
}

.location-info {
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.info-icon {
  margin-right: 8px;
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.custom-popup.rtl .info-icon {
  margin-right: 0;
  margin-left: 8px;
}

.info-text {
  font-family: var(--font-family);
  color: #333;
  font-size: 13px;
  line-height: 1.4;
}

.popup-actions {
  text-align: center;
}

.directions-btn {
  background: #6E8D55;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.directions-btn:hover {
  background: #5a7245;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(110, 141, 85, 0.3);
}

/* Map Controls Enhancement */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.leaflet-control-zoom a {
  background: white !important;
  border: none !important;
  color: #6E8D55 !important;
  font-size: 18px !important;
  font-weight: bold !important;
  border-radius: 6px !important;
  margin: 2px !important;
}

.leaflet-control-zoom a:hover {
  background: #6E8D55 !important;
  color: white !important;
}

/* Attribution Styling */
.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 6px !important;
  font-family: var(--font-family) !important;
  font-size: 11px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

.leaflet-control-attribution a {
  color: #6E8D55 !important;
}

/* Map Container Enhancement */
.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  border: 1px solid rgba(110, 141, 85, 0.1);
  pointer-events: none;
  z-index: 1000;
}

/* Responsive Map Enhancements */
@media (max-width: 768px) {
  .rafa-popup .leaflet-popup-content {
    width: 250px !important;
  }
  
  .popup-header {
    padding: 15px;
  }
  
  .popup-body {
    padding: 15px;
  }
  
  .company-info h3 {
    font-size: 16px;
  }
  
  .info-text {
    font-size: 12px;
  }
  
  .marker-pin {
    left: 76%;
    transform: translateX(-50%) rotate(-42deg);
    width: 25px;
    height: 30px;
    border-radius: 12px 12px 12px 0;
  }
  
  .marker-pin::before {
    top: 6px;
    left: 6px;
    width: 13px;
    height: 13px;
  }
  
  .marker-dot {
    top: 9px;
    left: 9px;
    width: 7px;
    height: 7px;
  }
  
  .marker-pulse {
    width: 35px;
    height: 35px;
  }
}

/* Form Messages Above Form */
.form-error-message,
.form-success-message {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 8px 15px;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  animation: slideDown 0.3s ease;
}

.form-error-message {
  background: #ffc107;
  color: #212529;
  border: 1px solid #ffc107;
}

.form-success-message {
  background: #28a745;
  color: white;
  border: 1px solid #28a745;
}

.error-close,
.success-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
  margin-left: 8px;
  padding: 0;
  line-height: 1;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hide Next.js Development Badge - Ultra Aggressive */
[data-nextjs-toast="true"],
[data-nextjs-toast-wrapper="true"],
[data-next-badge-root="true"],
[data-nextjs-toast],
[data-next-badge-root],
div[data-nextjs-toast="true"],
div[data-next-badge-root="true"],
.nextjs-toast,
[data-nextjs-dev-tools-button],
[data-next-badge],
[data-next-mark],
div[class*="nextjs-toast"],
div[style*="z-index: 2147483647"],
div[style*="bottom: 20px"][style*="left: 20px"],
div[data-nextjs-toast-wrapper],
div[data-next-badge-root][style*="--size: 2.25rem"],
button[data-nextjs-dev-tools-button],
button[aria-label*="Next.js"],
*[data-nextjs-toast="true"] *,
*[data-next-badge-root="true"] *,
/* Target any fixed positioned element in bottom left that looks like a badge */
div[style*="position: fixed"][style*="bottom"][style*="left"],
div[style*="position:fixed"][style*="bottom"][style*="left"],
button[style*="position: fixed"][style*="bottom"][style*="left"],
button[style*="position:fixed"][style*="bottom"][style*="left"],
/* Target small circular elements in bottom left */
div[style*="width: 36px"],
div[style*="height: 36px"],
div[style*="border-radius: 50%"],
/* Target elements with Next.js-like styling */
*[style*="background: rgb(0, 0, 0)"][style*="color: rgb(255, 255, 255)"],
*[style*="background:rgb(0,0,0)"][style*="color:rgb(255,255,255)"],
/* Ultra aggressive - target any suspicious bottom-left elements */
body > div[style*="position"],
body > div[style*="bottom"],
body > div[style*="left"],
body > button[style*="position"],
body > *[style*="z-index: 99"],
body > *[style*="z-index: 999"],
body > *[style*="z-index: 9999"],
body > *[data-nextjs],
/* NEW RULES - More aggressive targeting */
div[style*="position: fixed"][style*="bottom: 20px"][style*="left: 20px"],
div[style*="position:fixed"][style*="bottom:20px"][style*="left:20px"],
button[style*="border-radius: 50%"][style*="width: 36px"],
button[style*="border-radius:50%"][style*="width:36px"],
[data-nextjs-dev-banner],
[data-nextjs-dev-tools],
div[data-nextjs-dev-tools-button],
*[aria-label="Open Next.js Dev Tools"],
*[aria-label*="Next.js"],
/* Target any development-related elements */
*[class*="nextjs"],
*[id*="nextjs"],
*[data-*="nextjs"],
/* Target elements with specific dev-mode characteristics */
div[style*="z-index: 2147483647"][style*="position: fixed"],
button[style*="z-index: 2147483647"][style*="position: fixed"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  z-index: -1 !important;
  transform: scale(0) !important;
  max-width: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* Target any element in bottom-left corner */
body > div:last-child[style*="position"],
body > div[style*="position: fixed"][style*="bottom: 20px"],
body > div[style*="position:fixed"][style*="bottom:20px"],
body > *[style*="z-index: 9999"],
body > *[style*="z-index:9999"],
body > *[style*="z-index: 2147483647"],
body > *[style*="z-index:2147483647"],
/* Add more specific Next.js badge selectors */
div[data-nextjs-toast-wrapper="true"],
div[data-next-badge-root="true"],
button[data-nextjs-dev-tools-button="true"] {
  display: none !important;
}

/* Force hide any dynamically created bottom-left elements */
@keyframes hideNextJsBadge {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); display: none; }
}

/* Apply animation to potential badge elements */
body > div:last-child:not(#__next),
body > div[style*="position: fixed"]:not(#__next) {
  animation: hideNextJsBadge 0s infinite !important;
  display: none !important;
}

/* --- Enhanced Service Request Modal Styles --- */
.service-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.12);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.service-modal-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  max-width: 910px;
  width: 100%;
  max-height: 110vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  animation: slideInUp 0.4s ease-out;
  font-family: 'Codec Pro', sans-serif;
}

.service-modal-close {
  position: absolute;
  top: 52px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #222;
  cursor: pointer;
  z-index: 2200;
  transition: color 0.2s;
}
.service-modal-close:hover {
  color: #6e8d55;
}

.service-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 18px 0 8px 0;
  text-align: center;
}

.service-modal-subtitle {
  color: #444;
  font-size: 1.0rem;
  text-align: center;
  margin-bottom: 24px;
}

.service-selection {
  margin-bottom: 32px;
}
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  gap: 20px;
  margin-top: 12px;
}
.service-selection-card-new {
  border-radius: 16px;
  padding: 24px 16px 20px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FAFAFA;
  position: relative;
  min-width: 240px;
  min-height: 118px;
  justify-content: space-between;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.service-selection-card-new:hover {
  border-color: #6e8d55;
  box-shadow: 0 4px 12px rgba(110, 141, 85, 0.1);
}
.service-card-checkbox-top {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: block;
  overflow: hidden;
}
.service-card-checkbox-top input[type="checkbox"] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  aspect-ratio: 1/1 !important;
  border: 3px solid #6e8d55;
  border-radius: 50% !important;
  background: #fff;
  outline: none;
  cursor: pointer;
  position: static !important;
  margin: 0 auto;
  display: block;
  vertical-align: middle;
  box-sizing: border-box;
  object-fit: contain;
}
.service-card-checkbox-top input[type="checkbox"]:checked {
  background: #6e8d55;
  border: 3px solid #6e8d55;
}
.service-card-checkbox-top input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  position: absolute;
  left: 9px;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}
.service-card-title-bottom {
  font-family: 'Codec Pro', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #151713;
  margin: 0;
  line-height: 1.3;
  max-width: 160px;
}
.service-modal-form input, .service-modal-form textarea {
  background: #ffffff;
  border-radius: 8px;
  border: 1.5px solid #efefef;
  padding: 12px 12px 12px 38px;
  font-size: 12px;
  margin-bottom: 0;
}
.service-modal-form input:focus, .service-modal-form textarea:focus {
  border-color: #6e8d55;
  outline: none;
}
.service-modal-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

@media (max-width: 700px) {
  .service-modal-container {
    padding: 18px 4vw 18px 4vw;
    max-width: 98vw;
  }
  .service-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.form-section-title {
  font-family: 'Codec Pro', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #151713;
  margin-bottom: 16px;
  text-align: left;
}

.selection-title {
  font-family: 'Codec Pro', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #151713;
  margin-bottom: 16px;
}

.modal-btn {
  padding: 18px 28px;
  border-radius: 8px;
  font-family: 'Codec Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 120px;
}

.modal-btn-primary {
  background: #6e8d55;
  color: #fff;
}

.modal-btn-primary:disabled {
  background: #b1b3a4;
  cursor: not-allowed;
}

.modal-btn-secondary {
  background: #181914;
  color: #fff;
}

[dir="rtl"] .form-section-title {
  text-align: right;
}

.service-modal-error {
  color: #d32f2f;
  background: #fff0f0;
  border: 1.5px solid #d32f2f;
  border-radius: 8px;
  padding: 12px 18px;
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}
.service-modal-error .fa-exclamation-circle {
  color: #d32f2f;
  font-size: 1.3em;
}

[dir="rtl"] input[name="email"].form-control {
  overflow: visible !important;
}

@media (max-width: 768px) {
  .hero {
    border-radius: 0px 0px 31px 35px;
  }
  
  .why-us {
    border-radius: 35px;
  }
}

/* Fix z-index for all Leaflet popup elements to stay below navbar */
.leaflet-popup-pane {
  z-index: 50 !important;
}

.leaflet-popup {
  z-index: 50 !important;
}

.leaflet-popup-content-wrapper {
  z-index: 50 !important;
}

.leaflet-popup-tip {
  z-index: 50 !important;
}

.leaflet-popup-content {
  z-index: 50 !important;
}

.leaflet-map-pane {
  z-index: 1 !important;
}

.leaflet-overlay-pane {
  z-index: 2 !important;
}

.leaflet-shadow-pane {
  z-index: 3 !important;
}

.leaflet-marker-pane {
  z-index: 4 !important;
}

.leaflet-tooltip-pane {
  z-index: 5 !important;
}

.leaflet-popup-pane {
  z-index: 50 !important;
}

.leaflet-control-container {
  z-index: 60 !important;
}

.rafa-popup {
  z-index: 50 !important;
}

.custom-popup {
  z-index: 50 !important;
}

/* Ensure all Leaflet elements stay below navbar */
.leaflet-container * {
  z-index: 50 !important;
}

/* Override for controls to be slightly higher but still below navbar */
.leaflet-control-zoom,
.leaflet-control-attribution {
  z-index: 60 !important;
}


/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[13].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"app\\layout.tsx","import":"Inter","arguments":[{"subsets":["latin"]}],"variableName":"inter"} ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/55c55f0601d81cf3-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/26a46d62cd723877-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/97e0cb1ae144a2a9-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/581909926a08bbc8-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Inter Fallback';src: local("Arial");ascent-override: 90.44%;descent-override: 22.52%;line-gap-override: 0.00%;size-adjust: 107.12%
}.__className_e8ce0c {font-family: 'Inter', 'Inter Fallback';font-style: normal
}

