:root {
  /* Primary Brand */
  --primary: #6a2e7a; /* Royal Purple */
  --primary-dark: #4e1f5a;
  --primary-light: #8d5a9e;

  /* Gold Palette */
  --gold: #d3b05b; /* Main Gold */
  --gold-light: #f5d062; /* Highlight */
  --gold-dark: #a67c2d; /* Deep Gold */
  --gold-gradient: linear-gradient(
    135deg,
    #f8de7e 0%,
    #d4af37 35%,
    #a67c2d 70%,
    #f5d062 100%
  );

  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f9f6f8;
  --black: #1c1c1c;
  --text: #3a3a3a;
  --gray: #777777;
  --border: #e8e1ea;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-light: #faf7fb;
  --section-bg: #f6f0f8;

  /* Shadows */
  --shadow: 0 15px 40px rgba(106, 46, 122, 0.15);
  --shadow-hover: 0 20px 50px rgba(106, 46, 122, 0.25);

  /* Border Radius */
  --radius: 12px;
  --radius-lg: 20px;
}
/*  */
/* ===========================
   GOOGLE FONTS VARIABLES
=========================== */

:root {
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
  --font-script: "Great Vibes", cursive;
}

/* ===========================
   RESET
=========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: min(1320px, 92%);
  margin: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================
      FLOATING CONTACT
=========================== */

.floating-contact-btn {
  position: fixed;
  bottom: 28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 25px;
  z-index: 9997;
  box-shadow: 0 16px 35px rgba(28, 28, 28, 0.22);
  isolation: isolate;
  animation: floatingContactVibrate 2.8s ease-in-out infinite;
}

.floating-contact-btn::before,
.floating-contact-btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: currentColor;
  opacity: 0.22;
  z-index: -1;
  animation: floatingContactWave 2.2s ease-out infinite;
}

.floating-contact-btn::after {
  animation-delay: 0.7s;
}

.floating-contact-btn i {
  position: relative;
  z-index: 1;
}

.floating-contact-btn:hover,
.floating-contact-btn:focus-visible {
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(28, 28, 28, 0.28);
}

.floating-call-btn {
  left: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.floating-whatsapp-btn {
  right: 24px;
  background: linear-gradient(135deg, #25d366, #128c4a);
}

@keyframes floatingContactWave {
  0% {
    opacity: 0.32;
    transform: scale(0.85);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes floatingContactVibrate {
  0%,
  8%,
  16%,
  24%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  4%,
  20% {
    transform: translate3d(-1px, 0, 0) rotate(-5deg);
  }

  12% {
    transform: translate3d(1px, 0, 0) rotate(5deg);
  }
}

@media (max-width: 520px) {
  .floating-contact-btn {
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .floating-call-btn {
    left: 16px;
  }

  .floating-whatsapp-btn {
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact-btn,
  .floating-contact-btn::before,
  .floating-contact-btn::after {
    animation: none;
  }
}

/* ===========================
      HEADER
=========================== */

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: var(--primary);
}

.navbar {
  height: 88px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* ===========================
        LOGO
=========================== */

.logo img {
  height: 62px;
}

/* ===========================
      DESKTOP MENU
=========================== */

.nav-menu {
  display: flex;

  align-items: center;

  gap: 34px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--white);

  font-size: 16px;

  font-weight: 500;

  display: flex;

  align-items: center;

  gap: 6px;

  height: 88px;

  transition: 0.3s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold-light);
}

/* underline */

.nav-menu > li > a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 22px;

  width: 0;

  height: 2px;

  background: var(--gold-light);

  transition: 0.3s;
}

.nav-menu > li > a:hover::after {
  width: 100%;
}

/* ===========================
       DROPDOWN
=========================== */

.dropdown-menu {
  position: absolute;

  left: 0;

  top: 110%;

  width: 240px;

  background: #fff;

  border-radius: 10px;

  overflow: hidden;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;

  visibility: visible;

  top: 100%;
}

.dropdown-menu li a {
  display: block;

  padding: 14px 20px;

  color: var(--text);

  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: var(--primary);

  color: white;
}

/* ===========================
      RIGHT SIDE
=========================== */

.nav-right {
  display: flex;

  align-items: center;

  gap: 24px;
}

.phone {
  color: white;

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 16px;

  font-weight: 500;
}

.phone i {
  color: var(--gold-light);

  font-size: 18px;
}

/* ===========================
      BUTTON
=========================== */

.book-btn {
  background: var(--gold-gradient);

  color: var(--primary-dark);

  padding: 13px 28px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.book-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===========================
     MOBILE BUTTON
=========================== */

.menu-toggle {
  display: none;

  color: white;

  font-size: 28px;
}

/* ===========================
        SIDEBAR
=========================== */

.mobile-sidebar {
  position: fixed;

  top: 0;

  left: -320px;

  width: 300px;

  height: 100vh;

  background: var(--primary);

  transition: 0.35s;

  z-index: 9999;

  overflow-y: auto;
}

.mobile-sidebar.active {
  left: 0;
}

/* ===========================
    SIDEBAR HEADER
=========================== */

.sidebar-header {
  height: 90px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 20px;
}

.sidebar-header img {
  height: 55px;
}

.close-sidebar {
  color: white;

  font-size: 26px;
}

/* ===========================
      SIDEBAR MENU
=========================== */

.sidebar-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-menu a,
.mobile-dropdown-btn {
  width: 100%;

  padding: 18px 22px;

  color: white;

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-size: 16px;
}

.mobile-dropdown-menu {
  display: none;

  background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-menu li a {
  padding-left: 45px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

/* ===========================
      SIDEBAR FOOTER
=========================== */

.sidebar-footer {
  padding: 25px;
}

.sidebar-phone {
  color: white;

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;
}

.sidebar-book-btn {
  display: block;

  width: 100%;

  text-align: center;

  padding: 14px;

  border-radius: 50px;

  background: var(--gold-gradient);

  color: var(--primary-dark);

  font-weight: 600;
}

/* ===========================
       OVERLAY
=========================== */

.overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 9998;
}

.overlay.active {
  opacity: 1;

  visibility: visible;
}

/* ===========================
     RESPONSIVE
=========================== */

@media (max-width: 1100px) {
  .nav-menu,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    height: 58px;
  }

  .navbar {
    height: 82px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 94%;
  }

  .logo img {
    height: 52px;
  }

  .navbar {
    height: 76px;
  }
}

@media (max-width: 400px) {
  .mobile-sidebar {
    width: 280px;
  }
}

/*====================================
            FOOTER MAP
=====================================*/

.footer-map-section {
  position: relative;
  padding: 86px 0;
  background: radial-gradient(
      circle at 12% 18%,
      rgba(245, 208, 98, 0.16),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary) 58%,
      #35123f 100%
    );
}

.footer-map-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(245, 208, 98, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-map-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.footer-map-content span {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-map-content h2 {
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.08;
}

.footer-map-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

.footer-map-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.footer-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

@media (max-width: 900px) {
  .footer-map-card {
    grid-template-columns: 1fr;
  }

  .footer-map-content {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .footer-map-section {
    padding: 64px 0;
  }

  .footer-map-card {
    padding: 14px;
    border-radius: 20px;
  }

  .footer-map-content {
    padding: 24px 14px;
  }

  .footer-map-content h2 {
    font-size: 32px;
  }

  .footer-map-frame,
  .footer-map-frame iframe {
    min-height: 330px;
  }
}
/*====================================
            FOOTER
=====================================*/

.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.5fr 1.2fr;
  gap: 60px;
}

/*==============================
        ABOUT
==============================*/

.footer-about img {
  width: 240px;
  margin-bottom: 30px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 30px;
}

.footer-about blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  color: var(--gold-light);
  font-style: italic;
  font-family: var(--font-script);
  font-size: 22px;
}

/*==============================
      FOOTER TITLE
==============================*/

.footer h3 {
  position: relative;
  margin-bottom: 35px;
  color: var(--gold-light);
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  padding-left: 55px;
}

.footer h3::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 30px;
  height: 2px;

  background: var(--gold);
}

/*==============================
      LINKS
==============================*/

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);

  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);

  padding-left: 8px;
}

/*==============================
      SERVICES
==============================*/

.service-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.service-list ul {
  display: flex;

  flex-direction: column;

  gap: 16px;
}

.service-list li {
  color: rgba(255, 255, 255, 0.85);

  transition: 0.3s;

  cursor: default;
}

.service-list li:hover {
  color: var(--gold-light);

  transform: translateX(6px);
}

/*==============================
      CONTACT
==============================*/

.footer-contact ul li {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  color: rgba(255, 255, 255, 0.85);

  line-height: 1.7;
}

.footer-contact i {
  color: var(--gold-light);

  font-size: 20px;

  margin-top: 4px;

  min-width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);

  transition: 0.3s;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

/*==============================
      SOCIAL
==============================*/

.footer-social {
  display: flex;

  gap: 15px;

  margin-top: 35px;
}

.footer-social a {
  width: 48px;
  height: 48px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;

  justify-content: center;

  align-items: center;

  color: var(--gold-light);

  transition: 0.35s;
}

.footer-social a:hover {
  background: var(--gold-gradient);

  color: var(--primary-dark);

  transform: translateY(-5px);
}

/*==============================
      FOOTER BOTTOM
==============================*/

.footer-bottom {
  margin-top: 70px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding: 22px 0;
}

.footer-bottom-content {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom div {
  display: flex;

  align-items: center;

  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);

  transition: 0.3s;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.35);
}

/*====================================
          TABLET
=====================================*/

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 50px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}

/*====================================
            MOBILE
=====================================*/

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 45px;

    text-align: center;
  }

  .footer h3 {
    padding-left: 0;
  }

  .footer h3::before {
    left: 50%;

    transform: translateX(-50%);

    top: -15px;
  }

  .footer-about img {
    margin: auto auto 25px;
  }

  .footer-about blockquote {
    border-left: none;

    border-top: 3px solid var(--gold);

    padding-top: 18px;

    padding-left: 0;
  }

  .footer-contact ul li {
    justify-content: center;

    text-align: left;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;

    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;

    flex-wrap: wrap;
  }
}

/*====================================
          SMALL MOBILE
=====================================*/

