@import url("https://fonts.googleapis.com/css2?family=Padauk:wght@400;700&display=swap");

:root {
  --main-color: #09666e;
  --second-color: #e3c2a3;
  --black-color: #000000;
  --white-color: #ffffff;

  --placeholder-color: #a1a1a1;
  --padding: 20px;
  --radius: 100px !important;
}

@font-face {
  font-family: "Playlist-script";
  src: url("../fonts/PlaylistFF/Playlist-Script.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul li {
  list-style: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
  font-family: "Padauk", sans-serif;
}

h1,
h2 {
  font-family: "Playlist-script", sans-serif !important;
}

[dir="rtl"] body {
  font-family: "Cairo", sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 4px;
}

.text-main {
  color: var(--main-color);
}

.bg-main {
  background-color: var(--main-color);
}

.btn-send {
  background: var(--second-color);
  color: var(--white-color);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(227, 194, 163, 0.204);
  transition: all 0.3s ease;
  cursor: pointer;

  i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  &:hover {
    background: var(--main-color);
    color: var(--white-color);
    box-shadow: 0 12px 30px rgba(227, 194, 163, 0.204);

    i {
      transform: translateX(5px);
    }
  }
}

[dir="rtl"] .btn-send {
  background: var(--second-color);
  color: var(--white-color);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(227, 194, 163, 0.204);
  transition: all 0.3s ease;
  cursor: pointer;

  i {
    font-size: 14px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  &:hover {
    background: var(--main-color);
    color: var(--white-color);
    box-shadow: 0 12px 30px rgba(227, 194, 163, 0.204);

    i {
      transform: rotate(180deg) translateX(5px);
    }
  }
}

.btn-more {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;

  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;

  color: var(--main-color);

  i {
    transform: rotate(0deg);
    transition: all 0.3s ease;
    margin-left: 10px;
  }

  &:hover {
    color: var(--main-color);

    i {
      transform: rotate(0deg) translateX(-5px);
    }
  }
}

.header-section {
  text-align: center;

  h2 {
    color: var(--main-color);
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 1 !important;

    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--second-color);
    }
  }

  p {
    color: var(--black-color);
    font-size: 18px;
  }
}

/* ================================
   SOCIAL ICONS
================================ */
.social-icon {
  inset-inline-start: 0 !important;
  margin-inline-start: 16px;
  margin-bottom: 50px;
  width: fit-content;
  height: fit-content;

  border-radius: 50px;
  z-index: 99999 !important;

  a {
    background: var(--second-color) !important;
    color: var(--white-color);
    border-radius: 6px;
    margin: 0.3rem;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    border: none;

    &:hover {
      background: var(--second-color) !important;
      color: var(--white-color);
      transform: scale(1.05);
      filter: brightness(1.1);
    }
  }
}

.back-to-top {
  position: fixed;
  bottom: 50px;
  inset-inline-end: 30px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--second-color) !important;
  color: var(--white-color);

  border-radius: 6px;

  font-size: 25px;
  text-decoration: none;
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  z-index: 998;
  cursor: pointer;

  &:hover {
    background: var(--second-color) !important;
    color: var(--white-color);
    transform: translateY(-5px) scale(1.05);
  }
}

.back-to-top.show {
  display: flex !important;
}

/* ================================
   LOADING
================================ */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;

  &.loaded {
    opacity: 0;
    visibility: hidden;
  }

  .loader-container {
    position: relative;
    width: 220px;
    height: 220px;

    img {
      width: 100%;
      height: 100%;
    }
  }
}

/* ================================
   NAVBAR
================================ */
.header {
  transition: all 0.3s ease;
  width: 100%;
}

