@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cairo:wght@300..800&family=Montserrat:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..800;1,400..800&display=swap");

:root {
  --gold: #c5a059;
  --gold-light: #dfbf77;
  --gold-dark: #9a7b38;
  --gold-gradient: linear-gradient(
    135deg,
    #f8e5b9 0%,
    #c5a059 50%,
    #9a7b38 100%
  );
  --gold-border: rgba(197, 160, 89, 0.3);
  --gold-border-glow: rgba(197, 160, 89, 0.65);
  --dark-bg: #090a0c;
  --dark-surface: #101215;
  --dark-card: #14171b;
  --dark-card-hover: #1b1f25;
  --champagne-bg: #e7ddd3;
  --champagne-surface: #eee5db;
  --champagne-text: #1d1916;
  --champagne-muted: #5e564f;
  --cream-bg: #eae3db;
  --cream-surface: #f4eee7;
  --cream-card: #ffffff;
  --cream-text: #1d1a18;
  --cream-muted: #6e6761;
  --white: #ffffff;
  --text-muted: #9ba1ab;
  --text-secondary: #c2c7cf;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cairo: "Cairo", system-ui, sans-serif;
  --font-script: "Alex Brush", cursive;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
html,
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth !important;
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;

  &.header-is-fixed {
    padding-top: var(--header-height);
  }
}

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

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;

  &:hover {
    background: var(--gold);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ================================
   Theme
================================ */
.font-heading {
  font-family: var(--font-heading);
}

.font-script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.text-gold {
  color: var(--gold) !important;
}

.text-gold-light {
  color: var(--gold-light) !important;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-secondary-light {
  color: var(--text-secondary) !important;
}

.cream-text-muted {
  color: var(--cream-muted) !important;
}

.eyebrow-badge {
  font-size: 0.82rem;
  letter-spacing: 3.5px;
  color: var(--gold);
  font-weight: 600;
}

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

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

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

.bg-champagne-section {
  background-color: var(--champagne-bg);
  color: var(--champagne-text);
}

.bg-cream-section {
  background-color: var(--cream-bg);
  color: var(--cream-text);
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.section-champagne {
  background-color: var(--champagne-bg);
  color: var(--champagne-text);
}

.section-cream {
  background-color: var(--cream-bg);
  color: var(--cream-text);
}

.hover-opacity {
  transition: var(--transition);

  &:hover {
    opacity: 0.75;
  }
}

/* ================================
   Buttons / Links
================================ */
.btn-gold-pill {
  background: var(--gold-gradient);
  color: #111113 !important;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 50rem;
  padding: 11px 26px;
  border: 1px solid var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.28);
  transition: var(--transition);

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
    color: #000 !important;
  }
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold) !important;
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: 50rem;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);

  &:hover {
    background: var(--gold);
    color: #0c0d0f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
  }
}

.btn-dark-pill {
  background-color: #121316;
  color: var(--gold-light) !important;
  border: 1px solid var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 50rem;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);

  &:hover {
    background-color: #000;
    border-color: var(--gold-light);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  }
}

.btn-play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(197, 160, 89, 0.08);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-play-wrap {
  &:hover .btn-play-circle {
    background: var(--gold);
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
  }
}

/* ================================
   Header (Zein-style navbar)
================================ */
.text-main {
  color: var(--gold) !important;
}

.header {
  z-index: 1;
}

.header.fixed .navbar {
  background: rgba(10, 11, 14, 0.96);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.navbar {
  transition: var(--transition);
  padding: 0;

  .container-fluid {
    position: relative;
    z-index: 1;
    transition: var(--transition);

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(9, 10, 12, 0.9) 0%,
        transparent 100%
      );
      z-index: -1;
    }

    .navbar-brand {
      img {
        height: auto;
        max-height: 48px;
        width: auto;
        transition: transform 0.3s ease;
      }

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

    .navbar-toggler {
      color: var(--gold);

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

    .navbar-collapse {
      .nav-link {
        color: white !important;
        font-weight: 600;
        font-size: 1rem;
        padding: 10px 14px;
        border-radius: 8px;
        transition: var(--transition);

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

        &.active {
          color: var(--gold-light) !important;
          background: rgba(197, 160, 89, 0.12);
        }
      }
    }

    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      animation: headerDropdownFade 0.25s ease-in-out;
    }

    .dropdown-menu {
      margin-top: 0;
      padding: 8px;
      border-radius: 12px;
      background: rgba(10, 11, 14, 0.98);
      border: 1px solid rgba(197, 160, 89, 0.25);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    }

    .dropdown-item {
      color: #d1d5db;
      font-weight: 500;
      font-size: 0.9rem;
      padding: 10px 14px;
      border-radius: 8px;
      transition: var(--transition);

      &:hover,
      &:focus {
        background: rgba(197, 160, 89, 0.12);
        color: var(--gold-light);
      }
    }
  }
}

