@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --main-color: #46c7ec;
  --second-color: #ec1e23;
  --black-color: #000000;
  --white-color: #ffffff;
  --third-color: #7ec141;
  --background-text: linear-gradient(135deg,
      var(--main-color) 0%,
      #4ea2b9 60%,
      var(--third-color) 100%);
  --background-text-hover: linear-gradient(-135deg,
      var(--main-color) 0%,
      #4ea2b9 60%,
      var(--third-color) 100%);
  --background-btn: linear-gradient(135deg,
      var(--second-color) 0%,
      #c23a3c 100%);
  --background-btn-hover: linear-gradient(-135deg,
      var(--second-color) 0%,
      #c23a3c 100%);
  --placeholder-color: #a1a1a1;
  --padding: 20px;
  --radius: 24px;
}

* {
  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: "Open Sans", sans-serif;
}

[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(--background-btn);
  color: var(--white-color);
  padding: 14px 32px !important;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 90, 150, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;

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

  &:hover {
    background: var(--background-btn-hover);
    color: var(--white-color);
    box-shadow: 0 12px 30px rgba(0, 90, 150, 0.3);

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



.btn-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px !important;
  background: rgba(70, 200, 236, 0.1);
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  color: var(--main-color);

  i {
    transform: rotate(0deg);
  }

  &:hover {
    color: var(--background-btn-hover);

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

.btn-hero-primary {
  background: var(--background-btn);
  color: var(--white-color);
  padding: 12px 32px !important;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(236, 30, 35, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;

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

  &:hover {
    background: var(--background-btn-hover);
    color: var(--white-color);
    box-shadow: 0 12px 30px rgba(236, 30, 35, 0.3);
    transform: translateY(-2px);

    i {
      transform: translateX(-3px);
    }
  }
}

.btn-hero-outline {
  background: transparent;
  color: var(--main-color);
  padding: 12px 32px !important;
  border: 2px solid var(--main-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;

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

  &:hover {
    background: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
    box-shadow: 0 8px 24px rgba(48, 137, 162, 0.2);
    transform: translateY(-2px);

    i {
      transform: translateX(-3px);
    }
  }
}
[dir="ltr"] {
  .btn-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px !important;
    background: rgba(70, 200, 236, 0.1);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    color: var(--main-color);
  
    i {
      transform: rotate(180deg);
    }
  
    &:hover {
      color: var(--background-btn-hover);
  
      i {
        transform: rotate(180deg);
      }
    }
  }
  .btn-hero-outline {
    background: transparent;
    color: var(--main-color);
    padding: 12px 32px !important;
    border: 2px solid var(--main-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
  
    i {
      font-size: 14px;
      transition: transform 0.3s ease;
      transform: rotate(180deg);
    }
  
    &:hover {
      background: var(--main-color);
      color: var(--white-color);
      border-color: var(--main-color);
      box-shadow: 0 8px 24px rgba(48, 137, 162, 0.2);
      transform: translateY(-2px);
  
      i {
        transform: translateX(3px) rotate(180deg);

      }
    }
  }
}
.header-section {
  h2 {
    background: var(--background-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  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;
  z-index: 999;
  border-radius: 50px;

  a {
    background: var(--background-btn) !important;
    color: var(--white-color);
    border-radius: 50px;
    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(--background-btn-hover) !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(--background-btn) !important;
  color: var(--white-color);

  border-radius: 50px;

  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(--background-btn-hover) !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: 300px;
    height: 300px;

  }

  .pulse-circle {
    position: relative;

    img {
      width: 250px !important;
      height: 250px !important;
    }



  }
}

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

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

  .container-fluid {
    transition: all 0.3s ease;
    z-index: 1000;
  }

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

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

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

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

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

    .nav-link {
      color: var(--black-color);
      font-weight: 600;
      font-size: 18px;
      padding: 12px 20px;

      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(--third-color) !important;
      }

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

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

    transition: all 0.3s ease;
    cursor: pointer;

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

    &:hover {
      background: var(--background-btn-hover);

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

/* ================================
   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 {
  border-right: 4px solid var(--third-color) !important;
  background-color: var(--white-color) !important;
  height: 100vh;
  z-index: 9999 !important;

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

    /* ================================
       MOBILE NAV LINKS
    ================================ */
    .navbar-nav {
      .nav-item {
        .nav-link {
          padding: 12px 0;
          color: var(--black-color) !important;
          font-weight: 600;
          font-size: 16px;
          transition: all 0.3s ease;

          &:hover {
            border-left: 2px solid var(--second-color);
            color: var(--third-color) !important;
            transform: translateY(-2px);
            width: 100% !important;
            padding: 12px 24px;
          }

          &.active {
            width: 100% !important;
            padding: 12px 24px;
            background: linear-gradient(90deg,
                rgba(254, 0, 43, 0.15) 0%,
                transparent 100%);
            border-left: 2px solid var(--second-color);
          }
        }
      }
    }

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

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

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

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

      .border-bottom {
        border-color: rgba(139, 115, 85, 0.2) !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: 50px;
        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: linear-gradient(135deg,
        rgba(70, 200, 236, 0.3) 0%,
        #ffffff 100%);
    min-height: calc(100vh - 122px);
    display: flex;
    align-items: end;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle,
          rgba(70, 200, 236, 0.05) 0%,
          transparent 70%);
      animation: gentlePulse 8s ease-in-out infinite;
      pointer-events: none;
    }

    .hero-content {
      animation: fadeInUp 1s ease-out 0.3s both;
      position: relative;
      z-index: 2;

      h1 {
        font-size: 60px;
        font-weight: 800;
        line-height: 1.2;
        background: var(--background-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease-out 0.5s both;
      }

      h2 {
        color: var(--main-color);
        font-size: 28px;
        font-weight: 600;
        animation: fadeInUp 1s ease-out 0.7s both;
      }

      p {
        color: var(--black-color);
        font-size: 18px;
        line-height: 1.8;
        animation: fadeInUp 1s ease-out 0.9s both;
      }

      .lead {
        color: var(--main-color);
        font-weight: 600;
        animation: fadeInUp 1s ease-out 1.1s both;
      }
    }

    .hero-image-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg,
          var(--main-color) 0%,
          #4ea2b9 40%,
          var(--third-color) 100%);
      border-radius: 500px;
      height: 640px;
      width: 640px;
      outline: 10px solid rgba(70, 200, 236, 0.3);
      overflow: hidden;
      animation: fadeInScale 1.2s ease-out 0.4s both;
      position: relative;
      z-index: 1;

      &::after {
        content: "";
        position: absolute;
        inset: -5px;
        border-radius: 500px;
        background: linear-gradient(135deg,
            rgba(70, 200, 236, 0.3) 0%,
            rgba(70, 200, 236, 0.4) 50%,
            rgba(70, 200, 236, 0.7) 100%);
        animation: gentleRotate 10s linear infinite;
        z-index: -1;
        opacity: 0.7;
      }

      .hero-image {
        display: flex;
        align-items: end;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;

        img {
          height: 620px;
          width: 620px;
          object-fit: contain;
          transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          z-index: 2;
          animation: gentleFloat 4s ease-in-out infinite;

          &:hover {
            transform: scale(1.02);
            animation-play-state: paused;
          }
        }
      }
    }
  }
}

.hero-mobile {
  position: relative;
  background: linear-gradient(135deg, rgba(70, 200, 236, 0.3) 0%, #ffffff 100%);
  height: 100%;
  display: flex;
  align-items: end;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(70, 200, 236, 0.05) 0%,
        transparent 70%);
    animation: gentlePulse 8s ease-in-out infinite;
    pointer-events: none;
  }

  .hero-section-mobile {
    position: relative;
    z-index: 2;

    .hero-image-wrapper-mobile {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg,
          var(--main-color) 0%,
          #4ea2b9 40%,
          var(--third-color) 100%);
      border-radius: 500px;
      height: 380px;
      width: 380px;
      outline: 10px solid rgba(70, 200, 236, 0.2);
      overflow: hidden;
      animation: fadeInScale 1.2s ease-out 0.4s both;
      position: relative;
      z-index: 1;

      &::after {
        content: "";
        position: absolute;
        inset: -5px;
        border-radius: 500px;
        background: linear-gradient(135deg,
            rgba(70, 200, 236, 0.3) 0%,
            rgba(70, 200, 236, 0.1) 50%,
            rgba(70, 200, 236, 0.5) 100%);
        animation: gentleRotate 10s linear infinite;
        z-index: -1;
        opacity: 0.6;
      }

      .hero-image-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;

        img {
          height: 365px;
          width: 100%;
          object-fit: contain;
          transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          z-index: 2;
          animation: gentleFloat 4s ease-in-out infinite;

          &:hover {
            transform: scale(1.02);
            animation-play-state: paused;
          }
        }
      }
    }

    .hero-content-mobile {
      animation: fadeInUp 1s ease-out 0.3s both;

      h1 {
        font-size: 32px;
        font-weight: 800;
        background: var(--background-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 15px;
        animation: fadeInUp 1s ease-out 0.5s both;
      }

      h2 {
        color: var(--main-color);
        font-size: 20px;
        font-weight: 600;
        animation: fadeInUp 1s ease-out 0.7s both;
      }

      p {
        color: var(--black-color);
        font-size: 16px;
        line-height: 1.8;
        animation: fadeInUp 1s ease-out 0.9s both;
      }

      .lead {
        color: var(--main-color);
        font-weight: 600;
        animation: fadeInUp 1s ease-out 1.1s both;
      }
    }
  }
}

.hero-pages {
  background: linear-gradient(180deg, #ffffff 0%, rgba(36, 197, 241, 0.1) 100%);
  z-index: 1 !important;

  .hero-content {
    h1 {
      background: var(--background-text-hover);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .breadcrumb {
      .breadcrumb-item {
        a {
          color: var(--placeholder-color);
          font-weight: 500;
          font-size: 18px;
        }

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

[dir="rtl"] .hero-pages {
  background: linear-gradient(180deg, #ffffff 0%, rgba(36, 197, 241, 0.1) 100%);

  .hero-content {
    h1 {
      background: var(--background-text-hover);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .breadcrumb-item+.breadcrumb-item::before {
      float: none !important;
    }
  }
}

/* ================================
   ABOUT US
================================ */

.about-section {
  position: relative;
  overflow: hidden;

  .about-image-wrapper {
    position: relative;
    z-index: 1;

    .about-image-main {
      position: relative;
      overflow: hidden;

      box-shadow: 0 20px 60px rgba(70, 200, 236, 0.2);

      img {
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100% !important;
        height: 680px;
        object-fit: cover;
        display: block;
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

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

  .about-image {
    position: relative;

    .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 200px;
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

      &.image-left {
        width: 250px;
        height: 750px;

        z-index: 2;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2),
          0 0 0 8px rgba(255, 255, 255, 0.8),
          0 0 0 12px rgba(241, 248, 255, 0.9);

        &:hover {
          width: 350px;
          border-radius: 50px;
          z-index: 3;
        }
      }

      &.image-right {
        width: 250px;
        height: 750px;

        z-index: 1;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2),
          0 0 0 8px rgba(255, 255, 255, 0.8),
          0 0 0 12px rgba(241, 248, 255, 0.9);

        &:hover {
          width: 350px;
          border-radius: 50px;
          z-index: 3;
        }
      }

      .about-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

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

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

    .about-badge {
      display: inline-block;
      padding: 10px 25px;
      background: var(--main-color);
      color: white;
      font-size: 14px;
      font-weight: 600;
      border-radius: 50px;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(70, 200, 236, 0.3);
      transition: all 0.3s ease;

      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(70, 200, 236, 0.4);
      }
    }

    .about-title {
      font-size: 42px;
      font-weight: 800;
      color: var(--main-color);
      line-height: 1.3;
      margin-bottom: 25px;
      background: var(--background-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .about-description {
      font-size: 18px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 30px;
    }

    .about-description-content {
      p {
        font-size: 17px;
        line-height: 1.9;
        color: #555;
        text-align: justify;
      }

      h4 {
        color: var(--main-color);
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(70, 200, 236, 0.2);
      }
    }

    .about-timeline {
      position: relative;
      padding-right: 30px;

      &::before {
        content: "";
        position: absolute;
        right: 15px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg,
            var(--main-color) 0%,
            rgba(70, 200, 236, 0.3) 100%);
      }
    }
  }
}

/* ================================================
   ABOUT PAGE STYLES
================================================ */
.about-page-section {
  background: linear-gradient(135deg,
      rgba(70, 200, 236, 0.01) 0%,
      #ffffff 100%);

  .about-title {
    background: var(--background-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .about-page-image-wrapper {
    position: relative;
    overflow: visible;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(70, 200, 236, 0.2);

    img {
      transition: transform 0.6s ease;
      width: 100%;
      height: 500px;
      object-fit: contain;
      display: block;
      border-radius: 20px;

      &:hover {
        transform: scale(1.03);
      }
    }
  }

  .info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;

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

      &::before {
        transform: scaleX(1);
      }
    }

    .info-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 28px;
      box-shadow: 0 8px 25px rgba(70, 200, 236, 0.25);
      transition: all 0.4s ease;
      position: relative;

      &::after {
        content: "";
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
        opacity: 0.2;
        z-index: -1;
        transition: all 0.4s ease;
      }
    }

    &:hover .info-icon {
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 12px 35px rgba(70, 200, 236, 0.4);

      &::after {
        transform: scale(1.3);
        opacity: 0.1;
      }
    }

    h5 {
      color: #2c3e50;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      transition: color 0.3s ease;
    }

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

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

  .content-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 35px;
    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%;
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--main-color) 0%, #3e8193 100%);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.4s ease;
    }

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

      &::before {
        transform: scaleY(1);
      }
    }

    h4 {
      color: #2c3e50;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 22px;
      padding-bottom: 18px;
      border-bottom: 2px solid rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;

      &::after {
        content: "";
        position: absolute;
        bottom: -2px;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--main-color);
        transition: width 0.4s ease;
      }

      i {
        font-size: 24px;
        margin-left: 10px;
        color: var(--main-color);
      }
    }

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

      &::after {
        width: 60px;
      }
    }

    p {
      font-size: 16px;
      line-height: 1.9;
      color: #495057;
      margin-bottom: 15px;

      strong {
        color: var(--main-color);
        font-weight: 700;
      }
    }
  }

  .qualification-item {
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg,
          rgba(70, 200, 236, 0.03) 0%,
          transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    &:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(70, 200, 236, 0.3);
      box-shadow: 0 10px 35px rgba(70, 200, 236, 0.15);

      &::before {
        opacity: 1;
      }
    }

    i {
      transition: all 0.4s ease;
      display: inline-block;
    }

    &:hover i {
      transform: scale(1.25) rotate(10deg);
    }

    h6 {
      color: #2c3e50;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }

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

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

  .about-page-content {
    .about-text-content {
      h4 {
        color: #2c3e50;
        font-size: 22px;
        font-weight: 700;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(0, 0, 0, 0.08);
        position: relative;
        transition: color 0.3s ease;

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

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

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

      p {
        font-size: 17px;
        line-height: 1.9;
        color: #555;
        text-align: justify;
        margin-bottom: 20px;

        strong {
          color: var(--main-color);
          font-weight: 700;
        }
      }
    }

    .qualifications-box {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      border: 1px solid rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);

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

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

      .qualifications-list {
        li {
          padding: 10px 0;
          font-size: 16px;
          color: #555;
          line-height: 1.8;
          transition: all 0.3s ease;

          i {
            font-size: 18px;
          }

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

/* ================================================
   FEATURES SECTION STYLES
================================================ */
.features-section {
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-135deg,
        rgba(255, 255, 255) 0%,
        rgba(70, 200, 236, 0.2) 100%);
  }

  position: relative;
  overflow: hidden;

  .feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    padding: 40px 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%;
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--main-color) 0%, #3e8193 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 45px rgba(70, 200, 236, 0.2);
      border-color: rgba(70, 200, 236, 0.3);

      &::before {
        transform: scaleX(1);
      }

      .feature-icon {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 15px 40px rgba(70, 200, 236, 0.4);
      }
    }

    .feature-icon-wrapper {
      margin-bottom: 25px;
      display: flex;
      justify-content: center;
    }

    .feature-icon {
      width: 90px;
      height: 90px;
      background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 36px;
      box-shadow: 0 10px 30px rgba(70, 200, 236, 0.3);
      transition: all 0.4s ease;
      position: relative;

      &::after {
        content: "";
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
        opacity: 0.2;
        z-index: -1;
        transition: all 0.4s ease;
      }
    }

    &:hover .feature-icon::after {
      transform: scale(1.3);
      opacity: 0.1;
    }

    h4 {
      color: #2c3e50;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      transition: color 0.3s ease;
    }

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

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

/* ================================================
   SCHEDULE SECTION STYLES
================================================ */
.schedule-section {
  background: linear-gradient(135deg,
      rgba(70, 200, 236, 0.05) 0%,
      #ffffff 100%);

  .schedule-timeline {
    position: relative;

    display: block;
    border: none;

    &::before {
      content: "";
      position: absolute;
      right: 45px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg,
          var(--main-color) 0%,
          rgba(70, 200, 236, 0.3) 100%);
    }

    .timeline-item {
      position: relative;
      padding-right: 80px;
      margin-bottom: 40px;

      transition: all 0.3s ease;

      &:last-child {
        margin-bottom: 0;
      }

      &:hover {
        .timeline-marker {
          transform: scale(1.15);
          box-shadow: 0 8px 25px rgba(70, 200, 236, 0.4);
        }

        .timeline-content {
          transform: translateX(-5px);
        }
      }

      .timeline-marker {
        position: absolute;
        right: 20px;
        top: 5px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        box-shadow: 0 4px 15px rgba(70, 200, 236, 0.3);
        z-index: 2;
        transition: all 0.3s ease;
        border: 4px solid #ffffff;
      }

      .timeline-content {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 15px;
        padding: 25px 30px;

        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;

        &:hover {
          box-shadow: 0 5px 20px rgba(70, 200, 236, 0.15);
          border-color: rgba(70, 200, 236, 0.2);
        }

        .timeline-day {
          color: var(--black-color);
          font-size: 22px;
          font-weight: 700;
          margin-bottom: 15px;
          padding-bottom: 10px;
          border-bottom: 2px solid rgba(70, 200, 236, 0.1);
        }

        .timeline-locations {
          display: flex;
          flex-direction: column;
          gap: 12px;

          .timeline-location {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            max-width: 800px;
            width: 100%;
            background: rgba(70, 200, 236, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            text-decoration: none;

            &:hover {
              background: rgba(70, 200, 236, 0.1);
              transform: translateX(-3px);
            }

            &.active {
              background: rgba(70, 200, 236, 0.15);
              border: 2px solid var(--main-color);
              box-shadow: 0 4px 15px rgba(70, 200, 236, 0.2);
            }

            .location-name {
              color: #2c3e50;
              font-size: 16px;
              font-weight: 600;
            }

            .location-time {
              color: var(--main-color);
              font-size: 14px;
              font-weight: 600;
              background: rgba(70, 200, 236, 0.1);
              padding: 5px 12px;
              border-radius: 20px;
            }
          }
        }
      }
    }
  }

  .location-details-wrapper {
    position: sticky;
    top: 0;

    .tab-content {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 30px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
      min-height: 400px;

      .location-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 400px;
        text-align: center;

        i {
          opacity: 0.5;
        }

        p {
          font-size: 18px;
          margin-top: 15px;
        }
      }

      .tab-pane {
        h5 {
          color: var(--main-color);
          font-size: 24px;
          font-weight: 700;
          margin: 0;
        }

        .location-time {
          color: var(--main-color);
          font-size: 15px;
          font-weight: 600;
          background: rgba(70, 200, 236, 0.1);
          padding: 8px 15px;
          border-radius: 25px;
          white-space: nowrap;
        }

        img {
          transition: transform 0.4s ease;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

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

        .location-iframe-wrapper {
          position: relative;
          width: 100%;
          height: 450px;
          overflow: hidden;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;

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

          iframe {
            width: 100%;
            height: 100%;
            border: none;
          }
        }
      }
    }
  }
}

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

  .operationsSwiper {
    padding-bottom: 60px;
    overflow: visible;

    .swiper-slide {
      height: auto;
    }
  }

  .swiper-pagination.operations-pagination {
    bottom: 0;

    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: var(--main-color);
      opacity: 0.3;
      transition: all 0.3s ease;

      &.swiper-pagination-bullet-active {
        opacity: 1;
        transform: scale(1.3);
      }
    }
  }

  .operation-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    padding: 35px;
    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%;
    display: flex;
    flex-direction: column;
    position: relative;

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

    .operation-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .operation-icon {
      width: 80px;
      height: 60px;
      background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 32px;
      box-shadow: 0 8px 25px rgba(70, 200, 236, 0.3);
      transition: all 0.4s ease;

      img {
        width: 35px;
        height: 35px;
        filter: brightness(0) invert(1);
      }
    }

    &:hover .operation-icon {
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 12px 35px rgba(70, 200, 236, 0.4);
    }

    h4 {
      color: #2c3e50;
      font-size: 22px;
      width: 100%;
      font-weight: 700;
      transition: color 0.3s ease;
      text-wrap: wrap !important;
    }

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

    p {
      font-size: 18px;
      font-weight: 500;
      text-align: justify;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      line-clamp: 3;
      line-height: 1.8;
      height: 120px !important;
      color: #6c757d;
      margin-bottom: 20px;
    }
  }
}

/* ================================================
   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: 250px;

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

      .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(70, 200, 236, 0.1);
          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;

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

/* ================================================
   OPERATION DETAILS PAGE STYLES
================================================ */
.operation-details-section {
  .operation-details-card {
    background: #fff;
    border-radius: 30px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);

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

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

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

    .operation-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;
      }

      .operation-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;
          }
        }
      }

      .operation-benefits {
        background: linear-gradient(135deg,
            rgba(70, 200, 236, 0.05) 0%,
            rgba(70, 200, 236, 0.1) 100%);
        border-radius: 15px;
        padding: 25px;
        margin: 30px 0;
      }

      .operation-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;
          }
        }
      }
    }

    .service-faqs {
      h3 {
        color: #2c3e50;
        font-size: 24px;
      }

      .service-faqs-accordion {
        .accordion-button {
          background: #f8f9fa;
          color: #2c3e50;
          font-size: 16px;
          padding: 18px 24px;
          box-shadow: none;

          &:not(.collapsed) {
            background: rgba(70, 200, 236, 0.1);
            color: var(--main-color);
          }

          &:focus {
            box-shadow: none;
            border-color: transparent;
          }
        }

        .accordion-body {
          color: #495057;
          font-size: 16px;
          line-height: 1.8;
          padding: 20px 24px;
        }
      }
    }

    .operation-cta {
      text-align: center;
    }
  }

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

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

      h4 {
        color: #2c3e50;
      }
    }

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

    .related-operations {
      .related-operation-item {
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;

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

        &:hover {
          transform: translateX(-5px);
        }

        .related-operation-icon {
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg,
              var(--main-color) 0%,
              #3e8193 100%);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-size: 20px;
          box-shadow: 0 4px 15px rgba(70, 200, 236, 0.3);

          img {
            width: 30px;
            height: 30px;
            filter: brightness(0) invert(1);
          }
        }

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

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

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

[dir="rtl"] .operation-details-section .service-faqs-accordion .accordion-button {
  text-align: right;
}

[dir="rtl"] .operation-details-section .service-faqs-accordion .accordion-button::after {
  margin-left: 0;
  margin-right: auto;
}

/* ================================================
   BLOG DETAILS PAGE STYLES
================================================ */
.blog-details-section {
  .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 {
  .contact-info-card {
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(70, 200, 236, 0.2);

    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: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
        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: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
        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);
        }
      }
    }
  }

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

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

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

      label {
        color: #2c3e50;
        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);
        }
      }
    }
  }

  .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;
      }
    }
  }

  .clinics-map-tabs-block {
    margin-top: 3rem;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 24px rgba(70, 200, 236, 0.12);
  }

  .contact-tabs-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(70, 200, 236, 0.4) transparent;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 6px 20px rgba(70, 200, 236, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);

    &::-webkit-scrollbar {
      height: 5px;
    }

    &::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.03);
      border-radius: 100px;
    }

    &::-webkit-scrollbar-thumb {
      background: linear-gradient(90deg,
          rgba(70, 200, 236, 0.45),
          rgba(62, 129, 147, 0.5));
      border-radius: 100px;
    }
  }

  .contact-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    flex-wrap: nowrap;
    gap: 1rem;
    margin: 0;
    padding: 1rem 1.25rem;
    list-style: none;
    width: max-content;
    min-width: 100%;

    .nav-item {
      flex-shrink: 0;
    }

    .nav-link {
      margin: 0;

      border-radius: 999px;
      padding: 0.65rem 1.2rem;
      font-weight: 600;
      font-size: 0.875rem;
      line-height: 1.35;
      white-space: nowrap;
      color: #4a6572;
      background: #fff;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.2s ease;

      &:hover {
        color: var(--main-color);
        border-color: rgba(70, 200, 236, 0.35);
        box-shadow: 0 6px 18px rgba(70, 200, 236, 0.16);
        transform: translateY(-1px);
      }

      &:focus-visible {
        outline: 2px solid var(--main-color);
        outline-offset: 3px;
      }

      &.active {
        color: #fff;
        border-color: transparent;
        background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
        box-shadow:
          0 6px 20px rgba(70, 200, 236, 0.35),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
      }
    }
  }

  #clinicContactTabsContent {
    border-radius: 0 0 30px 30px;
    overflow: hidden;
  }

  .contact-location-title {
    display: none;
  }

  .contact-clinic-cards {


    padding: 1.75rem 1rem 2rem;
    background: #fff;

    .contact-card {
      text-align: center;
      padding: 0.75rem 0.5rem;
      height: 100%;

      .icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 12px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--main-color) 0%, #3e8193 100%);
        color: #fff;
        font-size: 1.15rem;
        box-shadow: 0 4px 12px rgba(70, 200, 236, 0.35);
      }

      h5 {
        color: var(--main-color);
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 0.4rem;
      }

      p {
        color: #6c757d;
        font-size: 0.875rem;
        margin-bottom: 0.35rem;
      }

      a {
        color: var(--main-color);
        font-weight: 600;
        font-size: 0.9375rem;
        text-decoration: none;
        word-break: break-word;

        &:hover {
          text-decoration: underline;
        }
      }

      .contact-card-hours span {
        display: block;
        color: #2c3e50;
        font-size: 0.9rem;
        line-height: 1.5;
      }

      .contact-card-address {
        display: block;
        color: #2c3e50;
        font-size: 0.9rem;
        line-height: 1.55;
      }
    }
  }

  .clinic-tab-map iframe {
    display: block;
    border: 0;
    vertical-align: middle;
  }
}

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

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(2, 132, 169, 0.6) 0%,
        rgba(70, 200, 236, 0.6) 100%);
    z-index: -1;
  }

  .footer-logo {
    filter: brightness(0) invert(1);
  }

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

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

  .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(--black-color);
      transition: width 0.3s ease;
    }

    &:hover {
      color: var(--black-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(--black-color);
      }
    }
  }

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

    width: fit-content;

    a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(15, 186, 233, 0.7);
      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 fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes gentlePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes gentleRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes loaderFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes loaderScale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes loaderRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* ================================
   NO PAGE ANIMATIONS (Homepage)
================================ */
body.no-page-animations *,
body.no-page-animations *::before,
body.no-page-animations *::after {
  animation: none !important;
}

body.no-page-animations .loading {
  display: none !important;
}