/* ================================
   NAVBAR BASE
================================ */
.navbar {
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;
  box-shadow: none !important;
  background: var(--main-color) !important;

  /* ================================
     NAVBAR BRAND
  ================================ */
  .navbar-brand {
    img {
      transition: transform 0.3s ease;
    }

    &:hover img {
      transform: scale(1.05);
    }
  }

  /* ================================
     NAVBAR TOGGLER
  ================================ */
  .navbar-toggler {
    color: var(--white-color);

    &:focus {
      box-shadow: none;
    }
  }

  /* ================================
     NAVBAR COLLAPSE & NAV LINKS
  ================================ */
  .navbar-collapse {
    .navbar-nav {
      transition: all 0.4s ease;
    }

    .nav-link {
      color: var(--white-color);
      font-weight: 600;
      font-size: 18px;
      padding: 12px 20px;
      line-height: 4;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
      z-index: 1;

      &.active {
        box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
      }

      &:hover {
        &::before {
          width: 100%;
        }

        color: var(--second-color);
      }

      /* Active State Enhancement */
      &:active {
        transition: all 0.2s ease;
      }
    }
  }

  /* ================================
     LANGUAGE BUTTON
  ================================ */
  .btn-lang {
    background: var(--second-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 10px 34px;
    font-weight: 600;
    font-size: 16px;

    transition: all 0.3s ease;
    cursor: pointer;

    i {
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    &:hover {
      background: rgba(227, 194, 163, 0.8);

      i {
        transform: translateX(5px);
      }
    }
  }

  /* ================================
     DROPDOWN MENU
  ================================ */
  .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    background-color: var(--white-color);
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 0px;
    min-width: 280px;
    position: relative;
    z-index: 9;

    .dropdown-item {
      padding: 10px 20px;
      color: var(--black-color);
      font-size: 15px;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
      text-align: justify;



      &:hover {
        background-color: rgba(9, 102, 110, 0.08);
        color: var(--main-color);
        border-left-color: var(--main-color);
        padding-left: 25px;
      }

      &.fw-bold {
        font-weight: 700;
        color: var(--main-color);
        font-size: 16px;
        padding: 12px 20px 8px;
        margin-top: 8px;

        &:first-child {
          margin-top: 0;
        }
      }
    }

    .dropdown-divider {
      margin: 8px 0;
      border-color: rgba(9, 102, 110, 0.1);
    }
  }

  /* ================================
     DROPDOWN SUBMENU (MH-TECH STRUCTURE)
  ================================ */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu>.dropdown-menu {
    position: absolute;
    inset-inline-start: 100%;
    top: 0;
    display: none;
    min-width: 240px;
    z-index: 1001;
  }

  .dropdown-submenu:hover>.dropdown-menu {
    display: block;
  }

  .dropdown-submenu>.dropdown-item i {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .dropdown-submenu:hover>.dropdown-item i {
    transform: translateX(3px);
  }
}
[dir="rtl"] .navbar {
   .dropdown-submenu>.dropdown-item i {
    font-size: 12px;
    transition: transform 0.3s ease;
     transform:rotate(180deg);
  }

  .dropdown-submenu:hover>.dropdown-item i {
    transform: translateX(-5px) rotate(180deg);
  }
}
[dir="rtl"] .dropdown-item {
  padding: 10px 20px;
  color: var(--black-color);
  font-size: 15px;
  transition: all 0.3s ease;
  border-right: 3px solid transparent;
  border-left: none;
  text-align: justify;



  &:hover {
    background-color: rgba(9, 102, 110, 0.08);
    color: var(--main-color);
    border-right-color: var(--main-color) !important;
    border-left-color: transparent !important;
    padding-right: 25px;
  }

  &.fw-bold {
    font-weight: 700;
    color: var(--main-color);
    font-size: 16px;
    padding: 12px 20px 8px;
    margin-top: 8px;

        &:first-child {
          margin-top: 0;
        }
      }
    }
/* ================================
   FIXED NAVBAR STATE
================================ */
.fixed-top {
  transition: all 0.3s ease;

  .navbar {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    background-color: var(--white-color);
  }
}

/* ================================
   OFFCANVAS (MOBILE MENU)
================================ */
.offcanvas {
  background-color: var(--main-color) !important;
  height: 100vh;

  .btn-close {
    filter: brightness(0) invert(1);
  }

  z-index: 9999 !important;

  .offcanvas-body {
    padding-top: 20px;
    height: 100%;

    /* ================================
       MOBILE NAV LINKS
    ================================ */
    .navbar-nav {
      .nav-item {
        margin-bottom: 4px;

        .nav-link {
          padding: 12px 20px;
          color: var(--white-color) !important;
          font-weight: 600;
          font-size: 16px;
          transition: all 0.3s ease;
          border-radius: 8px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          position: relative;

          i {
            transition: transform 0.3s ease;
            font-size: 14px;
            margin-left: auto;
          }

          /* &[data-bs-toggle="collapse"] {
            &[aria-expanded="true"] {
              background-color: rgba(227, 194, 163, 0.15);
              color: var(--second-color) !important;

              i {
                transform: rotate(180deg);
                color: var(--second-color);
              }
            }
          } */

          &:hover {
            background-color: rgba(227, 194, 163, 0.1);
            color: var(--second-color) !important;
            padding-left: 25px;

            i {
              color: var(--second-color);
            }
          }

          &.active {
            background-color: rgba(227, 194, 163, 0.15);
            color: var(--second-color) !important;
            border-left: 3px solid var(--second-color);
            padding-left: 17px;
          }
        }
      }
    }

    /* ================================
       MOBILE DROPDOWN / COLLAPSE MENU
    ================================ */
    .collapse {
      margin-top: 8px;
      margin-left: 0;
      background-color: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      padding: 12px 0;
      transition: all 0.3s ease;
      border: 1px solid rgba(227, 194, 163, 0.2);
      box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);

      &.show {
        background-color: rgba(255, 255, 255, 0.12);
        border-color: rgba(227, 194, 163, 0.3);
      }

      ul {
        list-style: none;
        padding: 0;
        margin: 0;

        li {
          margin-bottom: 4px;

          strong {
            display: block;
            color: var(--second-color);
            font-size: 14px;
            font-weight: 700;
            padding: 10px 20px;
            margin-bottom: 6px;
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(227, 194, 163, 0.3);
            position: relative;
          }

          ul {
            padding-left: 0;
            margin-top: 4px;

            li {
              margin-bottom: 2px;

              .nav-link {
                padding: 10px 20px 10px 40px;
                color: rgba(255, 255, 255, 0.85) !important;
                font-size: 14px;
                font-weight: 500;
                transition: all 0.3s ease;
                position: relative;
                border-left: 2px solid transparent;
                border-radius: 4px;
                margin: 2px 8px;

                &:hover {
                  color: var(--second-color) !important;
                  background-color: rgba(227, 194, 163, 0.15);

                  padding-left: 45px;
                  transform: translateX(3px);

                  &::before {
                    opacity: 1;
                    transform: translateX(3px);
                  }
                }
              }
            }
          }
        }
      }
    }

    /* Dropdown Menu (if used) */
    .dropdown-menu {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      border-radius: 10px;
      padding: 8px 0;
      margin-top: 8px;
      min-width: 100%;
      position: relative;
      z-index: 9;

      .dropdown-item {
        padding: 12px 20px;
        color: var(--black-color);
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        position: relative;

        &::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          width: 0;
          background-color: var(--main-color);
          transition: width 0.3s ease;
        }

        &:hover {
          background-color: rgba(9, 102, 110, 0.08);
          color: var(--main-color);
          border-left-color: var(--main-color);
          padding-left: 25px;

          &::before {
            width: 3px;
          }
        }

        &.fw-bold {
          font-weight: 700;
          color: var(--main-color);
          font-size: 16px;
          padding: 14px 20px 10px;
          margin-top: 8px;
          border-top: 1px solid rgba(9, 102, 110, 0.1);
          background-color: rgba(9, 102, 110, 0.05);

          &:first-child {
            margin-top: 0;
            border-top: none;
          }
        }
      }

      .dropdown-divider {
        margin: 8px 0;
        border-color: rgba(9, 102, 110, 0.15);
        opacity: 0.5;
      }

      /* Nested Dropdown */
      .dropdown-submenu {
        .dropdown-menu {
          margin-top: 0;
          margin-left: 8px;
          border-left: 2px solid rgba(9, 102, 110, 0.1);
        }
      }
    }

    /* ================================
       CONTACT INFO
    ================================ */
    .list-contact {
      border: 1px solid rgba(139, 115, 85, 0.2);

      strong,
      span {
        color: var(--white-color) !important;
      }

      a {
        color: var(--white-color) !important;
        transition: color 0.3s ease;

        &:hover {
          color: var(--white-color) !important;
        }
      }

      .border-bottom {
        border-color: white !important;
      }
    }

    /* ================================
       SOCIAL ICONS
    ================================ */
    .header-social {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
      padding-top: 12px;
      border-top: 1px solid rgba(139, 115, 85, 0.2);

      .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        background: var(--second-color);
        color: var(--white-color);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 16px;

        &:hover {
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(139, 115, 85, 0.4);
          background: var(--second-color);
          color: var(--white-color) !important;
        }
      }
    }
  }
}