@keyframes headerDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-appointment {
  background: var(--gold-gradient);
  color: #111113 !important;
  padding: 10px 22px;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.28);
  border: 1px solid var(--gold-light);

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.45);
    color: #000 !important;
  }
}

.btn-lang {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  cursor: pointer;

  &:hover {
    background: var(--gold);
    color: #0c0d0f !important;
    transform: translateY(-2px);
  }
}

.offcanvas {
  background: #0a0b0e;
  color: var(--white);
  border-inline-start: 4px solid var(--gold);

  .offcanvas-header {
    border-color: rgba(197, 160, 89, 0.2) !important;
  }

  .offcanvas-body {
    padding-top: 20px;

    .navbar-nav {
      .nav-link {
        color: #d1d5db !important;
        font-weight: 600;
        font-size: 14px;
        transition: var(--transition);

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

        &.active {
          color: var(--gold-light) !important;
          background: rgba(197, 160, 89, 0.12);
          border-radius: 8px;
          padding: 10px 20px;
        }
      }
    }

    .dropdown-menu {
      position: static !important;
      transform: none !important;
      width: 100%;
      margin-top: 4px;
      padding: 6px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(197, 160, 89, 0.2);
      box-shadow: none;
    }

    .dropdown-item {
      color: #d1d5db;
      font-weight: 500;
      padding: 10px 14px;
      border-radius: 8px;
      transition: var(--transition);

      &:hover,
      &:focus {
        background: rgba(197, 160, 89, 0.12);
        color: var(--gold-light);
      }
    }

    .btn-appointment-mobile {
      display: block;
      text-align: center;
      padding: 12px 20px;
      border-radius: 50rem;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: var(--transition);
      background: var(--gold-gradient);
      color: #111113 !important;
      box-shadow: 0 4px 18px rgba(197, 160, 89, 0.28);

      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(197, 160, 89, 0.45);
        color: #000 !important;
      }
    }

    .list-contact {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(197, 160, 89, 0.25);
      color: #c2c7cf;
      font-size: 13px;

      strong {
        color: var(--white);
      }

      a {
        color: #d1d5db;
        transition: color 0.3s ease;

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

      .border-bottom {
        border-color: rgba(197, 160, 89, 0.2) !important;
      }
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
      padding-top: 12px;
      border-top: 1px solid rgba(197, 160, 89, 0.2);

      .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: var(--gold-gradient);
        color: #111113;
        text-decoration: none;
        transition: var(--transition);

        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
        }
      }
    }
  }
}

/* ================================
   Page Hero
================================ */
.hero-pages {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  

  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(9, 10, 12, 0.88) 0%,
      rgba(9, 10, 12, 0.55) 55%,
      rgba(197, 160, 89, 0.18) 100%
    );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    color: var(--white);
  }

  .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0;

    .breadcrumb-item,
    .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.92rem;
    }

    .breadcrumb-item.active,
    .breadcrumb-item a:hover {
      color: var(--gold-light);
    }
  }
}

/* ================================
   Hero
================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  z-index: 1;
  background: var(--dark-bg);
  overflow: hidden;

  .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .content-hero {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    overflow: hidden;
  }
  .hero-title {
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.12;
    letter-spacing: -0.5px;
    font-weight: 700;
  }

  .hero-sparkle {
    font-size: 1.4rem;
    vertical-align: super;
    margin-inline-start: 2px;
  }

  .avatar-group {
    img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      object-fit: cover;
      margin-left: -10px;

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

  .hero-scroll-indicator {
    position: absolute;
    inset-inline-end: 35px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
  }

  .hero-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;

    &::before {
      content: "";
      width: 3px;
      height: 7px;
      background: var(--gold);
      border-radius: 3px;
      position: absolute;
      top: 7px;
      animation: scrollWheel 2s infinite ease-in-out;
    }
  }

  .hero-scroll-text {
    writing-mode: vertical-rl;
    font-size: 0.72rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
  }

  .hero-scroll-dots {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;

    span {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.6;
    }
  }
}

/* ##################################################
   #                   HERO MOBILE                   #
   ################################################## */