@media (max-width: 480px) {
  .footer {
    padding-top: 50px;
  }

  .footer h3 {
    font-size: 26px;
  }

  .footer-about img {
    width: 200px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }

  .service-list {
    gap: 10px;
  }
}
/*=========================================
            HERO SECTION
=========================================*/

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/*==============================
        LEFT SIDE
==============================*/

.hero-left {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

/*==============================
        RIGHT SIDE
==============================*/

.hero-right {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 70px min(7vw, 80px);
  background: transparent;
}

/* Decorative Circle */

.hero-right::before {
  display: none;
}

.hero-right::after {
  display: none;
}

/*==============================
        SLIDER
==============================*/

.hero-slider {
  position: relative;

  width: 100%;

  height: 100%;
}

.hero-slide {
  position: absolute;

  inset: 0;

  opacity: 0;

  visibility: hidden;

  transition: 1s ease;
}

.hero-slide.active {
  opacity: 1;

  visibility: visible;
}

.hero-slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: top;
}

/*==============================
      IMAGE OVERLAY
==============================*/

.hero-left::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to left,
    rgba(38, 13, 44, 0.9) 0%,
    rgba(38, 13, 44, 0.66) 38%,
    rgba(38, 13, 44, 0.22) 68%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

/*==============================
        ARROWS
==============================*/

.hero-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(10px);

  color: #fff;

  font-size: 20px;

  z-index: 50;

  transition: 0.35s;

  cursor: pointer;
}

.hero-arrow:hover {
  background: var(--gold-gradient);

  color: var(--primary-dark);
}

.hero-arrow.prev {
  left: 25px;
}

.hero-arrow.next {
  right: 25px;
}

/*==============================
            DOTS
==============================*/

.hero-dots {
  position: absolute;

  left: 50%;

  bottom: 30px;

  transform: translateX(-50%);

  display: flex;

  gap: 12px;

  z-index: 50;
}

.hero-dots .dot {
  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.35);

  cursor: pointer;

  transition: 0.35s;
}

.hero-dots .dot.active {
  background: var(--gold-light);

  transform: scale(1.2);
}

/*==============================
        CONTENT AREA
==============================*/

.hero-glass {
  position: relative;

  z-index: 10;

  width: 100%;

  max-width: 620px;

  margin-left: auto;
}
/*=========================================
        GLASS CARD
=========================================*/

.hero-glass {
  padding: 0;

  animation: glassFade 0.8s ease;
}

.hero-mobile-image {
  display: none;
}

/*=========================================
        TAG
=========================================*/

.hero-tag {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 22px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: var(--gold-light);

  text-transform: uppercase;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 2px;

  margin-bottom: 12px;
}

/*=========================================
        SUB TITLE
=========================================*/

.hero-subtitle {
  font-family: var(--font-body);

  color: #f8efff;

  font-size: 18px;

  font-weight: 500;

  margin-bottom: 8px;

  line-height: 1.6;
}

/*=========================================
        TITLE
=========================================*/

.hero-title {
  font-family: var(--font-heading);

  color: #fff;

  font-size: 66px;

  line-height: 1.1;

  margin-bottom: 15px;
}

.hero-title span {
  display: block;

  color: var(--gold-light);

  font-family: var(--font-script);

  font-size: 70px;

  font-weight: 400;

  margin-top: 8px;
}

/*=========================================
        DESCRIPTION
=========================================*/

.hero-description {
  color: rgba(255, 255, 255, 0.92);

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 20px;
}

/*=========================================
        BUTTONS
=========================================*/

.hero-buttons {
  display: flex;

  gap: 18px;

  margin-bottom: 15px;

  flex-wrap: wrap;
}

.btn {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  min-width: 190px;

  height: 56px;

  border-radius: 50px;

  font-size: 15px;

  font-weight: 600;

  transition: 0.35s;
}

.btn-primary {
  background: var(--gold-gradient);

  color: var(--primary-dark);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);

  color: #fff;

  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: #fff;

  color: var(--primary);
}

/*=========================================
        FEATURE BOXES
=========================================*/

.hero-features {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}

.feature-card {
  flex: 1;

  min-width: 220px;

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 18px;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 18px;

  transition: 0.35s;
}

.feature-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.16);
}

.feature-card i {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: var(--gold-gradient);

  color: var(--primary-dark);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 22px;

  flex-shrink: 0;
}

.feature-card h4 {
  color: #fff;

  font-size: 20px;

  margin-bottom: 5px;

  font-family: var(--font-heading);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.85);

  font-size: 14px;

  margin: 0;
}

/*=========================================
        ANIMATION
=========================================*/

@keyframes glassFade {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}
/*=========================================
        1400px
=========================================*/

@media (max-width: 1400px) {
  .hero-title {
    font-size: 56px;
  }

  .hero-title span {
    font-size: 60px;
  }

  .hero-glass {
    padding: 0;
  }
}

/*=========================================
        1200px
=========================================*/

@media (max-width: 1200px) {
  .hero {
    min-height: 850px;
  }

  .hero-left {
    width: 100%;
  }

  .hero-right {
    width: 100%;
    min-height: 850px;
    padding: 45px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-title span {
    font-size: 54px;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn {
    min-width: 170px;
  }
}

/*=========================================
        TABLET
=========================================*/

@media (max-width: 992px) {
  .hero {
    min-height: 760px;
  }

  .hero-left {
    width: 100%;
    height: 100%;
  }

  .hero-right {
    width: 100%;
    min-height: 760px;
    padding: 40px 25px;
  }

  .hero-glass {
    max-width: 100%;
  }

  .hero-arrow {
    width: 52px;

    height: 52px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-title span {
    font-size: 50px;
  }

  .hero-buttons {
    margin-bottom: 35px;
  }

  .hero-features {
    gap: 15px;
  }
}

/*=========================================
        MOBILE
=========================================*/

@media (max-width: 768px) {
  .hero {
    min-height: 820px;
  }

  .hero-left {
    height: 100%;
  }

  .hero-left::after {
    background: linear-gradient(
      to top,
      rgba(38, 13, 44, 0.92) 0%,
      rgba(38, 13, 44, 0.68) 42%,
      rgba(38, 13, 44, 0.24) 72%,
      rgba(0, 0, 0, 0.04) 100%
    );
  }

  .hero-right {
    min-height: 820px;
    align-items: flex-end;
    padding: 20px;
  }

  .hero-glass {
    padding: 0;
  }

  .hero-mobile-image {
    display: block;
    width: 100%;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid rgba(245, 208, 98, 0.32);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    aspect-ratio: 4 / 3;
  }

  .hero-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }

  .hero-tag {
    font-size: 11px;

    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-title span {
    font-size: 38px;
  }

  .hero-description {
    font-size: 15px;

    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
  }

  .feature-card {
    min-width: 100%;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 15px;
  }
}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width: 480px) {
  .hero {
    min-height: 760px;
  }

  .hero-left {
    height: 100%;
  }

  .hero-right {
    min-height: 760px;
  }

  .hero-glass {
    padding: 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-title span {
    font-size: 32px;
  }

  .hero-description {
    font-size: 14px;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-card i {
    width: 48px;

    height: 48px;

    font-size: 18px;
  }

  .feature-card h4 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn {
    height: 50px;
  }
}

/*=========================================
        IMAGE ANIMATION
=========================================*/

.hero-slide img {
  animation: heroZoom 7s linear infinite;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/*=========================================
        SMOOTH
=========================================*/

.hero-glass,
.feature-card,
.btn,
.hero-arrow {
  transition: 0.35s ease;
}

/*=========================================
          FEATURED SERVICES
=========================================*/

.featured-services {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fff 58%,
    #fbf6ee 58%,
    #fff 100%
  );
}

.featured-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 10% 35%,
      rgba(12, 158, 78, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 70%,
      rgba(211, 176, 91, 0.13),
      transparent 32%
    );
  pointer-events: none;
}

.featured-services .container {
  position: relative;
  z-index: 1;
}

.services-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 62px;
}

.services-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.services-heading h2 {
  color: #222832;
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.08;
}

.services-heading em,
.services-heading strong {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 400;
}

.services-heading strong {
  display: block;
}

.services-slider {
  position: relative;
}

.services-window {
  overflow: hidden;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.services-track {
  display: flex;
  gap: 28px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.service-card {
  flex: 0 0 calc((100% - 56px) / 3);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(106, 46, 122, 0.12);
  border-radius: 14px;
  /* box-shadow: 0 24px 55px rgba(32, 36, 45, 0.08); */
}

.service-image {
  position: relative;
  height: 255px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-image span {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-dark);
  color: var(--gold);
  font-size: 20px;
  box-shadow: 0 12px 24px rgba(31, 219, 115, 0.28);
}

.service-content {
  min-height: 130px;
  padding: 26px 26px 28px;
}

.service-content h3 {
  margin-bottom: 12px;
  color: #202832;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.service-content p {
  color: #70737a;
  font-size: 15px;
  line-height: 1.65;
}

.services-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(106, 46, 122, 0.9);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 18px 35px rgba(106, 46, 122, 0.22);
  transition: 0.3s ease;
}

.services-arrow:hover {
  background: var(--gold-gradient);
  color: var(--primary-dark);
}

.services-prev {
  left: 0;
}

.services-next {
  right: 0;
}

.services-actions {
  margin-top: 48px;
  text-align: center;
}

.services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d9ad12, #c79804);
  color: #111;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.services-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(199, 152, 4, 0.24);
}

@media (max-width: 1200px) {
  .services-window {
    width: calc(100% - 90px);
  }
}

@media (max-width: 900px) {
  .featured-services {
    padding: 72px 0 65px;
  }

  .services-heading h2 {
    font-size: 38px;
  }

  .service-card {
    flex-basis: calc((100% - 28px) / 2);
  }
}

@media (max-width: 640px) {
  .services-heading {
    margin-bottom: 40px;
  }

  .services-heading span {
    letter-spacing: 4px;
    font-size: 12px;
  }

  .services-heading h2 {
    font-size: 30px;
  }

  .services-window {
    width: calc(100% - 58px);
  }

  .services-track {
    gap: 18px;
  }

  .service-card {
    flex-basis: 100%;
  }

  .service-image {
    height: 230px;
  }

  .service-content {
    min-height: 150px;
    padding: 22px;
  }

  .services-arrow {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}

/*=====================================
        MINI GALLERY
======================================*/

.mini-gallery-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(106, 46, 122, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #fff 0%, #f8f4fa 100%);
}

.mini-gallery-heading {
  max-width: 620px;
  margin: 0 auto 42px;
  text-align: center;
}

.mini-gallery-heading span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.mini-gallery-heading h2 {
  color: #202832;
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.12;
}

.mini-gallery-heading h2 em {
  color: var(--primary);
  font-style: italic;
}

.mini-gallery-heading p {
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: #6c6f78;
  font-size: 13px;
  box-shadow: 0 18px 40px rgba(106, 46, 122, 0.1);
}

.mini-gallery-rail {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 28px;
}

.mini-gallery-rail::before,
.mini-gallery-rail::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.mini-gallery-rail::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.mini-gallery-rail::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.mini-gallery-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding-left: max(24px, calc((100vw - 1320px) / 2));
  animation: miniGallerySlide 34s linear infinite;
}

.mini-gallery-track:hover {
  animation-play-state: paused;
}

.mini-gallery-card {
  position: relative;
  flex: 0 0 178px;
  height: 230px;
  overflow: hidden;
  border-radius: 42px;
  background: var(--primary-dark);
  box-shadow: 0 20px 44px rgba(106, 46, 122, 0.16);
  transition: 0.35s ease;
}

.mini-gallery-card:hover {
  flex-basis: 250px;
  border-radius: 30px;
  transform: translateY(-8px);
}

.mini-gallery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 3px;
}

.mini-gallery-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-gallery-images img:first-child {
  grid-row: span 2;
}

.mini-gallery-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(53, 18, 63, 0.92) 100%
  );
  color: #fff;
  opacity: 0;
  transition: 0.35s ease;
}