/* ================================
   HOME
================================ */

.hero {
  .hero-section {
    position: relative;
    background-color: var(--main-color);
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    overflow: hidden;

    .hero-content {
      position: relative;
      z-index: 1;

      h1 {
        font-size: 50px;
        font-weight: 800;
        line-height: 1.2;
        color: var(--white-color);
        margin-bottom: 20px;
      }

      h3 {
        color: var(--white-color);
        font-size: 28px;
        font-weight: 600;
      }

      p {
        color: var(--white-color);
        font-size: 18px;
        line-height: 1.8;
      }

      .lead {
        color: var(--white-color);
        font-weight: 600;
      }
    }

    .hero-image {
      width: 100%;
      height: 700px;
      border-top-left-radius: var(--radius);
      border-bottom-right-radius: var(--radius);
      border: 10px solid rgba(227, 194, 163, 0.6);
      position: relative;
      overflow: hidden;
      animation: glowPulse 3s ease-in-out infinite;
      box-shadow: 0 0 20px rgba(227, 194, 163, 0.4),
        0 0 40px rgba(227, 194, 163, 0.3), 0 0 60px rgba(227, 194, 163, 0.2);

      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        height: 720px;
        width: 100%;
        border: 10px solid rgba(227, 194, 163, 0.6);
        border-top-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
        animation: glowRotate 4s ease-in-out infinite;
      }

      &::after {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(90deg,
            transparent,
            rgba(227, 194, 163, 0.6),
            transparent);
        background-size: 200% 100%;
        border-radius: inherit;
        z-index: -1;
        animation: glowShimmer 2.5s ease-in-out infinite;
        opacity: 0.5;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
        filter: brightness(1.05);
      }

      &:hover {
        animation: glowPulseHover 1.5s ease-in-out infinite;
        box-shadow: 0 0 30px rgba(227, 194, 163, 0.6),
          0 0 60px rgba(227, 194, 163, 0.4), 0 0 90px rgba(227, 194, 163, 0.3);

        img {
          filter: brightness(1.1);
          transform: scale(1.02);
        }
      }
    }
  }

  .btn-send {
    background: rgba(227, 194, 163, 0.8);
    color: var(--white-color);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(227, 194, 163, 0.204);
    transition: all 0.3s ease;
    cursor: pointer;

    i {
      font-size: 14px;
      transform: rotate(0);
      transition: transform 0.3s ease;
    }

    &:hover {
      background: var(--second-color);
      color: var(--white-color);
      box-shadow: 0 12px 30px rgba(227, 194, 163, 0.204);

      i {
        transform: rotate(0);
      }
    }
  }

  .btn-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--white-color);
    color: var(--white-color);

    i {
      transform: rotate(0deg);
      margin-left: 10px;
    }

    &:hover {
      color: var(--white-color);
      background: var(--second-color);

      i {
        transform: rotate(0deg);
      }
    }
  }
}

[dir="rtl"] .btn-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--white-color);
  color: var(--white-color);

  i {
    transform: rotate(180deg);
    margin-left: 10px;
    transition: all 0.3s ease;
  }

  &:hover {
    color: var(--white-color);
    background: var(--second-color);

    i {
      transform: rotate(180deg) translateX(5px);
    }
  }
}