.hero-mobile {
  position: relative;
  height: 70vh;
  min-height: 520px;
  background: var(--dark-bg);
  overflow: hidden;

  .hero-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .hero-mobile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 0 28px;
    z-index: 5;
    /* text-align: center; */
    background: linear-gradient(
      180deg,
      rgba(9, 10, 12, 0) 0%,
      rgba(9, 10, 12, 0.55) 28%,
      rgba(9, 10, 12, 0.92) 100%
    );
    

    .hero-title {
      font-size: clamp(1.85rem, 8vw, 2.35rem);
      line-height: 1.15;
      letter-spacing: -0.3px;
      font-weight: 700;
    }

    .hero-sparkle {
      font-size: 1.1rem;
      vertical-align: super;
      margin-inline-start: 2px;
    }

    .text-secondary-light {
      font-size: 0.9rem;
      line-height: 1.65;
      max-width: 340px;
      margin-inline: auto;
    }

    .hero-cta-group {
      max-width: 320px;
      margin-inline: auto;

      .btn-gold-pill,
      .btn-play-wrap {
        width: 100%;
        justify-content: center;
      }
    }
  }
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.banner-slider {
  .banner-prev,
  .banner-next {
    color: var(--gold);
    width: 44px;
    height: 44px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;

    &::after {
      font-size: 1.25rem;
      font-weight: 700;
    }
  }

  .banner-prev {
    inset-inline-start: 16px;
  }

  .banner-next {
    inset-inline-end: 16px;
  }
}

/* ================================
   Philosophy
================================ */
.philosophy-section {
  /* غيّر القيم دي عشان تتحكم في padding الكلام */
  --philosophy-pad-y: 2.5rem;
  --philosophy-pad-x: 2rem;
  --philosophy-pad-x-side: 1.75rem;

  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 0;
  }

  > .container-fluid {
    position: relative;
    z-index: 1;
  }

  .philosophy-doctor-wrap {
    width: 100%;
    line-height: 0;
  }

  .philosophy-doctor-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center center;
    vertical-align: middle;
  }



  .philosophy-title {
    color: #1a1613;
    font-size: clamp(2rem, 2.8vw, 2.7rem);
    line-height: 1.16;
    font-weight: 700;
  }

  .philosophy-text {
    color: #4a423b;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .philosophy-signature {
    font-family: var(--font-script);
    color: var(--gold);
    font-size: 1.85rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.45);
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
  }

  .philosophy-divider {
    border-inline-start: 1px solid rgba(0, 0, 0, 0.12);
    height: 100%;

  }

  .philosophy-feature-item {
    transition: var(--transition);

    &:hover .philosophy-feature-icon {
      background: var(--gold);
      color: #0c0d0f;
      transform: scale(1.08);
      box-shadow: 0 0 15px rgba(197, 160, 89, 0.45);
    }
  }

  .philosophy-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #101215;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
  }

  .philosophy-feature-title {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1613;
    margin-bottom: 2px;
  }

  .philosophy-feature-desc {
    color: var(--champagne-muted);
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
}