.mini-gallery-card:hover .mini-gallery-label {
  opacity: 1;
}

.mini-gallery-label strong {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.1;
}

.mini-gallery-label span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.mini-gallery-action {
  margin-top: 28px;
  text-align: center;
}

.mini-gallery-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 50px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.mini-gallery-action a:hover {
  transform: translateY(-4px);
  background: var(--gold-gradient);
  color: var(--primary-dark);
  box-shadow: 0 18px 34px rgba(106, 46, 122, 0.18);
}

@keyframes miniGallerySlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 700px) {
  .mini-gallery-section {
    padding: 68px 0;
  }

  .mini-gallery-heading h2 {
    font-size: 32px;
  }

  .mini-gallery-card {
    flex-basis: 142px;
    height: 196px;
    border-radius: 34px;
  }

  .mini-gallery-card:hover {
    flex-basis: 210px;
  }
}

/*=====================================
        STATS STRIP
======================================*/

.stats-strip {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  /* background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(135deg, #f9d765 0%, #d7a017 42%, #f3c84d 72%, #b98308 100%); */
  background-color: var(--primary);
  isolation: isolate;
}

.stats-strip::before,
.stats-strip::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.stats-strip::before {
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, 0.32) 48%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-120%);
}

.stats-strip.is-visible::before {
  animation: statShine 2.8s ease 0.25s forwards;
}

.stats-strip::after {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  opacity: 0.65;
  z-index: 0;
}

.stats-strip .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  gap: 34px;
}

.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 126px;
  gap: 24px;
  padding: 24px 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  box-shadow: 0 22px 46px rgba(120, 78, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.stat-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    transparent 45%
  );
  pointer-events: none;
}

.stat-item:hover {
  transform: translateY(-6px) scale(1.01);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 56px rgba(105, 68, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.stats-strip.is-visible .stat-item {
  animation: statFadeUp 0.85s cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
}

.stats-strip.is-visible .stat-item:nth-child(2) {
  animation-delay: 0.16s;
}

.stats-strip.is-visible .stat-item:nth-child(3) {
  animation-delay: 0.32s;
}

.stat-icon {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 38px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(132, 86, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  filter: drop-shadow(0 8px 0 rgba(185, 139, 6, 0.08));
}

.stats-strip.is-visible .stat-icon {
  animation: statIconPulse 2.4s ease-in-out 0.8s infinite;
}

.stat-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.stat-copy strong {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(106, 64, 0, 0.24);
}

.stat-copy p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 2px;
  text-shadow: 0 8px 18px rgba(106, 64, 0, 0.16);
}

.stat-copy p strong {
  display: inline;
  font-size: 24px;
  line-height: 1;
}

@keyframes statFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes statShine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes statIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 28px rgba(132, 86, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 18px 36px rgba(132, 86, 0, 0.24),
      0 0 0 10px rgba(255, 255, 255, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }
}

@media (max-width: 1100px) {
  .stats-grid {
    gap: 22px;
  }

  .stat-icon {
    width: 62px;
    height: 62px;
    font-size: 40px;
  }

  .stat-copy p {
    font-size: 17px;
    letter-spacing: 2px;
  }

  .stat-copy strong {
    font-size: 40px;
  }
}

@media (max-width: 820px) {
  .stats-strip {
    padding: 44px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .stat-item {
    justify-content: center;
    min-height: auto;
  }

  .stat-copy {
    width: min(420px, 100%);
  }
}

@media (max-width: 520px) {
  .stat-item {
    gap: 18px;
  }

  .stat-icon {
    width: 46px;
    height: 46px;
    font-size: 32px;
  }

  .stat-copy {
    gap: 10px;
  }

  .stat-copy strong {
    font-size: 34px;
  }

  .stat-copy p {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .stat-copy p strong {
    font-size: 22px;
  }
}

/*=====================================
        MEET SECTION
======================================*/

.meet-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: radial-gradient(
      circle at 18% 12%,
      rgba(245, 208, 98, 0.14),
      transparent 26%
    ),
    linear-gradient(135deg, #4e1f5a 0%, #6a2e7a 52%, #35123f 100%);
  color: #fff;
}

.meet-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(135deg, #fff 25%, transparent 25%) 0 0 / 18px 12px
      repeat-x,
    linear-gradient(225deg, #fff 25%, transparent 25%) 9px 0 / 18px 12px
      repeat-x;
  opacity: 0.96;
}

.meet-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(
      circle at 86% 80%,
      rgba(211, 176, 91, 0.18),
      transparent 24%
    );
  pointer-events: none;
}

.meet-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 74px;
}

.meet-content {
  text-align: center;
  opacity: 0;
  transform: translateX(-42px);
}

.meet-section.is-visible .meet-content {
  animation: meetSlideLeft 0.9s ease forwards;
}

.meet-script {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-family: var(--font-script);
  font-size: 58px;
  line-height: 1;
}

.meet-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 38px;
}

.meet-heading-row span {
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}

.meet-heading-row h2 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.meet-flower {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 22px;
}

.meet-section.is-visible .meet-flower i {
  animation: meetGemPulse 1.8s ease-in-out infinite;
}

.meet-section.is-visible .meet-flower i:nth-child(2) {
  animation-delay: 0.25s;
}

.meet-content h3,
.meet-founder-name {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.meet-founder-title {
  display: block;
  margin-bottom: 26px !important;
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 15px !important;
  font-weight: 500;
  letter-spacing: 0.6px;
  opacity: 0.95;
}

.founder-highlight-card {
  display: block;
  margin: 16px 0 20px;
  padding: 12px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: rgba(106, 46, 122, 0.05);
}

.founder-highlight-card h3 {
  margin-bottom: 2px;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.founder-highlight-card span {
  display: block;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.meet-content p {
  max-width: 660px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
}

.meet-content p:last-of-type {
  margin-bottom: 40px;
}

.meet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 50px;
  border-radius: 6px;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: 0.3s ease;
}

.meet-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.meet-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(42px);
}

.meet-section.is-visible .meet-image {
  animation: meetSlideRight 0.9s ease 0.15s forwards;
}

.meet-image::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(245, 208, 98, 0.55);
  border-radius: 8px;
  z-index: -1;
}

.meet-image img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 0.98;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

@keyframes meetSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-42px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes meetSlideRight {
  from {
    opacity: 0;
    transform: translateX(42px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes meetGemPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-4px) scale(1.1);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .meet-wrapper {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .meet-image {
    max-width: 560px;
    margin: auto;
  }
}

@media (max-width: 640px) {
  .meet-section {
    padding: 70px 0;
  }

  .meet-script {
    font-size: 48px;
  }

  .meet-heading-row {
    gap: 14px;
  }

  .meet-heading-row span {
    width: 24px;
  }

  .meet-heading-row h2 {
    font-size: 18px;
    line-height: 1.35;
  }

  .meet-content h3 {
    margin-bottom: 30px;
    font-size: 32px;
  }

  .meet-content p {
    font-size: 15px;
    text-align: center;
  }
}

/*=====================================
        BRAND ABOUT SECTION
======================================*/

.brand-about-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: radial-gradient(
      circle at 78% 16%,
      rgba(211, 176, 91, 0.14),
      transparent 24%
    ),
    linear-gradient(135deg, #fbf7fc 0%, #fff 52%, #f7eff9 100%);
}

.brand-about-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 54px;
  min-height: 520px;
  padding: 58px 64px;
  border: 1px solid rgba(106, 46, 122, 0.28);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(106, 46, 122, 0.12);
}

.brand-about-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(211, 176, 91, 0.28);
  border-radius: 34px;
  pointer-events: none;
}

.brand-about-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  opacity: 0;
  transform: translateX(-34px);
}

.brand-about-section.is-visible .brand-about-content {
  animation: brandAboutLeft 0.85s ease forwards;
}

.brand-about-kicker {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.brand-about-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 34px;
  height: 3px;
  background: var(--gold);
}

.brand-about-content h2 {
  max-width: 450px;
  margin-bottom: 22px;
  color: #202832;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
}

.brand-about-content p {
  margin-bottom: 16px;
  color: #555b64;
  font-size: 15px;
  line-height: 1.8;
}

.brand-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  height: 52px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.brand-about-btn:hover {
  transform: translateY(-4px);
  background: var(--gold-gradient);
  color: var(--primary-dark);
  box-shadow: 0 16px 34px rgba(106, 46, 122, 0.22);
}

.brand-about-visual {
  position: relative;
  z-index: 2;
  min-height: 430px;
  opacity: 0;
  transform: translateX(34px);
}

.brand-about-section.is-visible .brand-about-visual {
  animation: brandAboutRight 0.85s ease 0.12s forwards;
}

.brand-about-photo {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 62%;
  max-width: 360px;
  aspect-ratio: 0.68;
  overflow: hidden;
  border: 2px solid rgba(106, 46, 122, 0.35);
  border-radius: 999px;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.brand-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-about-panel {
  position: absolute;
  right: 0;
  top: 50%;
  width: 48%;
  min-width: 250px;
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 0 120px 120px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, var(--primary-dark), var(--primary));
  background-size: 46px 46px, 46px 46px, auto;
  color: #fff;
  transform: translateY(-50%);
  box-shadow: 0 28px 60px rgba(106, 46, 122, 0.22);
}

.brand-about-panel span {
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes brandAboutLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes brandAboutRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1050px) {
  .brand-about-card {
    grid-template-columns: 1fr;
    padding: 46px 34px;
  }

  .brand-about-content {
    max-width: 100%;
    text-align: center;
  }

  .brand-about-content h2,
  .brand-about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .brand-about-kicker::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .brand-about-visual {
    min-height: 440px;
    max-width: 680px;
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 620px) {
  .brand-about-section {
    padding: 68px 0;
  }

  .brand-about-card {
    padding: 38px 22px;
    border-radius: 28px;
  }

  .brand-about-card::before {
    inset: 10px;
    border-radius: 22px;
  }

  .brand-about-content h2 {
    font-size: 34px;
  }

  .brand-about-visual {
    min-height: 360px;
  }

  .brand-about-photo {
    width: 64%;
  }

  .brand-about-panel {
    min-width: 180px;
    height: 350px;
  }

  .brand-about-panel span {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

/*=====================================
        WHY CHOOSE SECTION
======================================*/

.why-choose-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: radial-gradient(
      circle at 88% 20%,
      rgba(211, 176, 91, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #fff 0%, #fbf7fc 100%);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  align-items: center;
  gap: 42px;
}

.why-choose-intro,
.why-feature {
  opacity: 0;
  transform: translateY(24px);
}

.why-choose-section.is-visible .why-choose-intro {
  animation: whyFadeUp 0.75s ease forwards;
}

.why-choose-section.is-visible .why-feature {
  animation: whyFadeUp 0.75s ease forwards;
}

.why-choose-section.is-visible .why-features .why-feature:nth-child(1) {
  animation-delay: 0.12s;
}

.why-choose-section.is-visible .why-features .why-feature:nth-child(2) {
  animation-delay: 0.24s;
}

.why-choose-section.is-visible .why-features-right .why-feature:nth-child(1) {
  animation-delay: 0.36s;
}

.why-choose-section.is-visible .why-features-right .why-feature:nth-child(2) {
  animation-delay: 0.48s;
}

.why-choose-intro span {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-choose-intro span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 34px;
  height: 3px;
  background: var(--gold);
}

.why-choose-intro h2 {
  margin-bottom: 18px;
  color: #202832;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
}

.why-choose-intro h2 em {
  color: var(--primary);
  font-style: normal;
}

.why-choose-intro p {
  max-width: 430px;
  margin-bottom: 24px;
  color: #555b64;
  font-size: 14px;
  line-height: 1.7;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 42px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.why-btn:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--primary-dark);
}

.why-features {
  border-left: 1px solid rgba(106, 46, 122, 0.18);
}

.why-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0 22px 24px;
  border-bottom: 1px solid rgba(106, 46, 122, 0.16);
}

.why-feature:last-child {
  border-bottom: none;
}

.why-feature span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid rgba(211, 176, 91, 0.7);
  background: rgba(211, 176, 91, 0.12);
  font-size: 15px;
}

.why-feature h3 {
  margin-bottom: 7px;
  color: #202832;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.why-feature p {
  color: #555b64;
  font-size: 13px;
  line-height: 1.55;
}

@keyframes whyFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-choose-intro {
    text-align: center;
  }

  .why-choose-intro p {
    margin-inline: auto;
  }

  .why-features {
    border-left: none;
  }

  .why-feature {
    padding-left: 0;
  }
}

@media (max-width: 520px) {
  .why-choose-section {
    padding: 62px 0;
  }

  .why-choose-intro h2 {
    font-size: 34px;
  }
}

/*=====================================
        ACADEMY CTA
======================================*/

.academy-cta-section {
  padding: 76px 0;
  background: #fff;
}

.academy-cta-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 54px 50px 118px;
  border-radius: 20px;
  background: linear-gradient(
      90deg,
      rgba(8, 6, 10, 0.96) 0%,
      rgba(42, 18, 49, 0.82) 48%,
      rgba(12, 9, 14, 0.56) 100%
    ),
    url("../assets/banner/banner-4.png") center / cover;
  box-shadow: 0 28px 70px rgba(106, 46, 122, 0.2);
  opacity: 0;
  transform: translateY(34px);
}

