.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  height: 60px;
  max-width: 200px;
}
.header__logo-img {
  width: auto;
  height: 100%;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 150px;
    height: 50px;
  }
}
.header__logo picture {
  display: flex;
  height: 100%;
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    padding-top: 5rem;
  }
  .header__nav--active {
    right: 0;
  }
}
.header__menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    padding: 0 2rem;
  }
}
.header__menu-item {
  position: relative;
}
.header__menu-link {
  text-decoration: none;
  color: #0a2463;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.header__menu-link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: all 0.3s ease-in-out;
}
.header__menu-link:hover::after, .header__menu-link.active::after {
  width: 100%;
}
.header__language-switcher {
  margin-left: 1rem;
}
.header__language-switcher select {
  padding: 0.25rem;
  border: 1px solid #d4af37;
  border-radius: 4px;
  background: #ffffff;
  color: #0a2463;
  cursor: pointer;
}
.header__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0a2463;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: block;
  }
}

.banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/banner-bg.jpg") no-repeat center center/cover;
  color: #ffffff;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 0;
}
.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 36, 99, 0.8), rgba(212, 175, 55, 0.4));
  z-index: 0;
}
.banner__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.banner__title {
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.banner__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.banner__cta {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about {
  background: #f8f9fa;
}
.about__content {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about__content {
    flex-direction: column;
  }
}
.about__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__image img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.about__text {
  flex: 1;
}
.about__text p {
  margin-bottom: 1.5rem;
}
.about__intro {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0a2463;
}

.mission {
  background: #ffffff;
}
.mission__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.mission__icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}
.mission__statement {
  font-size: 1.2rem;
  line-height: 1.8;
}

.policy {
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  padding: 3rem 0;
}
.policy__content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(33, 37, 41, 0.08);
  padding: 2.5rem;
}
.policy__content p {
  margin-bottom: 1.5rem;
  text-align: left;
  color: #16181b;
  line-height: 1.7;
}
[dir=rtl] .policy__content p {
  text-align: right;
}
.policy__points {
  margin: 2.5rem 0;
  background: #fefefe;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  border-left: 4px solid #d4af37;
}
[dir=rtl] .policy__points {
  border-left: none;
  border-right: 4px solid #d4af37;
}
.policy__point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
  padding: 0.75rem;
  border-radius: 6px;
}
.policy__point:hover {
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(5px);
}
[dir=rtl] .policy__point:hover {
  transform: translateX(-5px);
}
.policy__point:hover .policy__point-icon {
  transform: scale(1.2);
  color: #b29126;
}
.policy__point:last-child {
  margin-bottom: 0;
}
.policy__point-icon {
  color: #d4af37;
  font-size: 1.4rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  order: 1;
  transition: all 0.3s ease-in-out;
  background: rgba(212, 175, 55, 0.1);
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.policy__point p {
  flex: 1;
  order: 2;
  margin-bottom: 0;
  font-size: 1.05rem;
}
.policy__conclusion {
  font-weight: 600;
  font-style: italic;
  border-top: 1px solid rgba(33, 37, 41, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  color: #0a2463;
}
.policy h2 {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.policy h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d4af37;
}

[dir=rtl] .policy__point {
  justify-content: flex-start;
}
[dir=rtl] .policy__point-icon {
  margin-right: 0;
  margin-left: 1rem;
  order: 2;
}
[dir=rtl] .policy__point p {
  order: 1;
}

@media (max-width: 768px) {
  .policy {
    padding: 2rem 0;
  }
  .policy__content {
    padding: 1.5rem;
  }
  .policy__points {
    padding: 1.2rem;
  }
  .policy__point {
    padding: 0.5rem;
  }
  .policy__point-icon {
    height: 2.2rem;
    width: 2.2rem;
    font-size: 1.2rem;
  }
  .policy__point p {
    font-size: 1rem;
  }
}
[dir=rtl] .policy__point {
  flex-direction: row-reverse;
}
[dir=rtl] .policy__point-icon {
  margin-right: 0;
  margin-left: 0.75rem;
}

.services {
  background: #ffffff;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.services__card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.services__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.services__card-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}
.services__card h3 {
  margin-bottom: 1rem;
}

.why-us {
  background: linear-gradient(rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.9)), url("../images/pattern-bg.jpg") center/cover;
  color: #ffffff;
}
.why-us h2 {
  color: #ffffff;
}
.why-us h2::after {
  background: #d4af37;
}
.why-us h3 {
  color: #d4af37;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.why-us__item {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}
.why-us__item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}
.why-us__number {
  width: 40px;
  height: 40px;
  background: #d4af37;
  color: #0a2463;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate--fade {
  animation: fadeIn 1s ease-out forwards;
}
.animate--slide-bottom {
  animation: slideInFromBottom 0.8s ease-out forwards;
}
.animate--slide-left {
  animation: slideInFromLeft 0.8s ease-out forwards;
}
.animate--slide-right {
  animation: slideInFromRight 0.8s ease-out forwards;
}
.animate--delay-1 {
  animation-delay: 0.2s;
}
.animate--delay-2 {
  animation-delay: 0.4s;
}
.animate--delay-3 {
  animation-delay: 0.6s;
}
.animate--delay-4 {
  animation-delay: 0.8s;
}
.animate--delay-5 {
  animation-delay: 1s;
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate][data-animate=fade] {
  transform: translateY(30px);
}
[data-animate][data-animate=left] {
  transform: translateX(-50px);
}
[data-animate][data-animate=right] {
  transform: translateX(50px);
}
[data-animate].animate {
  opacity: 1;
  transform: translate(0);
}

.contact__form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form__group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form__messages {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.form__messages--show {
  max-height: 200px;
  opacity: 1;
}
.form__messages--success {
  background: rgba(74, 147, 74, 0.1);
  color: #306030;
  border: 1px solid #4a934a;
}
.form__messages--error {
  background: rgba(130, 36, 10, 0.1);
  color: #3b1005;
  border: 1px solid #82240a;
}
.form__error {
  color: #82240a;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}
.form__error--show {
  display: block;
  animation: fadeIn 0.3s ease;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease-in-out;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

.btn {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.btn__loader {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.btn__loader svg {
  width: 100%;
  height: 100%;
  animation: spin 1s linear infinite;
}
.btn__loader svg circle {
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  fill: none;
}
.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background: #0a2463;
  color: #ffffff;
  padding: 3rem 0 0;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__logo {
  height: 50px;
  max-width: 180px;
  margin-bottom: 1rem;
}
.footer__logo-img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__links h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.footer__links ul {
  list-style: none;
}
.footer__links ul li {
  margin-bottom: 0.5rem;
}
.footer__links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer__links ul li a:hover {
  color: #d4af37;
  padding-left: 0.25rem;
}
.footer__contact h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer__contact p i {
  color: #d4af37;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, white 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
}
.error-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 30%), radial-gradient(circle at 80% 70%, rgba(10, 36, 99, 0.08) 0%, transparent 30%);
  z-index: 0;
}
.error-page__container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(10, 36, 99, 0.1);
  border: 1px solid rgba(10, 36, 99, 0.1);
}
.error-page__graphic {
  max-width: 200px;
  margin: 0 auto 2rem;
  position: relative;
}
.error-page__graphic img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(10, 36, 99, 0.2));
}
.error-page__graphic::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d4af37;
}
.error-page__title {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 800;
  color: #0a2463;
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.error-page__title span {
  color: #d4af37;
  position: relative;
  z-index: 1;
}
.error-page__title::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 15px;
  background: rgba(212, 175, 55, 0.2);
  z-index: 0;
}
.error-page__subtitle {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #0a2463;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.error-page__message {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #434b53;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.error-page__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.error-page--500 .error-page__title::after {
  animation: pulse 2s infinite alternate;
}
.error-page--500 .error-page__graphic {
  animation: float 6s ease-in-out infinite;
}
[dir=rtl] .error-page {
  text-align: right;
}
[dir=rtl] .error-page .error-page__title::after,
[dir=rtl] .error-page .error-page__graphic::after {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.2;
  }
  100% {
    transform: translateX(-50%) scaleX(1.2);
    opacity: 0.4;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@media (max-width: 768px) {
  .error-page {
    padding: 2rem 1rem;
  }
  .error-page__container {
    padding: 2rem 1.5rem;
  }
  .error-page__cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  .error-page__cta .btn {
    width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #212529;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 5rem 0;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #0a2463;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 4rem;
  height: 3px;
  background: #d4af37;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}
.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #d4af37;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background: #b29126;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn--outline {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.section {
  position: relative;
}

[dir=rtl] body, .rtl body {
  text-align: right;
}
[dir=rtl] .phone-number, .rtl .phone-number {
  direction: ltr;
  display: inline-block;
  unicode-bidi: embed;
}
[dir=rtl] .text-center h2::after, .rtl .text-center h2::after {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
[dir=rtl] .header__menu-link::after, .rtl .header__menu-link::after {
  left: auto;
  right: 0;
}
[dir=rtl] .header__container, .rtl .header__container {
  flex-direction: row-reverse;
}
[dir=rtl] .header__language-switcher, .rtl .header__language-switcher {
  margin-left: 0;
  margin-right: 1rem;
}
[dir=rtl] .policy__point, .rtl .policy__point {
  flex-direction: row-reverse;
}/*# sourceMappingURL=main.css.map */