.hero-mobile {
  .hero-section-mobile {
    position: relative;
    background-color: var(--main-color);
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    overflow: hidden;

    .hero-content-mobile {
      position: relative;
      z-index: 1;

      h1 {
        font-size: 30px;
        font-weight: 800;
        line-height: 1.2;
        color: var(--white-color);
        margin-bottom: 20px;
      }

      h3 {
        color: var(--white-color) !important;
        font-size: 28px;
        font-weight: 600;
      }

      p {
        color: var(--white-color) !important;
        font-size: 18px;
        line-height: 1.8;
      }

      .lead {
        color: var(--white-color) !important;
        font-weight: 600;
      }
    }

    .hero-image-mobile {
      width: 100%;
      height: 400px;
      border-top-left-radius: var(--radius);
      border-bottom-right-radius: var(--radius);
      border: 10px solid rgba(227, 194, 163, 0.6);
      position: relative;
      overflow: hidden;
      animation: glowPulse 3s ease-in-out infinite;
      box-shadow: 0 0 20px rgba(227, 194, 163, 0.4),
        0 0 40px rgba(227, 194, 163, 0.3), 0 0 60px rgba(227, 194, 163, 0.2);

      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        height: 720px;
        width: 100%;
        border: 10px solid rgba(227, 194, 163, 0.6);
        border-top-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
        animation: glowRotate 4s ease-in-out infinite;
      }

      &::after {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(90deg,
            transparent,
            rgba(227, 194, 163, 0.6),
            transparent);
        background-size: 200% 100%;
        border-radius: inherit;
        z-index: -1;
        animation: glowShimmer 2.5s ease-in-out infinite;
        opacity: 0.5;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
        filter: brightness(1.05);
      }

      &:hover {
        animation: glowPulseHover 1.5s ease-in-out infinite;
        box-shadow: 0 0 30px rgba(227, 194, 163, 0.6),
          0 0 60px rgba(227, 194, 163, 0.4), 0 0 90px rgba(227, 194, 163, 0.3);

        img {
          filter: brightness(1.1);
          transform: scale(1.02);
        }
      }
    }
  }

  .btn-send {
    background: rgba(227, 194, 163, 0.8);
    color: var(--white-color);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(227, 194, 163, 0.204);
    transition: all 0.3s ease;
    cursor: pointer;

    i {
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    &:hover {
      background: var(--second-color);
      color: var(--white-color);
      box-shadow: 0 12px 30px rgba(227, 194, 163, 0.204);

      i {
        transform: translateX(5px);
      }
    }
  }

  .btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--white-color);
    color: var(--white-color);

    i {
      transform: rotate(0deg);
      margin-left: 10px;
    }

    &:hover {
      color: var(--white-color);
      background: var(--second-color);

      i {
        transform: rotate(0deg);
      }
    }
  }
}

.hero-pages {
  background: var(--main-color);
  position: relative;
  z-index: 1;

  .hero-content {
    h1 {
      color: var(--white-color);
    }

    .breadcrumb {
      .breadcrumb-item {
        color: var(--white-color);

        a {
          color: var(--second-color);
          font-weight: 500;
          font-size: 18px;
        }

        &.active {
          color: var(--white-color);
          font-weight: 500;
          font-size: 18px;
        }
      }
    }
  }
}

/* ================================
   ABOUT SECTION
================================ */
.about-section {
  .about-hero-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(9, 102, 110, 0.2);

    .about-hero-image {
      width: 100%;
      height: 100%;
      position: relative;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform 0.8s ease;
      }
    }

    .about-hero-content {
      background-color: var(--main-color);
      z-index: 2;
      width: 100%;
      height: 100%;
      padding: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 20px;
      color: var(--white-color);
      .about-badge-hero {
        display: inline-block;
        padding: 10px 25px;
        background: rgba(227, 194, 163, 0.95);
        color: var(--main-color);
        font-size: 13px;
        font-weight: 700;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
      }

      .about-title-hero {
        font-size: 42px;
        font-weight: 800;
        color: var(--white-color);
        line-height: 1.3;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        animation: fadeInUp 0.8s ease-out;
      }

      .about-subtitle-hero {
        font-size: 18px;
        line-height: 1.8;
        color: var(--white-color);
        font-weight: 400;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        animation: fadeInUp 0.8s ease-out 0.2s both;
      }

      .about-badge-hero {
        animation: fadeInUp 0.8s ease-out 0.1s both;
      }
    }

    &:hover {
      .about-hero-image img {
        transform: scale(1.1);
      }
    }
  }

  .about-content {
    .about-badge {
      display: inline-block;
      padding: 8px 20px;
      background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
      color: var(--white-color);
      font-size: 13px;
      font-weight: 600;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(9, 102, 110, 0.3);
    }

    .about-title {
      font-size: 38px;
      font-weight: 800;
      color: var(--main-color);
      line-height: 1.3;
      margin-bottom: 15px;
    }

    .about-subtitle {
      font-size: 18px;
      line-height: 1.8;
      color: #6c757d;
      font-weight: 400;
    }

    .about-card {
      background: #ffffff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;

      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(9, 102, 110, 0.15);
      }

      .about-icon-wrapper {
        width: 50px;
        height: 50px;
        background: var(--main-color);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white-color);
        font-size: 22px;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(9, 102, 110, 0.3);
        transition: all 0.3s ease;
      }

      &:hover .about-icon-wrapper {
        transform: scale(1.1);
      }

      .about-icon-wrapper img {
        width: 70%;
        height: 70%;
        object-fit: contain;
      }

      .about-card-title {
        color: var(--main-color);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
      }

      .about-card-text {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 0;
      }

      .specialization-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
        background: rgba(9, 102, 110, 0.05);
        border-radius: 10px;
        transition: all 0.3s ease;
        margin-bottom: 10px;

        &:hover {
          background: rgba(9, 102, 110, 0.1);
          transform: translateX(5px);
        }

        i {
          color: var(--main-color);
          font-size: 18px;
          margin-top: 2px;
          flex-shrink: 0;
        }

        span {
          color: #555;
          font-size: 15px;
          line-height: 1.6;
          font-weight: 500;
        }
      }
    }
  }
}