/* ================================
   Services
================================ */
.services-section {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(197, 160, 89, 0.05) 0%,
    transparent 70%
  );


  .services-showcase-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 0;
  }

  .servicesSwiper {
    width: 100%;
    overflow: hidden;

    perspective: 1200px;
  }

  .servicesSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
  }

  .service-card-wrapper {
    position: relative;
    width: 100%;

    margin-inline: auto;
    transition: var(--transition);

    &:hover {
      transform: perspective(1000px) translateY(-10px) scale(1.03) !important;
      z-index: 10;
    }
  }

  .servicesSwiper .swiper-slide:nth-child(1) .service-card-wrapper {
    transform: perspective(1000px) rotateY(16deg);
    transform-origin: right center;

    &::before {
      content: "";
      position: absolute;
      left: -12px;
      top: 15px;
      bottom: 15px;
      width: 100%;
      border-radius: 18px ;
      border: 1px solid rgba(197, 160, 89, 0.25);
      background: #090a0c;
      z-index: -1;
    }
  }

  .servicesSwiper .swiper-slide:nth-child(2) .service-card-wrapper {
    transform: perspective(1000px) rotateY(8deg);
  }

  .servicesSwiper .swiper-slide:nth-child(3) .service-card-wrapper {
    z-index: 5;
    transform: perspective(1000px) scale(1.06);
  }

  .servicesSwiper .swiper-slide:nth-child(4) .service-card-wrapper {
    transform: perspective(1000px) rotateY(-8deg);
  }

  .servicesSwiper .swiper-slide:nth-child(5) .service-card-wrapper {
    transform: perspective(1000px) rotateY(-16deg);
    transform-origin: left center;

    &::after {
      content: "";
      position: absolute;
      right: -12px;
      top: 15px;
      bottom: 15px;
      width: 100%;
      border-radius: 18px ;
      border: 1px solid rgba(197, 160, 89, 0.25);
      background: #090a0c;
      z-index: -1;
    }
  }

  .service-luxury-card.featured {
    border-radius: 125px 125px 20px 20px;
    border: 1.5px solid var(--gold);
    height: 455px;
    box-shadow:
      0 0 35px rgba(197, 160, 89, 0.18),
      0 20px 45px rgba(0, 0, 0, 0.7);
    background: linear-gradient(
      180deg,
      rgba(197, 160, 89, 0.1) 0%,
      #0d0e11 60%
    );

    .service-card-media {
      border-radius: 122px 122px 0 0;
      height: 60%;
    }
  }

  .service-luxury-card {
    background: linear-gradient(180deg, #16181d 0%, #0c0d10 100%);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 20px;
    height: 430px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    &:hover {
      .service-card-media img {
        transform: scale(1.08);
      }

      .service-circle-icon {
        background: var(--gold);
        color: #0c0d0f;
        border-color: var(--gold);
        transform: scale(1.1);
      }
    }
  }

  .service-card-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 62%;
    overflow: hidden;
    z-index: 1;

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

  .service-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(12, 13, 16, 0) 0%,
      rgba(12, 13, 16, 0.35) 45%,
      #0c0d10 95%
    );
    pointer-events: none;
  }

  .service-card-body {
    position: relative;
    z-index: 2;
    padding: 16px 12px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to top, #0c0d10 85%, transparent 100%);
    width: 100%;
  }

  .service-card-num {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
    font-weight: 400;
  }

  .service-card-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-title-line {
    width: 26px;
    height: 1px;
    background: rgba(197, 160, 89, 0.6);
    margin-bottom: 14px;
  }

  .service-circle-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.45);
    background: rgba(16, 18, 22, 0.6);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: var(--transition);
  }

  .service-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.45);
    background: rgba(16, 18, 21, 0.85);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    cursor: pointer;
    transition: var(--transition);

    &:hover {
      background: var(--gold);
      color: #000;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
    }

    &.prev {
      inset-inline-start: 0;
    }

    &.next {
      inset-inline-end: 0;
    }
  }
}

/* ================================
   Service grid cards
================================ */
.service-grid-card {
  display: block;
  /* height: 100%; */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: linear-gradient(180deg, #16181d 0%, #0c0d10 100%);
  transition: var(--transition);
  position: relative;

  &:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);

    img {
      transform: scale(1.06);
    }
  }

  .service-grid-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;

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

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(9, 10, 12, 0.92) 0%,
        rgba(9, 10, 12, 0.2) 55%,
        transparent 100%
      );
    }
  }

  .service-grid-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1.35rem;
    z-index: 2;
  }

  .service-grid-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.45rem;
  }

  h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.35rem;
  }

  p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
  }
}

/* ==================================================
   Shorts & Reels Section
================================================== */
.reels-section {
 
  position: relative;
  overflow: hidden;
  background-size: cover !important;
}

.reels-gold-line {
  display: inline-block;
  width: 45px;
  height: 1px;
  background: var(--gold);
}



.reelsSwiper {
  width: 100%;
  overflow: hidden;
  padding: 8px 4px 16px;
}



.reel-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #111316;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.35s ease;
  aspect-ratio: 9 / 16;
  width: 100%;
  
  

  iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  &:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 16px 35px rgba(197, 160, 89, 0.35);
  }

  &.active-reel,
  .swiper-slide-active & {
    border: 1.5px solid var(--gold);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.4);
  }
}

.reel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #08090b;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 10;
  transition: var(--transition);
  cursor: pointer;

  &.prev {
    inset-inline-start: -8px;
  }

  &.next {
    inset-inline-end: -8px;
  }

  &:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
  }
}