.academy-cta-section.is-visible .academy-cta-card {
  animation: academyCtaIn 0.85s ease forwards;
}

.academy-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 78% 20%,
      rgba(245, 208, 98, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.academy-cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.academy-cta-content span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.academy-cta-content h2 {
  max-width: 560px;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 50px;
  font-weight: 500;
  line-height: 0.98;
}

.academy-cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.academy-cta-list {
  position: absolute;
  z-index: 1;
  top: 80px;
  right: 54px;
  display: grid;
  gap: 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
}

.academy-cta-list li {
  position: relative;
  padding-right: 18px;
}

.academy-cta-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translateY(-50%);
}

.academy-cta-bar {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe500 0%, #f5d062 45%, #d3b05b 100%);
}

.academy-cta-bar strong {
  max-width: 360px;
  color: var(--primary-dark);
  font-size: 17px;
  line-height: 1.25;
  text-transform: uppercase;
}

.academy-cta-bar a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.academy-cta-bar a:hover {
  transform: translateY(-3px);
  background: #fff;
  color: var(--primary);
}

@keyframes academyCtaIn {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .academy-cta-card {
    padding: 42px 28px 150px;
  }

  .academy-cta-content h2 {
    font-size: 38px;
  }

  .academy-cta-list {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 28px;
    text-align: left;
  }

  .academy-cta-list li {
    padding-right: 0;
    padding-left: 18px;
  }

  .academy-cta-list li::after {
    left: 0;
    right: auto;
  }
}