/* ================================
   SERVICES SECTION
================================ */
.services-section {
  .services-tabs-wrapper {
    position: relative;
  }

  .services-nav-tabs {
    border-radius: 12px;
    border: none;
    background: rgba(9, 101, 110, 0.03);
    position: relative;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px;
    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg,
          transparent 0%,
          rgba(9, 102, 110, 0.2) 50%,
          transparent 100%);
    }

    .nav-item {
      margin: 0;
      position: relative;

      .nav-link {
        border: none;
        background: transparent;
        color: var(--black-color);
        font-weight: 600;
        font-size: 16px;
        padding: 15px 25px;
        border-radius: 4px 4px 0 0;
        transition: all 0.3s ease;
        position: relative;
        margin: 0 5px;
        border-bottom: 3px solid transparent;

        &::before {
          content: "";
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 0;
          height: 3px;
          background: var(--main-color);
          transition: width 0.3s ease;
        }

        &:hover {
          color: var(--main-color);
          background: rgba(62, 128, 147, 0.2);
          transform: translateY(-2px);

          &::before {
            width: 100%;
          }
        }

        &.active {
          color: var(--main-color);
          background: rgba(62, 128, 147, 0.2);

          border-bottom-color: var(--main-color);

          &::before {
            width: 100%;
            background: var(--main-color);
          }

          &:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(9, 102, 110, 0.4);
          }
        }
      }
    }
  }

  /* Tab Content */
  .tab-content {
    position: relative;
    padding-top: 30px;

    .tab-pane {
      animation: fadeIn 0.5s ease-in-out;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: var(--white-color);
    background: var(--second-color);
    width: 50px;
    height: 50px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

    svg {
      display: none;
    }

    &:hover {
      background: var(--main-color);
      color: var(--white-color);
      box-shadow: 0 6px 20px rgba(9, 102, 110, 0.3);
      transform: scale(1.1);
    }
  }

  .service-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    cursor: pointer;
    position: relative;

    .service-image {
      >img {
        transition: all 0.3s ease;
        height: 350px !important;
      }

      &::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg,
            transparent 0%,
            rgba(227, 194, 163, 0.4) 100%);
        opacity: 0;
        z-index: 1;
        transition: all 0.3s ease;
        border-radius: 16px;
      }
    }

    .service-icon {
      background: var(--second-color);
      color: var(--white-color) !important;
      border-radius: 4px;
      border: 5px solid var(--white-color);
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      position: absolute;
      bottom: -35px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      overflow: hidden;
      z-index: 1;

      img {
        width: 40px !important;
        height: 40px !important;
        filter: brightness(0) invert(1);
      }

      &:hover {
        box-shadow: 0 8px 25px rgba(9, 102, 110, 0.15);
      }
    }

    .service-content {
      h4 {
        color: var(--main-color);
        font-size: 30px;
        line-height: 1.2;

        font-weight: 700;

        text-align: center;
        transition: color 0.3s ease;
      }

      p {
        text-align: center;
        font-size: 18px;
        /* line-height: 2; */
        color: #6c757d;
        padding-bottom: 20px;
        overflow: hidden;
        text-overflow: ellipsis;

        height: 50px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
      }
    }

    .btn-more {
      position: absolute;
      bottom: 0px;
      right: 50%;
      display: flex;
      align-items: center;
      justify-content: center !important;
      transform: translate(50%, 50%);
      background: var(--second-color);
      color: var(--white-color);
      padding: 15px 20px;
      border-radius: 5px;
      transition: all 0.3s ease;

      i {
        margin-left: 0;
      }

      &:hover {
        background: var(--main-color);
        color: var(--white-color);
        transform: translate(50%, 50%) scale(1.05);
      }
    }

    &:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(9, 102, 110, 0.15);
      border-color: rgba(9, 102, 110, 0.7);

      .service-image {
        img {
          transform: scale(1.05);
        }

        &::before {
          transform: scale(1.05);
          opacity: 1;
        }
      }

      h4 {
        color: var(--main-color);
      }

      i {
        transform: translateX(5px);
      }
    }
  }

  /* Services Swiper Styles */
}
[dir="rtl"] .services-section {
  .service-card{
    &:hover{
      .btn-more{
        i{
          transform: rotate(180deg) !important;
      }
    }
  }
  .btn-more {
      position: absolute;
      bottom: 0px;
      right: 50%;
      display: flex;
      align-items: center;
      justify-content: center !important;
      transform: translate(50%, 50%);
      background: var(--second-color);
      color: var(--white-color);
      padding: 15px 20px;
      border-radius: 5px;
      transition: all 0.3s ease;

      i {
        margin-left: 0;
      }

      &:hover {
        background: var(--main-color);
        color: var(--white-color);
        transform: translate(50%, 50%) scale(1.05);
      i{
        transform:rotate(180deg);
      }
      }
    }
}
[dir="rtl"] .swiper-button-next,
.swiper-button-prev {
  i {
    transform: rotate(180deg);
  }
}
}

/* ================================
   SERVICE DETAILS SECTION
================================ */
.service-details-section {
  background: linear-gradient(135deg,
      rgba(248, 249, 250, 0.5) 0%,
      rgba(255, 255, 255, 1) 100%);

  .service-details-content {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);





    h3 {
      padding: 20px 0;
      color: var(--main-color);
      font-size: 36px;
      font-weight: 700;
    }

    h4 {
      color: var(--main-color);
      font-size: 24px;
      font-weight: 700;
      margin-top: 30px;
    }

    p {
      color: #6c757d;
      font-size: 16px;
      line-height: 1.8;
    }

    ul {
      li {
        color: #6c757d;
        font-size: 16px;
        line-height: 1.8;
      }
    }
  }

  .service-sidebar {
    .sidebar-card {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;

      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(9, 102, 110, 0.15);
      }

      h4 {
        color: var(--main-color);
        font-size: 22px;
        font-weight: 700;
      }

      ul {
        li {
          padding: 10px 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);

          &:last-child {
            border-bottom: none;
          }

          i {
            color: var(--second-color);
          }

          a {
            color: #6c757d !important;
            transition: all 0.3s ease;

            &:hover {
              color: var(--main-color);
              padding-left: 10px;
            }
          }
        }
      }
    }
  }
}