.reels-page-lead {
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.reels-page-grid {
  padding-top: 0;
}

.reel-card-grid {
  width: 100%;
  margin: 0;
}

.reel-grid-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.btn-gold-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: transparent;
  color: var(--gold);
  padding: 10px 30px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);

  &:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35);
  }
}

/* ================================
   Before & After
================================ */
.before-after-section {
  position: relative;
  color: var(--cream-text);

  .baResultsSwiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 8px;
  }

  .swiper-slide {
    height: auto;
  }

  .ba-title {
    color: #1a1613;
    font-size: clamp(2rem, 2.5vw, 2.7rem);
    line-height: 1.15;
  }

  .ba-text {
    color: #4a423b;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .ba-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
    transition: var(--transition);
    cursor: grab;
    background: #000;
    height: 400px;

    &:active {
      cursor: grabbing;
    }

    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);

      img {
        transform: scale(1.02);
      }
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 28px;
      transition: transform 0.5s ease;
    }
  }

  .ba-dots-pagination {
    position: static;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;

    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      margin: 0 !important;
      border-radius: 50%;
      background: #c8beb4;
      opacity: 1;
      transition: var(--transition);
    }

    .swiper-pagination-bullet-active {
      background: #1c1815;
    }
  }
}

/* ================================
   Why Choose Us
================================ */
.why-section {
  position: relative;
  overflow: hidden;
  background-color: #07080a;
  background-image: radial-gradient(
    circle at 50% 45%,
    rgba(197, 160, 89, 0.08) 0%,
    transparent 65%
  );

  .why-timeline-wrapper {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
  }

  .why-timeline-line {
    position: absolute;
    top: 25%;
    left: 10%;
    right: 10%;
    height: 1px;
    transform: translateY(-50%);
    border-top: 1px dashed rgba(197, 160, 89, 0.45);
    z-index: 1;
  }

  .why-timeline-dot {
    position: absolute;
    top: -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);

    &.dot-1 {
      left: 12%;
    }

    &.dot-2 {
      left: 38%;
    }

    &.dot-3 {
      left: 63%;
    }

    &.dot-4 {
      left: 88%;
    }
  }

  .why-node {
    position: relative;
    z-index: 2;
    text-align: center;

    &:hover .why-icon-circle {
      background: var(--gold);
      color: #0c0d0f;
      transform: scale(1.1);
      box-shadow: 0 0 35px rgba(197, 160, 89, 0.55);
    }
  }

  .why-icon-circle {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #090a0d;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 18px;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.22);
  }

  .why-node-title {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .why-node-desc {
    font-size: 0.82rem;
    color: #a39a92;
    line-height: 1.55;
    max-width: 175px;
    margin: 0 auto;
  }
}