@media (max-width: 640px) {
  .academy-cta-section {
    padding: 62px 0;
  }

  .academy-cta-card {
    padding: 34px 22px 172px;
    border-radius: 14px;
  }

  .academy-cta-content h2 {
    font-size: 30px;
  }

  .academy-cta-bar {
    left: 18px;
    right: 18px;
    bottom: 18px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .academy-cta-bar a {
    width: 100%;
  }
}

/*=====================================
        TESTIMONIALS
======================================*/

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 84px;
  background: radial-gradient(
      circle at 10% 18%,
      rgba(106, 46, 122, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 90% 78%,
      rgba(211, 176, 91, 0.12),
      transparent 26%
    ),
    #fff;
}

.testimonials-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.testimonials-heading > span {
  display: block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.testimonials-heading h2 {
  color: #202832;
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}

.testimonials-heading h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 10px;
  color: var(--gold-light);
  font-size: 22px;
}

.testimonials-heading p {
  color: #6f7178;
  font-size: 18px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 28px;
}

.testimonial-card {
  position: relative;
  min-height: 324px;
  padding: 34px 34px 30px;
  background: #fff;
  border: 1px solid rgba(211, 176, 91, 0.35);
  border-radius: 16px;
  box-shadow: 0 22px 52px rgba(106, 46, 122, 0.08);
  opacity: 0;
  transform: translateY(28px);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.testimonials-section.is-visible .testimonial-card {
  animation: testimonialFadeUp 0.75s ease forwards;
}

.testimonials-section.is-visible .testimonial-card:nth-child(2) {
  animation-delay: 0.16s;
}

.testimonials-section.is-visible .testimonial-card:nth-child(3) {
  animation-delay: 0.32s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(106, 46, 122, 0.28);
  box-shadow: 0 30px 64px rgba(106, 46, 122, 0.16);
}

.testimonial-card-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 14px;
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(106, 46, 122, 0.1);
  font-size: 40px;
}

.testimonial-card p {
  color: #42454c;
  font-size: 16px;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.testimonial-author span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(106, 46, 122, 0.08);
  border: 2px solid rgba(211, 176, 91, 0.55);
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
}

.testimonial-author h3 {
  color: #202832;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.testimonial-author small {
  color: #777b84;
  font-size: 14px;
}

.testimonials-action {
  margin-top: 50px;
  text-align: center;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 260px;
  height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(211, 176, 91, 0.5);
  border-radius: 50px;
  color: #202832;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 18px 34px rgba(106, 46, 122, 0.08);
  transition: 0.3s ease;
}

.google-review-btn i {
  color: var(--primary);
}

.google-review-btn:hover {
  transform: translateY(-4px);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.google-review-btn:hover i {
  color: var(--gold-light);
}

@keyframes testimonialFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 68px 0;
  }

  .testimonials-heading > span {
    letter-spacing: 4px;
    font-size: 12px;
  }

  .testimonials-heading h2 {
    font-size: 34px;
  }

  .testimonials-heading p {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }
}
/*=====================================
        CONTACT SECTION
======================================*/
.contact-info-page {
  padding: 90px 0;
  background: radial-gradient(
      circle at 90% 14%,
      rgba(211, 176, 91, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, #fff 0%, #fbf7fc 100%);
}

.contact-info-heading {
  margin-bottom: 34px;
}

.contact-info-heading h1 {
  color: #202832;
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 400;
}

.contact-info-heading h1 em {
  color: var(--primary);
  font-style: italic;
}

.contact-info-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-info-list {
  display: grid;
  gap: 24px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 106px;
  padding: 16px 20px;
  border: 1px solid rgba(211, 176, 91, 0.36);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(106, 46, 122, 0.06);
}

.contact-info-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(106, 46, 122, 0.08);
  color: var(--primary);
  font-size: 21px;
}

.contact-info-card h2 {
  margin-bottom: 5px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
}

.contact-info-card p,
.contact-info-card a {
  color: #111827;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.slot-form {
  padding: 38px;
  border: 1px solid rgba(211, 176, 91, 0.42);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(106, 46, 122, 0.08);
}

.slot-form h2 {
  margin-bottom: 10px;
  color: #34363b;
  font-size: 28px;
  font-weight: 500;
}

.slot-form > p {
  margin-bottom: 30px;
  color: #777b84;
  font-size: 16px;
}

.slot-form label {
  display: block;
  margin: 0 0 10px;
  color: #3f4248;
  font-size: 14px;
  font-weight: 600;
}

.slot-form input,
.slot-form select,
.slot-form textarea {
  width: 100%;
  height: 42px;
  margin-bottom: 24px;
  padding: 0 14px;
  border: 1px solid rgba(211, 176, 91, 0.34);
  border-radius: 10px;
  background: #fff;
  color: #33363b;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
}

.slot-form textarea {
  height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.slot-form input:focus,
.slot-form select:focus,
.slot-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(106, 46, 122, 0.08);
}

.slot-form button {
  width: 100%;
  height: 46px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.slot-form button:hover {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.slot-form button.is-loading {
  pointer-events: none;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.form-status.is-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.is-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.slot-form small {
  display: block;
  margin-top: 24px;
  color: #777b84;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 980px) {
  .contact-info-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-info-page {
    padding: 66px 0;
  }

  .contact-info-heading h1 {
    font-size: 30px;
  }

  .contact-info-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info-card span {
    margin: auto;
  }

  .slot-form {
    padding: 28px 22px;
  }
}

.contact-section {
  padding: 90px 0;
  background: #fff;
}

.contact-title {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title h2 {
  font-family: "Great Vibes", cursive;
  color: #c89a4b;
  font-size: 58px;
  font-weight: 400;
}

.contact-title h3 {
  font-size: 24px;
  letter-spacing: 2px;
  color: #333;
  margin: 8px 0;
  position: relative;
  display: inline-block;
}

.contact-title h3::before,
.contact-title h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background: #c89a4b;
}

.contact-title h3::before {
  right: 110%;
}

.contact-title h3::after {
  left: 110%;
}

.contact-icon {
  margin-top: 15px;
  color: #c89a4b;
  font-size: 18px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h4 {
  font-family: "Great Vibes", cursive;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

.contact-block {
  margin-top: 45px;
}

.contact-block h5 {
  font-family: "Great Vibes", cursive;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 800;
}

.contact-block p {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-block i {
  color: #444;
  margin-top: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #555;
  padding: 13px;
  margin-bottom: 14px;
  font-size: 14px;
  font-family: Poppins;
}

.contact-form textarea {
  height: 180px;
  resize: none;
}

.captcha-box {
  margin: 20px 0;
}

.captcha-box img {
  width: 190px;
}

.contact-form button {
  width: 120px;
  height: 46px;
  background: #000;
  color: #c89a4b;
  border: none;
  display: block;
  margin: auto;
  cursor: pointer;
  font-style: italic;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-title h2 {
    font-size: 44px;
  }

  .contact-title h3 {
    font-size: 18px;
  }

  .contact-title h3::before,
  .contact-title h3::after {
    width: 40px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-block p {
    justify-content: center;
    text-align: left;
  }

  .contact-form button {
    width: 100%;
  }

  .captcha-box img {
    width: 100%;
    max-width: 240px;
  }
}

/*=====================================
        ACADEMY PAGE
======================================*/

.academy-page-hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: linear-gradient(
      90deg,
      rgba(53, 18, 63, 0.94),
      rgba(106, 46, 122, 0.72)
    ),
    url("../assets/banner/banner-4.png") center / cover;
}

.academy-page-hero span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.academy-page-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1.05;
}

.academy-page-hero p {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .academy-page-hero h1 {
    font-size: 42px;
  }
}

/*=====================================
        GALLERY PAGE
======================================*/

.gallery-page-hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: linear-gradient(
      90deg,
      rgba(38, 13, 44, 0.9) 0%,
      rgba(38, 13, 44, 0.64) 42%,
      rgba(38, 13, 44, 0.2) 70%,
      rgba(0, 0, 0, 0.04) 100%
    ),
    url("../assets/banner/banner-3.jpg") center / cover;
}

.gallery-page-hero span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.gallery-page-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 68px;
  line-height: 1.05;
}

.gallery-page-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.8;
}

/*=====================================
        CONTACT PAGE HERO BANNER
======================================*/

.contact-page-hero {
  min-height: calc(56vh);
  display: flex;
  align-items: center;
  padding: 95px 0 85px;
  background: linear-gradient(
      90deg,
      rgba(38, 13, 44, 0.94) 0%,
      rgba(53, 18, 63, 0.84) 42%,
      rgba(38, 13, 44, 0.5) 75%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../assets/banner/banner-1.png") center / cover no-repeat;
  position: relative;
}

.contact-page-hero span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.contact-page-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1.08;
}

.contact-page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.contact-page-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .contact-page-hero {
    min-height: auto;
    padding: 70px 0 50px;
  }
  .contact-page-hero h1 {
    font-size: 40px;
  }
  .contact-page-hero p {
    font-size: 15px;
  }
}

.gallery-page-grid-section {
  padding: 82px 0 92px;
  background: radial-gradient(
      circle at 12% 14%,
      rgba(245, 208, 98, 0.16),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary) 54%,
      #35123f 100%
    );
}

.gallery-page-heading {
  margin-bottom: 42px;
  text-align: center;
}

.gallery-page-heading span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.gallery-page-heading h2 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}

.gallery-page-heading h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.gallery-filters button {
  min-width: 92px;
  height: 44px;
  padding: 0 28px;
  border: 1px solid rgba(245, 208, 98, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.gallery-filters button:hover,
.gallery-filters button.active {
  border-color: var(--gold-light);
  background: var(--gold-gradient);
  color: var(--primary-dark);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.gallery-page-grid {
  column-count: 4;
  column-gap: 14px;
  padding: 14px;
  border: 1px solid rgba(245, 208, 98, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-page-grid.is-loading {
  min-height: 360px;
  display: grid;
  place-items: center;
  column-count: initial;
}

.gallery-loading {
  width: min(420px, 100%);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 24px;
  break-inside: avoid;
  border: 1px solid rgba(245, 208, 98, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.gallery-loader-ring {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--gold-light);
  animation: galleryLoaderSpin 0.9s linear infinite;
}

.gallery-loader-ring::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: rgba(245, 208, 98, 0.18);
  box-shadow: 0 0 0 8px rgba(245, 208, 98, 0.08);
  animation: galleryLoaderPulse 1.4s ease-in-out infinite;
}

.gallery-loading strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.1;
}

.gallery-loading small {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

@keyframes galleryLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes galleryLoaderPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-work-card {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(18px);
  animation: galleryCardIn 0.45s ease forwards;
}

.gallery-work-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.gallery-work-card:nth-child(12n + 1),
.gallery-work-card:nth-child(12n + 8) {
  grid-column: auto;
  grid-row: auto;
}

.gallery-work-card:nth-child(12n + 2),
.gallery-work-card:nth-child(12n + 6),
.gallery-work-card:nth-child(12n + 10) {
  grid-column: auto;
  grid-row: auto;
}

.gallery-work-card:nth-child(12n + 5),
.gallery-work-card:nth-child(12n + 11) {
  grid-column: auto;
  grid-row: auto;
}

.gallery-work-card:nth-child(12n + 9) {
  grid-column: auto;
  grid-row: auto;
}

.gallery-work-card:hover img {
  transform: scale(1.07);
}

.gallery-work-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  border-radius: 0;
  background: rgba(53, 18, 63, 0.86);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transform: translateY(18px);
  opacity: 0;
  transition: 0.35s ease;
}

.gallery-work-card:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

@keyframes galleryCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-load-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}

.gallery-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  height: 52px;
  padding: 0 36px;
  border: 1px solid rgba(245, 208, 98, 0.65);
  border-radius: 999px;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(245, 208, 98, 0.2);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.gallery-load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32), 0 0 30px rgba(245, 208, 98, 0.4);
  border-color: var(--gold-light);
}

.gallery-load-more-btn:active {
  transform: translateY(-1px);
}

.gallery-load-more-btn i {
  font-size: 15px;
  transition: transform 0.4s ease;
}

.gallery-load-more-btn:hover i {
  transform: rotate(180deg);
}

.gallery-load-more-btn.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

.gallery-load-more-btn.is-loading i {
  animation: galleryLoaderSpin 0.8s linear infinite;
}

@media (max-width: 640px) {
  .gallery-page-hero h1 {
    font-size: 44px;
  }

  .gallery-page-heading h2 {
    font-size: 34px;
  }

  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .gallery-page-grid {
    column-count: 2;
    column-gap: 10px;
    padding: 10px;
  }

  .gallery-work-card,
  .gallery-work-card:nth-child(n) {
    margin-bottom: 10px;
  }

  .gallery-work-card:nth-child(6n + 1) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  .gallery-page-grid {
    column-count: 1;
  }
}

/*=====================================
        ABOUT PAGE
======================================*/

.about-page {
  overflow: hidden;
}

.about-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: linear-gradient(
      90deg,
      rgba(38, 13, 44, 0.9) 0%,
      rgba(38, 13, 44, 0.66) 42%,
      rgba(38, 13, 44, 0.22) 70%,
      rgba(0, 0, 0, 0.04) 100%
    ),
    url("../assets/banner/banner-1.png") center top / cover;
}

.about-hero::after {
  display: none;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero-content {
  max-width: 660px;
}

.about-hero .hero-title {
  max-width: 620px;
}

.about-hero .hero-title span {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
}

.about-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}

.about-story-section .brand-about-card {
  grid-template-columns: 1.08fr 0.92fr;
}

.about-story-section .brand-about-content {
  max-width: 660px;
}

.about-story-section .brand-about-content h2 {
  max-width: 620px;
}

.about-stats-strip .stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-stats-strip .stat-item {
  padding: 24px 22px;
}