.service-description {
  ul {
    li {
      margin-top: 10px;
      list-style: disc !important;

      font-size: 16px;
    }
  }
}

[dir="rtl"] .service-sidebar {
  .sidebar-card:nth-child(3) {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(9, 102, 110, 0.15);
    }

    h4 {
      color: var(--main-color);
      font-size: 22px;
      font-weight: 700;
    }

    ul {
      li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);

        &:last-child {
          border-bottom: none;
        }

        i {
          color: var(--second-color);
          transform: rotate(180deg);
        }

        a {
          color: #6c757d !important;
          transition: all 0.3s ease;

          span {
            margin: 0 10px;
          }

          &:hover {
            color: var(--main-color);
            padding-left: 10px;
          }
        }
      }
    }
   
  }
  .btn-send{

    i{
      transform: rotate(0deg) !important;
    }
  }
}

/* ================================================
   SCHEDULE SECTION STYLES
================================================ */
.schedule-section {
  position: relative;

  &::before {
    content: "";
    inset: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(70, 200, 236, 0.1) 0%,
        #ffffff 100%);
  }

  .schedule-table {
    background: #ffffff;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    thead {
      background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
      color: var(--white-color);

      th {
        padding: 20px 15px;
        border: none;
        font-size: 18px;
        text-align: center;
        vertical-align: middle;
      }
    }

    tbody {
      tr {
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);

        &:hover {
          background: rgba(9, 102, 110, 0.03);
          transform: scale(1.01);
        }

        td {
          padding: 20px 15px;
          text-align: center;
          vertical-align: middle;
          font-size: 16px;
          direction: ltr;
          

          &:first-child {
            background: rgba(9, 102, 110, 0.05);
            font-size: 18px;
            color: var(--main-color);
          }

          .btn {
            min-width: 150px;
            transition: all 0.3s ease;

            &:hover {
              box-shadow: 0 4px 15px rgba(9, 102, 110, 0.2);
            }
          }
        }
      }
    }
  }
}

.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

  .modal-header {
    background: linear-gradient(135deg,
        var(--main-color) 0%,
        #3e8193 100%) !important;
    color: var(--white-color);
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;

    .btn-close {
      filter: brightness(0) invert(1);
    }
  }

  .modal-body {
    padding: 30px;

    .list-time {
      li {
        background: rgba(9, 101, 110, 0.7) !important;
        color: var(--white-color) !important;
        padding: 10px 20px;
        border-radius: 5px;
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 600;
      }
    }

    .location-iframe-wrapper {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
  }
}

/* ================================================
   CLINICS PAGE STYLES
================================================ */
.clinics-section {
  .clinic-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;

    &:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(70, 200, 236, 0.15);
      border-color: rgba(70, 200, 236, 0.25);
    }

    .clinic-header {
      padding-bottom: 20px;
      border-bottom: 2px solid rgba(0, 0, 0, 0.08);
      margin-bottom: 20px;

      h4 {
        color: var(--main-color);
        font-size: 22px;
        font-weight: 700;
      }

      p {
        color: #6c757d;
        font-size: 15px;
      }
    }

    .clinic-body {
      .clinic-hours {
        h6 {
          color: #2c3e50;
          font-size: 16px;
        }

        ul {
          li {
            color: #495057;
            font-size: 15px;
          }
        }
      }
    }
  }

  .map-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  }
}

/* ================================================
   BLOGS PAGE STYLES
================================================ */
.blogs-section {
  .blog-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;


    &:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(70, 200, 236, 0.15);
    }

    .blog-image {
      position: relative;
      overflow: hidden;
      height: 280px;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        object-position: top;
      }

      .blog-date {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--main-color);
        color: white;
        padding: 10px 15px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(70, 200, 236, 0.3);

        span {
          display: block;
          font-weight: 700;

          &:first-child {
            font-size: 24px;
          }

          &:last-child {
            font-size: 14px;
          }
        }
      }
    }

    &:hover .blog-image img {
      transform: scale(1.1);
    }

    .blog-content {
      .blog-meta {
        .blog-category {
          display: inline-block;
          background: rgba(227, 194, 163, 0.2);
          color: var(--main-color);
          padding: 5px 15px;
          border-radius: 20px;
          font-size: 13px;
          font-weight: 600;
        }
      }

      h4 {
        color: #2c3e50;
        font-size: 20px;
        font-weight: 700;
        transition: color 0.3s ease;
      }

      &:hover h4 {
        color: var(--main-color);
      }

      p {
        color: #6c757d;
        font-size: 15px;
        line-height: 1.7;
      }

      .btn-read-more {
        color: var(--main-color);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        width: fit-content;
        display: flex;
        align-items: center;

        &:hover {
          color: #3e8193;
          transform: translateX(-5px);
        }
      }
    }
  }
}

[dir="rtl"] .btn-read-more {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
  display: flex;
  align-items: center;

  i {
    transform: rotate(180deg) translateX(5px);

  }

  &:hover {
    color: #3e8193;
    transform: translateX(-5px);
  }
}