/* ================================
   CTA & Book Consultation Section
================================ */
.consultation-section {
  position: relative;
  background-color: #eee4d7;

  overflow: visible;

  .consultation-card {
    position: relative;
    border: 1px solid rgba(193, 161, 122, 0.48);
    border-radius: 36px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
      inset 0 0 35px rgba(255, 255, 255, 0.45),
      0 16px 45px rgba(135, 105, 70, 0.08);
  }

  .consultation-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    font-weight: 500;
    color: #1a1614;
    line-height: 1.08;
    margin-bottom: 0;
    letter-spacing: -0.02em;
  }

  .consultation-title-script {
    font-family: var(--font-script);
    font-size: 1.32em;
    font-weight: 400;
    color: #b0874e;
    line-height: 0.95;
    display: block;
    margin-top: 4px;
  }

  .consultation-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #554c44;
    line-height: 1.6;
    margin-top: 1.25rem;
    margin-bottom: 0;
  }

  .consultation-form {
    margin-top: 1.75rem;
  }

  .consultation-input-group {
    display: flex;
    align-items: center;
    border: 1px solid rgba(188, 155, 117, 0.55);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    padding: 0 18px;
    height: 52px;
    transition: var(--transition);

    &:focus-within {
      border-color: #9f753e;
      background: rgba(255, 255, 255, 0.45);
      box-shadow: 0 0 0 3px rgba(176, 135, 78, 0.18);
    }

    .input-icon {
      color: #a47a41;
      font-size: 1rem;
      margin-inline-end: 14px;
      flex-shrink: 0;
      width: 18px;
      text-align: center;
    }

    .consultation-control {
      border: none;
      background: transparent;
      width: 100%;
      height: 100%;
      outline: none;
      font-family: var(--font-sans);
      font-size: 0.92rem;
      color: #26211c;
      font-weight: 400;

      &::placeholder {
        color: #63574c;
        font-weight: 400;
        opacity: 0.95;
      }
    }
  }

  .consultation-textarea-group {
    height: auto;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;

    .textarea-icon {
      margin-top: 4px;
    }

    .consultation-textarea {
      resize: none;
      min-height: 85px;
      line-height: 1.5;
    }
  }

  .btn-consultation-submit {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 34px;
    border-radius: 10px;
    background: linear-gradient(180deg, #221f1c 0%, #0d0c0a 100%);
    color: #d6b272;
    border: 1px solid rgba(214, 178, 114, 0.28);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

    &:hover {
      background: linear-gradient(180deg, #2b2723 0%, #151310 100%);
      color: #fae1ad;
      border-color: rgba(214, 178, 114, 0.6);
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .fa-arrow-right-long {
      transition: transform 0.3s ease;
    }

    &:hover .fa-arrow-right-long {
      transform: translateX(4px);
    }
  }

  .consultation-map-box {
    position: relative;
    width: 100%;
    min-height: 280px;
    border-radius: 26px;
    border: 1px solid rgba(188, 155, 117, 0.52);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(150, 115, 75, 0.1);
    background: #ebe0d4;

    iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
  }

  .consultation-tooth-container {
    position: absolute;
    inset-inline-end: -100px;
    top: 80%;
    z-index: 10;
    width: fit-content;
    pointer-events: none;
    margin: 0;
    padding: 0;

    img {
      width: 255px !important;
    }

    .consultation-tooth-model {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 20px 30px rgba(110, 80, 45, 0.3));
    }

    .consultation-tooth-reflection {
      width: 100%;
      height: 90px;
      background: url("../images/cta/gold-tooth-transparent.png") no-repeat
        bottom center;
      background-size: 100% auto;
      transform: scaleY(-1);
      margin-top: -6px;
      opacity: 0.35;
      filter: blur(1.5px);
      mask-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        transparent 65%
      );
      -webkit-mask-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        transparent 65%
      );
    }
  }
}

/* ================================
   About Page & Floating Contact
================================ */
.about-page-img {
  border-radius: 16px;
  display: block;
  object-fit: cover;
  min-height: 280px;
  max-height: 520px;
}

.social-icon {
  inset-inline-start: 0 !important;
  margin-inline-start: 16px;
  margin-bottom: 55px;
  width: fit-content;
  height: fit-content;
  z-index: 999;

  a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0.3rem;
    border: 1px solid var(--gold);
    border-radius: 50px;
    background: #101215 !important;
    color: var(--gold);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);

    &:hover {
      background: var(--gold) !important;
      color: #0c0d0f;
      transform: scale(1.05);
      box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35);
    }
  }
}

/* ================================
   Blog
================================ */
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.2);
  background: var(--dark-card);
  height: 100%;
  transition: var(--transition);

  &:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);

    .blog-card-media img {
      transform: scale(1.05);
    }
  }

  .blog-card-media {
    aspect-ratio: 16 / 11;
    overflow: hidden;

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

  .blog-card-body {
    padding: 1.35rem 1.4rem 1.5rem;
  }

  .blog-meta {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.55rem;
  }

  h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.55rem;
  }

  p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
  }
}

.blog-details-content {
  h2,
  h3 {
    color: var(--white);
    margin: 1.5rem 0 0.75rem;
  }

  p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  img {
    border-radius: 16px;
    margin: 1.25rem 0;
  }

  ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;

    li {
      color: var(--text-secondary);
      margin-bottom: 0.4rem;
    }
  }
}

.blog-sidebar-card {
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 18px;
  background: var(--dark-card);
  padding: 1rem;

  h5 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    display: block;
    padding: 0.45rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    &:hover {
      color: var(--gold-light);
    }

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

  .sidebar-contact-form textarea.form-control {
    min-height: 90px;
  }
}

/* ================================
   Contact
================================ */
.contact-form-card,
.contact-info-card {
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 22px;
  background: var(--dark-card);
  padding: 2rem;
  height: 100%;
}