.about-stats-strip .stat-copy {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.about-stats-strip .stat-copy p {
  font-size: 15px;
  letter-spacing: 1px;
}

.about-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-section-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-section-heading h2 {
  color: #202832;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
}

.about-vision-section {
  padding: 88px 0;
  background: radial-gradient(
      circle at 12% 18%,
      rgba(245, 208, 98, 0.13),
      transparent 26%
    ),
    linear-gradient(180deg, #fff 0%, #fbf7fc 100%);
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.about-vision-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(211, 176, 91, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 48px rgba(106, 46, 122, 0.08);
  transition: 0.3s ease;
}

.about-vision-card:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 46, 122, 0.28);
  box-shadow: 0 30px 64px rgba(106, 46, 122, 0.14);
}

.about-vision-card > span {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(211, 176, 91, 0.7);
  background: rgba(106, 46, 122, 0.08);
  color: var(--primary);
  font-size: 22px;
}

.about-vision-card h3 {
  margin-bottom: 14px;
  color: #202832;
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.1;
}

.about-vision-card p {
  color: #555b64;
  font-size: 15px;
  line-height: 1.8;
}

.about-cta-section {
  background: #fff;
}

.about-faq-section {
  padding: 88px 0;
  background: radial-gradient(
      circle at 88% 16%,
      rgba(211, 176, 91, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #fbf7fc 0%, #fff 100%);
}

.about-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.about-faq-list details {
  border: 1px solid rgba(211, 176, 91, 0.36);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(106, 46, 122, 0.06);
  overflow: hidden;
}

.about-faq-list summary {
  position: relative;
  padding: 20px 58px 20px 24px;
  color: #202832;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.about-faq-list summary::-webkit-details-marker {
  display: none;
}

.about-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(106, 46, 122, 0.08);
  color: var(--primary);
  font-size: 20px;
  transform: translateY(-50%);
}

.about-faq-list details[open] summary::after {
  content: "-";
  background: var(--primary);
  color: #fff;
}

.about-faq-list p {
  padding: 0 24px 22px;
  color: #555b64;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .about-stats-strip .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-section .brand-about-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .about-hero {
    min-height: auto;
    padding: 84px 0;
  }

  .about-hero-content {
    max-width: 100%;
  }

  .about-hero .hero-title {
    font-size: 48px;
  }

  .about-hero .hero-title span {
    font-size: 44px;
  }

  .about-vision-grid,
  .about-stats-strip .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-section-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .about-hero {
    padding: 64px 0;
  }

  .about-hero-content {
    max-width: 100%;
  }

  .about-hero .hero-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .about-hero .hero-subtitle {
    font-size: 15px;
  }

  .about-hero .hero-title {
    font-size: 38px;
  }

  .about-hero .hero-title span {
    font-size: 34px;
  }

  .about-vision-section,
  .about-faq-section {
    padding: 66px 0;
  }

  .about-section-heading span {
    letter-spacing: 3px;
  }

  .about-section-heading h2 {
    font-size: 32px;
  }

  .about-vision-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .about-faq-list summary {
    padding: 18px 52px 18px 18px;
    font-size: 15px;
  }

  .about-faq-list summary::after {
    right: 18px;
  }

  .about-faq-list p {
    padding: 0 18px 20px;
  }
}

/*=====================================
        SERVICES PAGE
======================================*/

.services-page {
  overflow: hidden;
}

.services-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: linear-gradient(
      90deg,
      rgba(38, 13, 44, 0.9) 0%,
      rgba(38, 13, 44, 0.66) 42%,
      rgba(38, 13, 44, 0.22) 70%,
      rgba(0, 0, 0, 0.04) 100%
    ),
    url("../assets/banner/banner-2.png") center top / cover;
}

.services-hero::after {
  display: none;
}

.services-hero .container {
  position: relative;
  z-index: 1;
}

.services-hero-content {
  max-width: 690px;
}

.services-hero .hero-title {
  max-width: 650px;
}

.services-hero .hero-title span {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
}

.services-list-section {
  position: relative;
  min-height: calc(90vh + 420px);
  padding: 86px 0 96px;
  background: linear-gradient(180deg, #fbf7f3 0%, #fff 20%, #fff 100%);
}

.services-list-section::before {
  content: "";
  position: absolute;
  top: 180px;
  left: 50%;
  width: min(620px, 86vw);
  height: min(620px, 86vw);
  border: 1px solid rgba(211, 176, 91, 0.08);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(211, 176, 91, 0.04),
    transparent 62%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.services-list-section .container {
  position: relative;
  z-index: 1;
}

.services-quote-card {
  width: min(680px, 92%);
  margin: -18px auto 58px;
  padding: 22px 28px 18px;
  border: 1px solid rgba(211, 176, 91, 0.26);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.services-quote-card i {
  display: block;
  margin-bottom: 9px;
  color: #bd8a6a;
  font-size: 20px;
}

.services-quote-card p {
  color: #4f4242;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.services-quote-card span {
  display: block;
  margin-top: 10px;
  color: rgba(106, 46, 122, 0.52);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.services-page-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.services-page-heading > i {
  display: block;
  margin-bottom: 12px;
  color: #bd8a6a;
  font-size: 24px;
}

.services-page-heading span {
  display: block;
  margin-bottom: 12px;
  color: rgba(106, 46, 122, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.services-page-heading h2 {
  color: #3d3636;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
}

.services-page-heading p {
  max-width: 620px;
  margin: 16px auto 0;
  color: #8a7d7d;
  font-size: 13px;
  line-height: 1.8;
}

.services-category-grid {
  position: sticky;
  top: 108px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  max-width: 1180px;
  height: calc(100vh - 128px);
  min-height: 560px;
  margin: 0 auto;
}

.services-category-tabs {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 14px;
  max-height: 100%;
  padding: 16px;
  overflow-y: auto;
  border: 1px solid rgba(211, 176, 91, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(106, 46, 122, 0.09);
  scrollbar-width: none;
}

.services-category-tabs button {
  position: relative;
  min-height: 66px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(211, 176, 91, 0.24);
  border-radius: 6px;
  background: linear-gradient(135deg, #fff 0%, #fffaf6 100%);
  color: #4d4343;
  text-align: left;
  transition: 0.3s ease;
}

.services-category-tabs button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -27px;
  width: 27px;
  height: 1px;
  background: rgba(189, 138, 106, 0.36);
  opacity: 0;
  transform: translateY(-50%);
}

.services-category-tabs button i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(189, 138, 106, 0.1);
  color: #bd8a6a;
  font-size: 17px;
}

.services-category-tabs button span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.services-category-tabs button:hover,
.services-category-tabs button.active {
  border-color: rgba(106, 46, 122, 0.34);
  background: linear-gradient(135deg, #fff 0%, #fbf7fc 54%, #fffaf1 100%);
  box-shadow: 0 16px 34px rgba(106, 46, 122, 0.11);
  transform: translateX(4px);
}

.services-category-tabs button.active::after {
  opacity: 1;
}

.services-category-tabs button.active i {
  background: var(--gold-gradient);
  color: var(--primary-dark);
}

.services-category-panel {
  height: 100%;
  min-height: 0;
  padding: 34px 34px 28px;
  overflow-y: auto;
  border: 1px solid rgba(211, 176, 91, 0.3);
  border-radius: 8px;
  background: radial-gradient(
      circle at 50% 20%,
      rgba(211, 176, 91, 0.06),
      transparent 36%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 253, 250, 0.96) 100%
    );
  box-shadow: 0 30px 70px rgba(106, 46, 122, 0.11);
  scrollbar-width: thin;
  scrollbar-color: rgba(189, 138, 106, 0.72) rgba(106, 46, 122, 0.07);
}

.services-category-tabs::-webkit-scrollbar {
  display: none;
}

.services-category-panel::-webkit-scrollbar {
  width: 8px;
}

.services-category-panel::-webkit-scrollbar-track {
  margin: 14px 0;
  border-radius: 999px;
  background: rgba(106, 46, 122, 0.07);
}

.services-category-panel::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 253, 250, 0.96);
  border-radius: 999px;
  background: linear-gradient(180deg, #f5d062 0%, #bd8a6a 48%, #6a2e7a 100%);
}

.services-category-panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f8de7e 0%, #d3b05b 44%, #6a2e7a 100%);
}

.services-category {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transition: 0.3s ease;
  display: none;
}

.services-category.active {
  display: block;
  animation: servicePanelIn 0.35s ease forwards;
}

.services-category-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto 32px;
  padding-bottom: 20px;
  text-align: center;
}

.services-category-heading span {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(189, 138, 106, 0.18);
  background: rgba(189, 138, 106, 0.1);
  color: #bd8a6a;
  font-size: 20px;
}

.services-category-heading h3 {
  color: #4b4242;
  font-family: var(--font-heading);
  font-size: 29px;
  line-height: 1.1;
}

.services-category ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 26px;
  position: relative;
  padding: 0;
}

.services-category li {
  position: relative;
  min-height: 150px;
  padding: 0 10px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: 0.3s ease;
}

.services-category li:last-child {
  border-bottom: 0;
}

.services-category li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 1px;
  border-radius: 0;
  background: rgba(189, 138, 106, 0.3);
  box-shadow: none;
  transform: translateX(-50%);
}

.services-category li::after {
  display: none;
}

.service-flow-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(189, 138, 106, 0.12);
  color: #bd8a6a;
  font-size: 15px;
  transition: 0.3s ease;
}