/* ================================================
   BLOG DETAILS PAGE STYLES
================================================ */
.blog-details-section {
  background: linear-gradient(135deg,
      rgba(248, 249, 250, 0.5) 0%,
      rgba(255, 255, 255, 1) 100%);

  .blog-details-content {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    .blog-details-image {
      position: relative;
      overflow: hidden;
      border-radius: 10px;

      img {
        transition: transform 0.6s ease;
      }

      &:hover img {
        transform: scale(1.02);
      }
    }

    .blog-meta-info {
      i {
        color: var(--main-color);
      }

      .blog-category {
        display: inline-block;
        background: rgba(9, 102, 110, 0.1);
        color: var(--main-color);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
      }
    }

    h2 {
      color: var(--main-color);
      font-size: 36px;
      font-weight: 700;
      line-height: 1.3;
    }

    h4 {
      color: var(--main-color);
      font-size: 24px;
      font-weight: 700;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .blog-content {
      p {
        color: #6c757d;
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 20px;
      }

      ul {
        li {
          color: #6c757d;
          font-size: 16px;
          line-height: 1.8;
        }
      }
    }

    .blog-tags {
      .badge {
        font-size: 14px;
        font-weight: 500;
        padding: 8px 16px;
      }
    }

    .blog-share {
      .social-share-btn {
        width: 45px;
        height: 45px;
        background: var(--main-color);
        border-radius: 50%;
        color: var(--white-color);
        transition: all 0.3s ease;
        font-size: 18px;

        &:hover {
          transform: translateY(-5px) scale(1.1);
          box-shadow: 0 8px 25px rgba(9, 102, 110, 0.4);
        }

        &.fab.fa-whatsapp:hover {
          background: #25d366;
        }

        &.fab.fa-facebook-f:hover {
          background: #1877f2;
        }

        &.fab.fa-twitter:hover {
          background: #1da1f2;
        }

        &.fab.fa-linkedin-in:hover {
          background: #0077b5;
        }
      }
    }
  }

  .blog-sidebar {
    .sidebar-card {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;

      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(9, 102, 110, 0.15);
      }

      h4 {
        color: var(--main-color);
        font-size: 22px;
        font-weight: 700;
      }

      .form-control {
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 12px 15px;
        transition: all 0.3s ease;

        &:focus {
          border-color: var(--main-color);
          box-shadow: 0 0 0 0.2rem rgba(9, 102, 110, 0.25);
        }
      }

      .btn-primary {
        background: var(--main-color);
        border: none;
        border-radius: 10px;
        padding: 12px 20px;

        &:hover {
          background: #3e8193;
        }
      }

      ul {
        li {
          a {
            color: #6c757d;
            transition: all 0.3s ease;

            &:hover {
              color: var(--main-color);
            }

            h6 {
              color: #2c3e50;
              font-size: 15px;
              font-weight: 600;
              transition: color 0.3s ease;
            }

            &:hover h6 {
              color: var(--main-color);
            }
          }

          .badge {
            background: var(--main-color);
            font-size: 12px;
            font-weight: 500;
          }
        }
      }
    }
  }

  .blog-details-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);

    .blog-featured-image {
      img {
        transition: transform 0.6s ease;
      }

      &:hover img {
        transform: scale(1.02);
      }
    }

    .blog-meta-info {
      .blog-meta-item {
        display: flex;
        align-items: center;
        font-size: 14px;

        i {
          color: var(--main-color);
        }

        .blog-category {
          display: inline-block;
          background: rgba(70, 200, 236, 0.1);
          color: var(--main-color);
          padding: 5px 15px;
          border-radius: 20px;
          font-size: 13px;
          font-weight: 600;
        }
      }
    }

    .blog-title {
      color: #2c3e50;
      font-size: 32px;
      line-height: 1.4;
    }

    .blog-content {
      color: #495057;
      font-size: 16px;
      line-height: 1.9;

      h3 {
        color: var(--main-color);
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
      }

      p {
        margin-bottom: 20px;
      }

      .blog-list {
        list-style: none;
        padding: 0;

        li {
          padding: 10px 0;
          padding-right: 30px;
          position: relative;

          &::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 0;
            color: var(--main-color);
          }

          strong {
            color: #2c3e50;
          }
        }
      }

      .blog-quote {
        background: linear-gradient(135deg,
            rgba(70, 200, 236, 0.05) 0%,
            rgba(70, 200, 236, 0.1) 100%);
        border-right: 4px solid var(--main-color);
        border-radius: 10px;
        padding: 30px;
        margin: 40px 0;

        .quote-content {
          position: relative;

          .quote-icon {
            font-size: 40px;
            color: var(--main-color);
            opacity: 0.3;
            position: absolute;
            top: -10px;
            right: -10px;
          }

          .quote-text {
            font-size: 18px;
            font-style: italic;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
          }

          .quote-author {
            color: var(--main-color);
            font-weight: 600;
            margin: 0;
          }
        }
      }
    }

    .blog-share {
      .share-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 18px;

        &.share-facebook {
          background: #1877f2;
        }

        &.share-twitter {
          background: #1da1f2;
        }

        &.share-linkedin {
          background: #0077b5;
        }

        &.share-whatsapp {
          background: #25d366;
        }

        &:hover {
          transform: translateY(-5px) scale(1.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
      }
    }
  }

  .blog-sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;

    .author-card {
      .author-avatar {
        img {
          border: 4px solid rgba(70, 200, 236, 0.2);
        }
      }

      h4 {
        color: #2c3e50;
      }
    }

    h4 {
      color: #2c3e50;
      font-size: 20px;
    }

    .related-posts {
      .related-post-item {
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);

        &:last-child {
          border-bottom: none;
          padding-bottom: 0;
        }

        h6 {
          font-size: 14px;
          line-height: 1.5;

          a {
            color: #2c3e50;
            transition: color 0.3s ease;

            &:hover {
              color: var(--main-color);
            }
          }
        }

        img {
          transition: transform 0.3s ease;
        }

        &:hover img {
          transform: scale(1.1);
        }
      }
    }
  }
}