.contact-form {
  label {
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.45rem;
  }

  .form-control,
  .form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--white);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;

    &:focus {
      background: rgba(255, 255, 255, 0.06);
      border-color: var(--gold);
      box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.15);
      color: var(--white);
    }

    &::placeholder {
      color: rgba(255, 255, 255, 0.35);
    }
  }

  textarea.form-control {
    min-height: 140px;
    resize: vertical;
  }

  .form-select option {
    background: var(--dark-card);
    color: var(--white);
  }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.15rem;

  .contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
  }

  h6 {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--white);
    margin-bottom: 0.2rem;
  }

  p,
  a {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 0;
  }

  a:hover {
    color: var(--gold);
  }
}

.contact-section {
  position: relative;

  .contact-section-lead {
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.contact-quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: linear-gradient(
    145deg,
    rgba(20, 23, 27, 0.95) 0%,
    rgba(14, 16, 19, 0.98) 100%
  );
  transition: var(--transition);
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top right,
      rgba(197, 160, 89, 0.12),
      transparent 55%
    );
    opacity: 0;
    transition: var(--transition);
  }

  &:hover,
  &:focus-visible {
    color: inherit;
    transform: translateY(-6px);
    border-color: rgba(197, 160, 89, 0.55);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(197, 160, 89, 0.15);

    &::before {
      opacity: 1;
    }

    .contact-quick-icon {
      border-color: var(--gold);
      color: var(--gold-light);
      box-shadow: 0 0 20px rgba(197, 160, 89, 0.25);
    }

    .contact-quick-value {
      color: var(--gold-light);
    }
  }

  h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 1;
  }

  .contact-quick-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
  }

  .contact-quick-value {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }

  .contact-quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
  }
}

.contact-quick-card-static {
  cursor: default;

  &:hover {
    transform: translateY(-6px);
  }
}

.contact-form-card-page {
  height: auto;
}

.contact-map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.28);
  background: var(--dark-card);
  min-height: 280px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);

  iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
  }
}

.contact-aside-card {
  height: auto;
}

.contact-trust-list {
  li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;

    i {
      color: var(--gold);
      font-size: 0.75rem;
      margin-top: 4px;
      flex-shrink: 0;
    }

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

.contact-social-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);

  .contact-social-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

/* ================================
   Offers
================================ */
.offer-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: var(--dark-card);
  height: 100%;
  transition: var(--transition);

  &:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);

    .offer-media img {
      transform: scale(1.05);
    }
  }

  .offer-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;

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

  .offer-body {
    padding: 1.25rem 1.35rem 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.45rem;
  }

  p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }
}

/* ================================
   CTA Book Section (Home)
================================ */
.cta-book-section {
  position: relative;
  background-color: #eee4d7;
  padding: 3rem 0;
}

.cta-book-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(193, 161, 122, 0.35);
  border-radius: 32px;
  padding: 2.5rem 2.75rem;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(135, 105, 70, 0.08);
}

.cta-book-copy {
  padding-inline-end: 1rem;
}

.cta-book-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  color: #1a1614;
  margin-bottom: 0.75rem;

  .font-script {
    font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  }
}

.cta-book-desc {
  color: #5e564f;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 0;
}

.cta-book-flourish {
  width: 140px;
  margin-top: 1rem;
  color: rgba(176, 135, 78, 0.55);
}

.cta-form-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7068;
}

.cta-input-shell {
  position: relative;
}

.cta-form-control {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(188, 155, 117, 0.45);
  background: #f4eee7;
  border-radius: 999px;
  padding: 0 2.75rem 0 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #26211c;
  outline: none;
  appearance: none;
  transition: var(--transition);

  &::placeholder {
    color: rgba(38, 33, 28, 0.42);
  }

  &:focus {
    border-color: #9f753e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(176, 135, 78, 0.18);
  }
}

.cta-form-select {
  cursor: pointer;
}

.cta-input-icon {
  position: absolute;
  inset-inline-end: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a47a41;
  font-size: 0.82rem;
  pointer-events: none;
}

.cta-security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #6e6761;
  line-height: 1.45;

  i {
    color: #a47a41;
    font-size: 0.9rem;
  }
}