.services-category li:hover .service-flow-icon {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.services-category li:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.services-category strong {
  display: block;
  margin-bottom: 7px;
  color: #4d4343;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.services-category p {
  max-width: 220px;
  margin: 0 auto;
  color: #908484;
  font-size: 12px;
  line-height: 1.7;
}

@keyframes servicePanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-page-action {
  margin-top: 44px;
  text-align: center;
}

.services-faq-section a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 980px) {
  .services-list-section {
    min-height: auto;
  }

  .services-category-grid {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    gap: 24px;
  }

  .services-category-tabs {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-category-tabs button::after {
    display: none;
  }

  .services-category-tabs button:hover,
  .services-category-tabs button.active {
    transform: translateY(-2px);
  }

  .services-category-panel {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .services-category ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .services-hero {
    min-height: auto;
    padding: 84px 0;
  }

  .services-hero-content {
    max-width: 100%;
  }

  .services-hero .hero-title {
    font-size: 48px;
  }

  .services-hero .hero-title span {
    font-size: 44px;
  }

  .services-page-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .services-hero {
    padding: 64px 0;
  }

  .services-hero-content {
    max-width: 100%;
  }

  .services-hero .hero-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .services-hero .hero-title {
    font-size: 38px;
  }

  .services-hero .hero-title span {
    font-size: 34px;
  }

  .services-list-section {
    padding: 66px 0;
  }

  .services-quote-card {
    margin-bottom: 44px;
    padding: 20px 18px 16px;
  }

  .services-quote-card p {
    font-size: 17px;
  }

  .services-page-heading span {
    letter-spacing: 3px;
  }

  .services-page-heading h2 {
    font-size: 32px;
  }

  .services-category {
    padding: 0;
  }

  .services-category-heading {
    align-items: center;
  }

  .services-category-heading h3 {
    font-size: 28px;
  }

  .services-category ul {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 22px;
  }

  .services-category li {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .services-category-tabs {
    display: none;
  }

  .services-category-panel {
    padding: 24px 18px;
    border-radius: 8px;
  }

  .services-category {
    display: block;
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(189, 138, 106, 0.22);
  }

  .services-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .services-category-heading h3 {
    font-size: 25px;
  }

  .services-category ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .services-category li {
    padding-inline: 4px;
  }

  .service-flow-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .services-category strong {
    font-size: 16px;
  }

  .services-category p {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .services-category ul {
    grid-template-columns: 1fr;
  }
}

.academy-curriculum-grid .services-category {
  display: block;
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(211, 176, 91, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(106, 46, 122, 0.08);
  text-align: left;
}

.academy-curriculum-grid .services-category-heading {
  flex-direction: row;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: 0;
}

/*=====================================
        ACADEMY DETAIL PAGE
======================================*/

.academy-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: linear-gradient(
      90deg,
      rgba(38, 13, 44, 0.9) 0%,
      rgba(38, 13, 44, 0.66) 42%,
      rgba(38, 13, 44, 0.22) 70%,
      rgba(0, 0, 0, 0.04) 100%
    ),
    url("../assets/banner/banner-4.png") center top / cover;
}

.academy-hero::after {
  display: none;
}

.academy-hero .container {
  position: relative;
  z-index: 1;
}

.academy-hero-content {
  max-width: 690px;
}

.academy-hero .hero-title span {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
}

.academy-hero-note {
  margin: 0 0 26px;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.academy-training-section,
.academy-courses-section {
  position: relative;
  padding: 90px 0;
  background: radial-gradient(
      circle at 10% 14%,
      rgba(245, 208, 98, 0.12),
      transparent 25%
    ),
    linear-gradient(180deg, #fff 0%, #fbf7fc 100%);
}

.academy-training-section {
  padding: 88px 0 96px;
  background: #fff;
}

.academy-training-section .container {
  width: min(1080px, 92%);
}

.academy-training-section .services-page-heading {
  max-width: 620px;
  margin: 0 auto 54px;
  text-align: center;
}

.academy-training-section .services-page-heading span {
  margin-bottom: 10px;
  color: #6d596f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.academy-training-section .services-page-heading h2 {
  color: #25202a;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
}

.academy-courses-section {
  background: #fff;
}

.academy-curriculum-section {
  overflow: hidden;
  padding: 104px 0 112px;
  background: radial-gradient(
      circle at 18% 18%,
      rgba(245, 208, 98, 0.14),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #35123f 0%,
      var(--primary-dark) 46%,
      var(--primary) 100%
    );
}

.academy-curriculum-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.academy-curriculum-intro {
  position: sticky;
  top: 118px;
}

.academy-curriculum-intro > span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 9px 18px;
  border: 1px solid rgba(245, 208, 98, 0.5);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.academy-curriculum-intro h2 {
  max-width: 560px;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
  line-height: 0.98;
}

.academy-curriculum-intro > p {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
}

.academy-curriculum-cta {
  max-width: 430px;
  padding: 42px 34px 36px;
  border: 2px solid rgba(245, 208, 98, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.academy-curriculum-cta h3 {
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 0.98;
}

.academy-curriculum-cta p {
  max-width: 280px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.75;
}

.academy-curriculum-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 4px;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.academy-curriculum-cta small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.academy-courses-section {
  padding: 96px 0 104px;
  background: radial-gradient(
      circle at 50% 22%,
      rgba(211, 176, 91, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #f4f1f2 0%, #fff 30%, #fff 100%);
}

.academy-courses-section .container {
  width: min(1180px, 92%);
  padding: 54px 46px 56px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 34px 80px rgba(106, 46, 122, 0.1);
}

.academy-courses-section .services-page-heading {
  margin-bottom: 54px;
}

.academy-courses-section .services-page-heading h2 {
  color: #111;
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 700;
}

.academy-training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 72px;
}

.academy-training-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  padding: 0;
  text-align: center;
  transition: 0.3s ease;
}

.academy-training-grid article:hover {
  transform: translateY(-4px);
}

.academy-training-grid span {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(211, 176, 91, 0.26);
  background: #fbf5ee;
  color: #bd8a6a;
  font-size: 24px;
}

.academy-training-grid article:nth-child(2) span,
.academy-training-grid article:nth-child(5) span {
  background: #f5f0f8;
  color: var(--primary);
}

.academy-training-grid article:nth-child(3) span,
.academy-training-grid article:nth-child(6) span {
  background: #f4faf8;
  color: #3c9b85;
}

.academy-training-grid h3 {
  max-width: 230px;
  margin: 0 auto 10px;
  color: #25202a;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
}

.academy-training-grid p {
  max-width: 250px;
  margin: 0 auto 12px;
  color: #8b828b;
  font-size: 11px;
  line-height: 1.7;
}

.academy-training-grid a {
  color: #bd8a6a;
  font-size: 11px;
  font-weight: 700;
}

.academy-training-grid a:hover {
  color: var(--primary);
}

.academy-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.academy-course-card {
  position: relative;
  min-height: 470px;
  padding: 30px 28px 28px;
  border: 1px solid rgba(211, 176, 91, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px rgba(106, 46, 122, 0.06);
  transition: 0.3s ease;
}

.academy-course-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 70px rgba(106, 46, 122, 0.12);
}

.academy-course-card.is-featured {
  border: 3px solid var(--gold);
  background: linear-gradient(180deg, #fff8dc 0%, #fff 42%, #fff 100%);
  box-shadow: 0 34px 76px rgba(211, 176, 91, 0.2);
  transform: translateY(-18px);
}

.academy-course-card.is-featured:hover {
  transform: translateY(-24px);
}

.academy-course-badge {
  position: absolute;
  top: 0;
  left: -3px;
  right: -3px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 20px 20px 0 0;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.academy-course-card > span {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(106, 46, 122, 0.08);
  color: var(--primary);
  font-size: 20px;
}

.academy-course-card.is-featured > span {
  margin-top: 34px;
  background: rgba(211, 176, 91, 0.18);
  color: var(--primary-dark);
}

.academy-course-card h3 {
  margin-bottom: 14px;
  color: #111;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
}

.academy-course-card p {
  min-height: 96px;
  color: #606060;
  font-size: 14px;
  line-height: 1.72;
}

.academy-course-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 44px;
  margin: 20px 0 24px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s ease;
}

.academy-course-card:not(.is-featured) a {
  background: rgba(106, 46, 122, 0.08);
  color: #111;
}

.academy-course-card a:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: #fff;
}

.academy-course-card h4 {
  margin-bottom: 14px;
  color: #1d1d1d;
  font-size: 15px;
  font-weight: 700;
}

.academy-course-card ul {
  display: grid;
  gap: 13px;
}

.academy-course-card li {
  position: relative;
  padding-left: 24px;
  color: #595959;
  font-size: 13px;
  line-height: 1.45;
}

.academy-course-card li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  color: #bd8a6a;
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
}

.academy-stats-strip .stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.academy-stats-strip .stat-item {
  padding: 24px 22px;
}

.academy-stats-strip .stat-copy {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.academy-stats-strip .stat-copy p {
  font-size: 15px;
  letter-spacing: 1px;
}

.academy-outcomes-section {
  padding: 96px 0 104px;
  background: #fff;
}

.academy-outcomes-card {
  position: relative;
}

.academy-outcomes-intro span {
  display: block;
  margin-bottom: 10px;
  color: #9c949c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.academy-outcomes-intro h2 {
  margin-bottom: 10px;
  color: #25202a;
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.academy-outcomes-intro p {
  max-width: 420px;
  margin: 0 auto 58px;
  color: #9a929a;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.academy-outcomes-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 4px 24px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(106, 46, 122, 0.22) transparent;
}

.academy-outcomes-slider::-webkit-scrollbar {
  height: 6px;
}

.academy-outcomes-slider::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(106, 46, 122, 0.22);
}

.academy-outcome-slide {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  min-height: 210px;
  padding: 28px 28px 30px;
  background: #f8f6f7;
  scroll-snap-align: start;
}

.academy-outcome-slide span {
  display: block;
  margin-bottom: 26px;
  color: #4e4651;
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
  line-height: 0.8;
}

.academy-outcome-slide h3 {
  margin-bottom: 13px;
  color: #25202a;
  font-size: 17px;
  font-weight: 700;
}

.academy-outcome-slide p {
  color: #8d858d;
  font-size: 12px;
  line-height: 1.75;
}

.academy-curriculum-grid {
  position: relative;
  display: grid;
  gap: 28px;
  padding-left: 54px;
}

.academy-curriculum-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 18px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(245, 208, 98, 0.82) 0%,
    rgba(245, 208, 98, 0.36) 50%,
    rgba(255, 255, 255, 0.16) 100%
  );
}

.academy-curriculum-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.academy-curriculum-step::before {
  display: none;
}

.academy-curriculum-number {
  position: absolute;
  top: 50%;
  left: -54px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-50%);
  z-index: 2;
}

.academy-curriculum-step.is-active .academy-curriculum-number {
  background: var(--gold-gradient);
  color: var(--primary-dark);
}

.academy-curriculum-copy {
  position: relative;
  padding: 26px 30px;
  border: 1px solid rgba(245, 208, 98, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  text-align: left;
}

.academy-curriculum-step.is-active .academy-curriculum-copy {
  background: rgba(245, 208, 98, 0.18);
  border-color: rgba(245, 208, 98, 0.34);
}

.academy-curriculum-copy h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.academy-curriculum-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.75;
}

.academy-faq-section a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .academy-course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .academy-curriculum-layout {
    gap: 42px;
  }

  .academy-curriculum-intro h2 {
    font-size: 48px;
  }

  .academy-training-grid {
    gap: 46px 38px;
  }

  .academy-courses-section .container {
    padding: 48px 32px 54px;
  }

  .academy-course-card.is-featured {
    transform: none;
  }

  .academy-course-card.is-featured:hover {
    transform: translateY(-7px);
  }

  .academy-stats-strip .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .academy-hero {
    min-height: auto;
    padding: 84px 0;
  }

  .academy-hero-content {
    max-width: 100%;
  }

  .academy-hero .hero-title {
    font-size: 48px;
  }

  .academy-hero .hero-title span {
    font-size: 44px;
  }

  .academy-outcomes-card {
    padding: 0;
  }

  .academy-outcomes-intro h2 {
    font-size: 40px;
  }

  .academy-outcomes-intro p {
    margin-bottom: 42px;
  }

  .academy-outcomes-slider {
    gap: 24px;
  }

  .academy-outcome-slide {
    flex-basis: calc((100% - 24px) / 2);
  }

  .academy-curriculum-grid,
  .academy-course-grid,
  .academy-stats-strip .stats-grid {
    grid-template-columns: 1fr;
  }

  .academy-curriculum-layout {
    grid-template-columns: 1fr;
  }

  .academy-curriculum-intro {
    position: relative;
    top: auto;
  }

  .academy-curriculum-intro h2 {
    max-width: 680px;
    font-size: 44px;
  }

  .academy-curriculum-intro > p {
    max-width: 680px;
  }

  .academy-curriculum-cta {
    max-width: 100%;
  }

  .academy-training-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-curriculum-grid::before {
    left: 18px;
  }

  .academy-curriculum-copy {
    padding: 24px;
  }

  .academy-course-card {
    min-height: auto;
  }

  .academy-course-card p {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .academy-hero {
    padding: 64px 0;
  }

  .academy-hero-content {
    max-width: 100%;
  }

  .academy-hero .hero-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .academy-hero .hero-title {
    font-size: 38px;
  }

  .academy-hero .hero-title span {
    font-size: 34px;
  }

  .academy-hero-note {
    font-size: 16px;
  }

  .academy-training-section,
  .academy-courses-section,
  .academy-curriculum-section,
  .academy-outcomes-section {
    padding: 66px 0;
  }

  .academy-curriculum-layout {
    gap: 38px;
  }

  .academy-curriculum-intro > span {
    margin-bottom: 16px;
  }

  .academy-curriculum-intro h2 {
    font-size: 36px;
  }

  .academy-curriculum-intro > p {
    font-size: 13px;
  }

  .academy-curriculum-cta {
    padding: 32px 22px 30px;
  }

  .academy-curriculum-cta h3 {
    font-size: 34px;
  }

  .academy-curriculum-grid {
    gap: 22px;
    padding-left: 46px;
  }

  .academy-curriculum-number {
    left: -46px;
    width: 34px;
    height: 34px;
  }

  .academy-curriculum-copy {
    padding: 22px 20px;
  }

  .academy-curriculum-copy h3 {
    font-size: 18px;
  }

  .academy-curriculum-copy p {
    font-size: 12px;
  }

  .academy-training-section .services-page-heading {
    margin-bottom: 40px;
  }

  .academy-training-section .services-page-heading h2 {
    font-size: 30px;
  }

  .academy-training-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .academy-courses-section .container {
    width: min(94%, 1180px);
    padding: 34px 18px 38px;
    border-radius: 22px;
  }

  .academy-courses-section .services-page-heading h2 {
    font-size: 30px;
  }

  .academy-course-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .academy-course-card.is-featured {
    border-width: 2px;
  }

  .academy-course-badge {
    height: 34px;
    border-radius: 16px 16px 0 0;
  }

  .academy-course-card h3 {
    font-size: 26px;
  }

  .academy-training-grid article {
    padding: 0;
  }

  .academy-training-grid span {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    font-size: 21px;
  }

  .academy-training-grid h3 {
    font-size: 19px;
  }

  .academy-outcomes-card {
    padding: 0;
  }

  .academy-outcomes-intro h2 {
    font-size: 36px;
  }

  .academy-outcomes-intro p {
    margin-bottom: 34px;
    font-size: 11px;
  }

  .academy-outcomes-slider {
    gap: 18px;
    margin-inline: -3%;
    padding-inline: 3%;
  }

  .academy-outcome-slide {
    flex-basis: 88%;
    min-height: 190px;
    padding: 24px 22px 26px;
  }

  .academy-outcome-slide span {
    margin-bottom: 22px;
    font-size: 48px;
  }

  .academy-outcome-slide h3 {
    font-size: 16px;
  }

  .academy-outcome-slide p {
    font-size: 11px;
  }
}

/*=====================================
        PRICING / MENU PAGE
======================================*/

.pricing-menu-page {
  background: var(--bg);
  overflow: hidden;
}

.pricing-menu-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(
      90deg,
      rgba(38, 13, 44, 0.92) 0%,
      rgba(38, 13, 44, 0.72) 45%,
      rgba(38, 13, 44, 0.35) 75%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    url("../assets/banner/banner-2.jpg") center / cover no-repeat;
}

.pricing-menu-hero span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.pricing-menu-hero h1 {
  max-width: 800px;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1.1;
}

.pricing-menu-hero h1 span {
  display: inline;
  color: var(--gold-light);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  font-style: italic;
}

.pricing-menu-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.8;
}

.pricing-section {
  padding: 85px 0 95px;
}

.pricing-section:nth-of-type(even) {
  background: #faf5fc;
}

.pricing-section:nth-of-type(odd) {
  background: radial-gradient(
      circle at 12% 14%,
      rgba(245, 208, 98, 0.12),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary) 54%,
      #35123f 100%
    );
  color: #fff;
}

.pricing-section-header {
  margin-bottom: 50px;
  text-align: center;
}

.pricing-section-header span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.pricing-section:nth-of-type(odd) .pricing-section-header span {
  color: var(--gold-light);
}

.pricing-section-header h2 {
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1.2;
}

.pricing-section:nth-of-type(even) .pricing-section-header h2 {
  color: var(--primary-dark);
}

.pricing-section:nth-of-type(odd) .pricing-section-header h2 {
  color: #fff;
}

.pricing-section-header h2 em {
  color: var(--gold);
  font-style: italic;
}

.pricing-section:nth-of-type(odd) .pricing-section-header h2 em {
  color: var(--gold-light);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  position: relative;
  border-radius: 20px;
  padding: 38px 30px 34px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

/* Dark theme card for odd section */
.pricing-section:nth-of-type(odd) .pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 208, 98, 0.26);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

.pricing-section:nth-of-type(odd) .pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32), 0 0 24px rgba(245, 208, 98, 0.25);
}

/* Light theme card for even section */
.pricing-section:nth-of-type(even) .pricing-card {
  background: #ffffff;
  border: 1px solid rgba(106, 46, 122, 0.14);
  box-shadow: 0 16px 40px rgba(106, 46, 122, 0.08);
  color: var(--text);
}

.pricing-section:nth-of-type(even) .pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(106, 46, 122, 0.16);
}