/* ================================================
   CONTACT PAGE STYLES
================================================ */
.contact-section {
  background: linear-gradient(135deg,
      rgba(9, 101, 110, 0.1) 0%,
      rgba(255, 255, 255, 1) 100%);

  .contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    .form-control {
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 12px 15px;
      transition: all 0.3s ease;

      &:focus {
        border-color: var(--main-color);
        box-shadow: 0 0 0 0.2rem rgba(9, 102, 110, 0.25);
      }
    }

    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(70, 200, 236, 0.2);

    h3 {
      color: var(--main-color);
      text-transform: uppercase;
    }

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

      label {
        color: var(--main-color);
        font-weight: 600;
        margin-bottom: 8px;
      }

      .form-control {
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 12px 15px;
        transition: all 0.3s ease;

        &:focus {
          border-color: var(--main-color);
          box-shadow: 0 0 0 0.2rem rgba(70, 200, 236, 0.25);
        }
      }

    }

    .btn-send {
      i {
        transform: rotate(0);
      }
    }
  }

  .contact-info-card {
    background: #ffffff;
    border-radius: 10px !important;
    transition: all 0.3s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(9, 102, 110, 0.15) !important;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: var(--main-color);
      border-radius: 6px;
      color: var(--white-color);
      font-size: 20px;
      flex-shrink: 0;
    }
  }

  .contact-social {
    background: #ffffff;
    border-radius: 10px !important;

    .social-link {
      width: 45px;
      height: 45px;
      background: var(--main-color);
      border-radius: 6px;
      color: var(--white-color);
      transition: all 0.3s ease;

      &:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 25px rgba(9, 102, 110, 0.4);
      }
    }
  }

  .contact-info-card {
    h3 {
      color: var(--main-color);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 25px;

      .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--main-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(70, 200, 236, 0.3);
      }

      .contact-details {
        flex: 1;

        h5 {
          color: #2c3e50;
          font-size: 16px;
          margin-bottom: 8px;
        }

        a {
          color: var(--main-color);
          transition: color 0.3s ease;

          &:hover {
            color: #3e8193;
          }
        }

        p {
          color: #6c757d;
          font-size: 15px;
          line-height: 1.7;
        }
      }
    }

    .contact-social {
      .social-link {
        width: 45px;
        height: 45px;
        background: var(--main-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(70, 200, 236, 0.3);

        &:hover {
          transform: translateY(-5px) scale(1.1);
          box-shadow: 0 8px 25px rgba(70, 200, 236, 0.4);
        }
      }
    }
  }

  .clinics-quick-access {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);

    .clinic-quick-item {
      padding: 20px;
      background: #fff;
      border-radius: 15px;
      transition: all 0.3s ease;

      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(70, 200, 236, 0.15);
      }

      i {
        color: var(--main-color);
      }

      h5 {
        color: #2c3e50;
        font-size: 18px;
      }

      p {
        color: #6c757d;
        font-size: 14px;
      }
    }
  }
}

/* ================================
   FOOTER
================================ */
footer {
  position: relative;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
  }

  .footer-title {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      inset-inline-start: 0;
      bottom: -8px;
      width: 20px;
      height: 2px;
      background-color: var(--second-color);
      transition: width 0.3s ease;
    }
  }

  p {
    color: var(--white-color) !important;
  }

  .footer-text {
    line-height: 1.8;
    color: var(--white-color) !important;
  }

  .footer-list,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-list {
    li {
      margin-bottom: 12px;
    }
  }

  .footer-link {
    color: var(--white-color);
    text-decoration: none;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;

    &::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background-color: var(--second-color);
      transition: width 0.3s ease;
    }

    &:hover {
      color: var(--second-color);
      padding-left: 6px;

      &::before {
        width: 100%;
      }
    }
  }

  .footer-contact {
    li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: var(--white-color);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;

      &:hover {
        color: var(--second-color);
      }
    }
  }

  .footer-social {
    margin-top: 16px;
    display: flex;
    gap: 12px;

    width: fit-content;

    a {
      width: 38px;
      height: 38px;
      border-radius: 6px;
      background: rgba(54, 174, 185, 0.488);
      color: var(--white-color);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;

      &:hover {
        background: var(--second-color);
        color: var(--white-color);
        transform: scale(1.1);
      }
    }
  }

  .footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 40px 0 20px;
  }

  .copyright {
    p {
      margin: 0;
      font-size: 18px;
      color: var(--white-color);
    }

    a {
      color: var(--header-color);
      text-decoration: none;

      &:hover {
        color: var(--second-color);
      }
    }
  }
}

/* ================================================
   ANIMATIONS
================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(227, 194, 163, 0.4),
      0 0 40px rgba(227, 194, 163, 0.3), 0 0 60px rgba(227, 194, 163, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(227, 194, 163, 0.6),
      0 0 60px rgba(227, 194, 163, 0.4), 0 0 90px rgba(227, 194, 163, 0.3);
  }
}

@keyframes glowPulseHover {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(227, 194, 163, 0.6),
      0 0 60px rgba(227, 194, 163, 0.4), 0 0 90px rgba(227, 194, 163, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(227, 194, 163, 0.8),
      0 0 80px rgba(227, 194, 163, 0.6), 0 0 120px rgba(227, 194, 163, 0.4);
  }
}

@keyframes glowRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.6;
  }
}

@keyframes glowShimmer {
  0% {
    background-position: -200% 0;
    opacity: 0.3;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    background-position: 200% 0;
    opacity: 0.3;
  }
}