.cta-book-submit-row {
  .btn-consultation-submit {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 34px;
    border-radius: 10px;
    background: linear-gradient(180deg, #221f1c 0%, #0d0c0a 100%);
    color: #d6b272;
    border: 1px solid rgba(214, 178, 114, 0.28);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;

    &:hover {
      background: linear-gradient(180deg, #2b2723 0%, #151310 100%);
      color: #fae1ad;
      border-color: rgba(214, 178, 114, 0.6);
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .fa-arrow-right-long {
      transition: transform 0.3s ease;
    }

    &:hover .fa-arrow-right-long {
      transform: translateX(4px);
    }
  }
}

/* ================================
   Footer
================================ */
.luxury-footer {
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  position: relative;
  overflow: hidden;

  .footer-top-cta {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(247, 241, 232, 0.12);
  }

  .footer-cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.1;
    max-width: 520px;
    color: #fff;

    .font-script {
      font-size: clamp(2.4rem, 4.6vw, 3.2rem);
    }
  }

  .footer-cta-note {
    max-width: 240px;
    text-align: end;
    font-size: 0.82rem;
    color: #8a827a;
    line-height: 1.5;
  }

  .footer-logo {
    img {
      height: 60px;
      width: auto;
      object-fit: contain;
    }
  }

  .footer-bio {
    color: #8a827a;
    font-size: 0.82rem;
  }

  .footer-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
  }

  .footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;

    a {
      color: #8a827a;
      font-size: 0.82rem;
      transition: var(--transition);

      &:hover {
        color: var(--gold);
        padding-inline-start: 4px;
      }
    }
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8a827a;
    font-size: 0.82rem;
    margin-bottom: 10px;

    a {
      color: #8a827a;
      transition: var(--transition);

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

  .footer-contact-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.72rem;
    flex-shrink: 0;
  }

  .footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
    margin-top: 30px;
    font-size: 0.78rem;
    color: #5e5750;

    a {
      color: #c5a059;
      font-size: 0.78rem;
      transition: var(--transition);

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

  .social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);

    &:hover {
      background: var(--gold);
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
    }
  }
}

/* ================================
   Back to top & Loader
================================ */
.back-to-top {
  position: fixed;
  bottom: 55px;
  inset-inline-end: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;

  &.show {
    opacity: 1;
    visibility: visible;
  }

  &:hover {
    background: var(--gold);
    color: #0c0d0f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
  }
}

.loading {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;

  &.loaded {
    opacity: 0;
    pointer-events: none;
  }
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(197, 160, 89, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================
   RTL Direction (layout-ready)
   Set <html dir="rtl" lang="ar"> when Arabic content is added.
   Base styles use logical properties so spacing flips automatically.
================================ */
[dir="rtl"] {
  body {
    font-family: var(--font-cairo);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-cairo);
    letter-spacing: 0;
  }

  .font-heading {
    font-family: var(--font-cairo);
  }

  .font-script,
  .cta-title-script,
  .philosophy-signature {
    font-family: var(--font-script);
  }

  .eyebrow-badge {
    letter-spacing: 1.5px;
  }

  .header {
    .offcanvas.offcanvas-end {
      right: auto;
      left: 0;
      border-right: 0;
      border-left: 4px solid var(--gold) !important;
      transform: translateX(-100%);
    }

    .offcanvas.offcanvas-end.show {
      transform: none;
    }
  }

  .hero-section {
    .hero-bg-img {
      object-position: 20% center;
    }
  }

  .philosophy-section {
    .philosophy-doctor-img {
      object-position: center center;
    }
  }

  .services-section {
    .servicesSwiper .swiper-slide:nth-child(1) .service-card-wrapper {
      transform: perspective(1000px) rotateY(-10deg);
      transform-origin: left center;

      &::before {
        left: auto;
        right: -12px;
        border-radius: 0 18px 18px 0;
      }
    }

    .servicesSwiper .swiper-slide:nth-child(2) .service-card-wrapper {
      transform: perspective(1000px) rotateY(-5deg);
    }

    .servicesSwiper .swiper-slide:nth-child(4) .service-card-wrapper {
      transform: perspective(1000px) rotateY(5deg);
    }

    .servicesSwiper .swiper-slide:nth-child(5) .service-card-wrapper {
      transform: perspective(1000px) rotateY(10deg);
      transform-origin: right center;

      &::after {
        right: auto;
        left: -12px;
        border-radius: 18px 0 0 18px;
      }
    }
  }

  .btn-gold-pill .fa-arrow-right-long,
  .btn-dark-pill .fa-arrow-right-long,
  .btn-gold-outline .fa-arrow-right-long,
  .hover-opacity .fa-arrow-right-long {
    transform: scaleX(-1);
  }
}