.pricing-card-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.pricing-card-header {
  border-bottom: 1px solid rgba(245, 208, 98, 0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.pricing-section:nth-of-type(even) .pricing-card-header {
  border-bottom-color: rgba(106, 46, 122, 0.12);
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-section:nth-of-type(odd) .pricing-card-title {
  color: var(--gold-light);
}

.pricing-section:nth-of-type(even) .pricing-card-title {
  color: var(--primary);
}

.pricing-card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-card-currency {
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}

.pricing-section:nth-of-type(odd) .pricing-card-currency {
  color: var(--gold-light);
}

.pricing-card-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.pricing-section:nth-of-type(odd) .pricing-card-amount {
  color: #fff;
}

.pricing-section:nth-of-type(even) .pricing-card-amount {
  color: var(--primary-dark);
}

.pricing-card-period {
  font-size: 14px;
  opacity: 0.8;
}

.pricing-card-details {
  flex-grow: 1;
  margin-bottom: 28px;
}

.pricing-card-details h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-section:nth-of-type(odd) .pricing-card-details h4 {
  color: var(--gold-light);
}

.pricing-section:nth-of-type(even) .pricing-card-details h4 {
  color: var(--primary);
}

.pricing-card-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-card-details li i {
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 14px;
}

.pricing-card-details li i.fa-check,
.pricing-card-details li i.fa-circle-check {
  color: #4ade80;
}

.pricing-card-details li i.fa-circle-info {
  color: var(--gold-light);
}

.pricing-section:nth-of-type(even) .pricing-card-details li i.fa-circle-info {
  color: var(--gold-dark);
}

.pricing-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pricing-section:nth-of-type(odd) .pricing-card-btn {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.pricing-section:nth-of-type(odd) .pricing-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 208, 98, 0.3);
}

.pricing-section:nth-of-type(even) .pricing-card-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(106, 46, 122, 0.2);
}

.pricing-section:nth-of-type(even) .pricing-card-btn:hover {
  transform: translateY(-2px);
  background: var(--gold-gradient);
  color: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(106, 46, 122, 0.28);
}

.pricing-additional-box {
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.pricing-section:nth-of-type(odd) .pricing-additional-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px dashed rgba(245, 208, 98, 0.45);
}

.pricing-section:nth-of-type(even) .pricing-additional-box {
  background: #ffffff;
  border: 1px dashed rgba(106, 46, 122, 0.35);
  box-shadow: 0 10px 30px rgba(106, 46, 122, 0.06);
}

.pricing-additional-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.pricing-additional-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 6px;
}

.pricing-section:nth-of-type(odd) .pricing-additional-content h3 {
  color: var(--gold-light);
}

.pricing-section:nth-of-type(even) .pricing-additional-content h3 {
  color: var(--primary-dark);
}

.pricing-additional-content p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 1024px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-menu-hero h1 {
    font-size: 42px;
  }

  .pricing-section-header h2 {
    font-size: 34px;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }

  .pricing-additional-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}
