/* ==========================================================================
   Variables & General Styles
   ========================================================================== */
:root {
  --black: #000000;
  --dark-bg: #0a0a0a;
  --gold: #d4af37;
  --gold-hover: #f1c40f;
  --gold-muted: rgba(212, 175, 55, 0.15);
  --sunstone: #e2c08d;
  --white: #ffffff;
  --bg-pattern: radial-gradient(#1a1a1a 1px, transparent 1px);
  --text-color: #e0e0e0;

  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;

  --transition-fast: 0.3s ease;
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: 0.5s ease;
  --wa-start: #2fd66a; /* lighter green */
  --wa-end: #1fae4f; /* darker green */
  --wa-shadow: 0 6px 20px rgba(31, 174, 79, 0.25);
  --btn-height: 62px;
  --btn-padding: 14px;
  --radius: 999px;
}

html, body{
    margin: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all var(--transition-fast);
}

.gold-text {
  color: var(--gold) !important;
}

.container-custom {
  max-width: 1600px;
  padding: 0 5%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary-gold {
  background-color: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary-gold:hover {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--black);
}

.btn-play-video {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 0;
  position: relative;
}

.btn-play-video i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.btn-play-video:hover {
  color: var(--gold);
}

.btn-play-video:hover i {
  background-color: var(--gold);
  color: var(--black);
}

/* Gold Button Gliding Glow */
.gold-btn {
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
  border: none;
  z-index: 1;
}

.gold-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
  z-index: 2;
}

.gold-btn:hover::before {
  left: 100%;
}

.gold-btn:hover {
  background: var(--gold-hover);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(191, 148, 86, 0.3);
}

/* Stardust Texture Overlay */
.stardust-texture-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   Header & Navbar (Premium Glassmorphism & Fixed)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: all var(--transition-fast);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  position: fixed;
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(191, 148, 86, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand-logo {
  height: 60px;
  transition: height var(--transition-fast);
}

.site-header.scrolled .brand-logo {
  height: 45px;
}

.navbar-nav .nav-item,
#menu-main-menu li
{
  margin: 0 15px;
}

.navbar-nav .nav-link,
#menu-main-menu li a
{
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 0 !important;
  position: relative;
}

.navbar-nav .nav-link::after,
#menu-main-menu li a::after
{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--transition-fast);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
#menu-main-menu li a:hover::after,
#menu-main-menu li.current-menu-item a::after
{
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
#menu-main-menu li a:hover,
#menu-main-menu li.current-menu-item a

{
  color: var(--gold) !important;
}

/* Navbar Toggler for Mobile */
.navbar-toggler {
  border: none !important;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.hamburger-icon {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Animation to X when NOT collapsed */
.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-color: var(--black);
  overflow: hidden;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .item {
  height: 100%;
}

.hero-slider .item {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

/* Animated Ken Burns Effect for background image */
.hero-slider .owl-item.active .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  z-index: -1;
  animation: kenburns 12s infinite alternate linear;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient overlay: slightly darker at left and bottom for text readability */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}
.hero-slider .item::after {
  /* Bottom fade overlay to blend into next section */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, var(--black) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  padding-top: 80px; /* Offset for header */
}

/* Text Animations inside Slider */
.hero-slider .owl-item .sub-heading,
.hero-slider .owl-item .main-heading,
.hero-slider .owl-item .slide-text,
.hero-slider .owl-item .btn-group-custom {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.hero-slider .owl-item.active .sub-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.hero-slider .owl-item.active .main-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.hero-slider .owl-item.active .slide-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.hero-slider .owl-item.active .btn-group-custom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.sub-heading {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-left: 60px;
}

.sub-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: var(--gold);
}

.main-heading {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 25px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slide-text {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  color: #cccccc;
  margin-bottom: 30px;
}

/* Custom Navigation Controls */
.slider-nav-container {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.slider-nav-custom {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align right on desktop */
  pointer-events: auto;
  padding-right: 5%;
}

.slider-nav-custom button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-nav-custom button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.nav-divider {
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 15px;
}

/* Hide default owl nav */
.owl-nav {
  display: none !important;
}
.owl-dots {
  position: absolute;
  bottom: 50px;
  left: 5%;
  z-index: 50;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: transparent !important;
  border: 1px solid var(--white) !important;
  transition: all var(--transition-fast);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: scale(1.3);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}

.section-heading {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}

.location-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.about-text strong {
  color: var(--white);
  font-weight: 500;
}

/* Offset Image Frame */
.about-image-wrapper {
  position: relative;
  padding: 30px 0 0 30px;
  z-index: 1;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 95%;
  border: 2px solid var(--gold);
  z-index: -1;
  transition: all var(--transition-slow);
}

.about-image-wrapper:hover::before {
  top: 15px;
  left: 15px;
}

.img-main {
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  filter: brightness(0.9) contrast(1.1);
  width: 100%;
}

.experience-badge {
  position: absolute;
  top: 50px;
  left: -10px;
  background-color: var(--gold);
  color: var(--black);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(191, 148, 86, 0.4);
  text-align: center;
  animation: floating 4s ease-in-out infinite;
}

.experience-badge .years {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.75rem;
  font-weight: 600;
  width: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Editorial Content Styles */
.premium-text-box {
  position: relative;
  z-index: 2;
}

.about-text-lead {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--white);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.about-text-lead em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.custom-blockquote {
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 30px;
  font-family: var(--font-heading);
  position: relative;
  line-height: 1.4;
}

.custom-blockquote::before {
  content: "\201C";
  position: absolute;
  top: -50px;
  left: 5px;
  font-size: 7rem;
  color: rgba(191, 148, 86, 0.1);
  font-family: var(--font-heading);
  z-index: -1;
  line-height: 1;
}

.w-fit {
  width: fit-content !important;
}

/* ==========================================================================
   Core Skills Section
   ========================================================================== */
.core-skills-section {
  background-color: var(--black);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Background aesthetic element */
.core-skills-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(191, 148, 86, 0.08) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.core-skills-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(191, 148, 86, 0.05) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.section-lead-text {
  font-size: 1.15rem;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

.premium-skill-card {
  height: 100%;
  position: relative;
  transition: all var(--transition-slow);
}

.skill-card-inner {
  background: #111111;
  height: 100%;
  border-radius: 0; /* Sharp, modern editorial corners */
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 3px solid transparent;
  transition: all var(--transition-slow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Elevated Hover Effect */
.premium-skill-card:hover .skill-card-inner {
  transform: translateY(-15px);
  border-top: 3px solid var(--gold);
  border-color: rgba(191, 148, 86, 0.15);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.9),
    0 10px 20px rgba(191, 148, 86, 0.1);
  background: #161618;
}

/* Huge faint watermark icon */
.skill-card-inner::before {
  content: "\f521"; /* Crown watermark */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-size: 12rem;
  color: rgba(191, 148, 86, 0.02);
  z-index: 0;
  transform: rotate(-15deg);
  transition: all var(--transition-slow);
  pointer-events: none;
}

.premium-skill-card:hover .skill-card-inner::before {
  color: rgba(191, 148, 86, 0.05);
  transform: rotate(0deg) scale(1.1);
}

.card-glow-effect {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at bottom right,
    rgba(191, 148, 86, 0.08) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: -1;
  pointer-events: none;
}

.premium-skill-card:hover .card-glow-effect {
  opacity: 1;
}

.skill-card-header {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 25px;
  position: relative;
  z-index: 3;
}

.skill-icon-wrapper {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid rgba(191, 148, 86, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all var(--transition-slow);
  transform: rotate(45deg); /* Diamond shape */
}

.skill-icon-wrapper i {
  font-size: 1.5rem;
  color: var(--gold);
  transform: rotate(-45deg); /* Keep icon straight */
  transition: all var(--transition-slow);
}

.premium-skill-card:hover .skill-icon-wrapper {
  background: var(--gold);
}

.premium-skill-card:hover .skill-icon-wrapper i {
  color: var(--black);
}

.skill-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 3;
}

.skill-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #a0a0a0;
  font-weight: 300;
  transition: all var(--transition-fast);
}

.skill-list li::after {
  content: "\f00c"; /* Checkmark icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 0.95rem;
  color: rgba(191, 148, 86, 0.4);
  transition: all var(--transition-fast);
}

/* Remove original before */
.skill-list li::before {
  display: none;
}

.premium-skill-card:hover .skill-list li {
  color: #e0e0e0;
}

/* ==========================================================================
   Services Page Redesign (Clean Editorial Showcase)
   ========================================================================== */

.artistry-hero {
  padding: 180px 0 100px;
  background-color: var(--black);
  background-image: var(--bg-pattern);
  background-size: 30px 30px;
  position: relative;
  border-top: 1px solid rgba(226, 192, 141, 0.1); /* Added top border */
}

.onyx-title-main {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
}

.onyx-title-main span {
  font-style: italic;
  color: var(--sunstone);
}

/* Service Ribbon */
.service-ribbon-section {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.service-ribbon {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 25px 0;
}

.ribbon-item {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-medium);
}

.ribbon-item.active {
  color: var(--sunstone);
}

/* Presentation Stage */
.service-stage-section {
  padding: 100px 0;
  background-color: var(--black);
  background-image: var(--bg-pattern);
  background-size: 40px 40px;
}

.service-spotlight {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.spotlight-image-frame {
  flex: 0 0 45%;
  position: relative;
}

.arched-portal-new {
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: 300px 300px 0 0; /* Pure arch */
  border: 1px solid rgba(226, 192, 141, 0.3);
}

.arched-portal-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.editorial-heading {
  font-family: var(--font-heading);
  font-size: 4rem;
  margin-bottom: 25px;
  color: #fff;
}

.editorial-heading span {
  font-style: italic;
  color: var(--sunstone);
}

.editorial-text {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Clean Editorial Grid (Exact 4-column) */
.editorial-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.editorial-grid-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 50px;
  color: #fff;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.editorial-grid-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 25%;
  width: 50%;
  height: 1px;
  background: var(--sunstone);
}

.showcase-item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  border: 1px solid rgba(226, 192, 141, 0.1);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .editorial-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-spotlight {
    flex-direction: column;
  }
  .spotlight-image-frame {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .editorial-grid-clean {
    grid-template-columns: 1fr;
  }
  .editorial-heading {
    font-size: 3rem;
  }
}

.luxury-list-simple {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.luxury-list-simple li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.luxury-list-simple li::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--sunstone);
  margin-right: 15px;
}

/* Responsive Bento */
@media (max-width: 1200px) {
  .editorial-heading {
    font-size: 4rem;
  }
  .onyx-title-main {
    font-size: 4.5rem;
  }
}

@media (max-width: 992px) {
  .service-spotlight {
    flex-direction: column;
    gap: 40px;
  }
  .spotlight-image-frame {
    flex: 0 0 100%;
    width: 100%;
  }
  .bento-grid {
    grid-auto-rows: 100px;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
  }
  .bento-item {
    height: 400px;
  }
  .service-ribbon {
    gap: 30px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-left: 20px;
  }
  .onyx-title-main {
    font-size: 2.2rem;
  }
}

.premium-skill-card:hover .skill-list li::after {
  color: var(--gold);
}

/* Highlight Card Variation */
.highlight-card .skill-card-inner {
  border: 1px solid rgba(191, 148, 86, 0.2);
  background: #14110e;
}
.highlight-card:hover .skill-card-inner {
  background: #1a1511;
}

/* Action Banner */
.action-banner {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(191, 148, 86, 0.3);
  padding: 20px 40px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.action-banner p{
    margin: 0;
}

.action-text {
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}

.action-text strong {
  color: var(--gold);
  font-weight: 600;
}

.action-btn {
  background: var(--gold);
  color: var(--black);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.action-btn i {
  font-size: 1.2rem;
  margin-right: 8px;
}

.action-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-us-section {
  background-color: var(--black);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.why-choose-header {
  position: relative;
  z-index: 2;
}

/* Premium Timeline List */
.premium-timeline {
  position: relative;
  padding-left: 30px;
}

.premium-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px; /* Center with icon */
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(191, 148, 86, 0.5) 0%,
    rgba(191, 148, 86, 0.05) 100%
  );
  z-index: 0;
}

.timeline-item {
  position: relative;
  padding-left: 45px;
  margin-bottom: 30px;
  z-index: 1;
}

.timeline-icon {
  position: absolute;
  left: -38px; /* Aligned with the gold line */
  top: 5px;
  width: 35px;
  height: 35px;
  background: #0f0f11;
  border: 2px solid rgba(191, 148, 86, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-slow);
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.timeline-icon i {
  font-size: 0.9rem;
  color: rgba(191, 148, 86, 0.7);
  transition: all var(--transition-slow);
}

.timeline-item:hover .timeline-icon {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(191, 148, 86, 0.4);
  transform: scale(1.1);
}

.timeline-item:hover .timeline-icon i {
  color: var(--black);
}

.timeline-content {
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 25px 30px;
  border-radius: 12px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(191, 148, 86, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 0;
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
  border-color: rgba(191, 148, 86, 0.2);
  background: rgba(20, 20, 20, 0.6);
}

.timeline-item:hover .timeline-content::before {
  opacity: 1;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.timeline-desc {
  font-size: 0.95rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* Right Column Masterpiece */
.masterpiece-wrapper {
  position: relative;
  padding: 30px;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(191, 148, 86, 0.15) 0%,
    rgba(191, 148, 86, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: pulseHalo 4s infinite alternate;
}

@keyframes pulseHalo {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.masterpiece-frame {
  position: relative;
  width: 80%;
  border-radius: 300px 300px 0 0;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
  z-index: 2;
  border: 2px solid rgba(191, 148, 86, 0.5);
  outline: 1px solid rgba(191, 148, 86, 0.2);
  outline-offset: 10px;
}

.masterpiece-img {
  width: 100%;
  height: auto;
  transition: transform 5s ease-out; /* Slow Ken Burns */
  display: block;
}

.masterpiece-frame:hover .masterpiece-img {
  transform: scale(1.08);
}

.masterpiece-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
  z-index: 3;
}

.glass-stat-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 4;
}

.glass-stat-inner {
  background: rgba(15, 15, 18, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(191, 148, 86, 0.3);
  border-left: 3px solid var(--gold);
  padding: 25px 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.glass-stat-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: skewX(-20deg);
  animation: shineCard 3s infinite;
}

@keyframes shineCard {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.stat-text {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.watermark-icon {
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 4rem;
  color: rgba(191, 148, 86, 0.05);
  z-index: -1;
}

.luxury-lines {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 100px;
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  z-index: 1;
  opacity: 0.5;
}

.floating-dots {
  position: absolute;
  bottom: 80px;
  right: 15px;
  width: 40px;
  height: 120px;
  background-image: radial-gradient(
    rgba(191, 148, 86, 0.4) 2px,
    transparent 2px
  );
  background-size: 10px 10px;
  z-index: 1;
  opacity: 0.7;
}

/* ==========================================================================
   Artistry Philosophy Manifesto
   ========================================================================== */
.philosophy-manifesto-section {
  background-color: var(--black);
  position: relative;
  padding: 150px 0;
  z-index: 1;
}

.manifesto-canvas-wrapper {
  position: relative;
  width: 100%;
}

.canvas-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  -webkit-text-stroke: 1px rgba(191, 148, 86, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 2vw;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifesto-title {
  font-size: 4rem;
  line-height: 1.1;
  color: var(--white);
  font-family: var(--font-heading);
}

.serif-italic {
  font-style: italic;
  font-family: "Playfair Display", serif;
}

.title-accent-line {
  width: 100px;
  height: 2px;
  background: var(--gold);
  margin-top: 30px;
}

/* Broken Grid Layout */
.manifesto-broken-grid {
  position: relative;
  height: 1200px; /* Large canvas for broken grid positioning */
  margin-top: 70px;
}

.manifesto-item {
  position: absolute;
  max-width: 400px;
  z-index: 5;
  transition: all var(--transition-slow);
}

.mega-number {
  position: absolute;
  top: -60px;
  left: -40px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(191, 148, 86, 0.03);
  line-height: 1;
  font-family: var(--font-heading);
  z-index: -1;
  transition: all var(--transition-slow);
}

.manifesto-item:hover .mega-number {
  color: rgba(191, 148, 86, 0.08);
  transform: scale(1.1);
}

.vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: absolute;
  left: -45px;
  top: 20px;
  opacity: 0.6;
}

.item-content {
  background: rgba(15, 15, 18, 0.4);
  backdrop-filter: blur(5px);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all var(--transition-slow);
}

.manifesto-item:hover .item-content {
  border-color: rgba(191, 148, 86, 0.3);
  background: rgba(20, 20, 22, 0.7);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.item-title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}

.item-desc {
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 300;
}

/* Specific Positions for Broken Grid */
.item-01 {
  top: 0;
  left: 0;
}
.item-02 {
  top: 150px;
  right: 50px;
}
.item-03 {
  top: 500px;
  left: 150px;
}
.item-04 {
  top: 700px;
  right: 150px;
}
.item-05 {
  top: 950px;
  left: 0;
}

/* Visual Shards */
.manifesto-shard {
  position: absolute;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.shard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease-out;
}

.shard-01 {
  top: 50px;
  left: 45%;
  width: 250px;
  height: 350px;
  clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
  transform: rotate(-5deg);
}

.shard-02 {
  top: 450px;
  right: 0;
  width: 450px;
  height: 600px;
  clip-path: polygon(0 15%, 100% 0, 85% 100%, 15% 85%);
  z-index: 1;
}

.shard-accent-border {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(191, 148, 86, 0.4);
  pointer-events: none;
  z-index: 3;
}

.manifesto-shard:hover .shard-img {
  transform: scale(1.1);
}

/* ==========================================================================
   Achievements Counter Banner
   ========================================================================== */
.achievements-section {
  position: relative;
  z-index: 2;
  background-color: var(--black);
}

.achievements-banner-custom {
  background: linear-gradient(135deg, #0d0d0d 0%, #050505 100%);
  border-top: 1px solid rgba(191, 148, 86, 0.2);
  border-bottom: 1px solid rgba(191, 148, 86, 0.2);
  position: relative;
  overflow: hidden;
}

.achievements-banner-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(191, 148, 86, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.achievement-item {
  position: relative;
  padding: 20px 0;
  transition: transform 0.4s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
}

.counter-number {
  font-size: 4.5rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  font-family: var(--font-heading);
  text-shadow: 0 0 20px rgba(191, 148, 86, 0.2);
}

.plus-sign {
  font-size: 2.5rem;
  font-weight: 300;
  vertical-align: super;
  margin-left: 2px;
}

.achievement-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #999;
  margin-top: 10px;
  font-weight: 500;
}

/* ==========================================================================
   Journey & Legacy Section
   ========================================================================== */
.journey-legacy-section {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.journey-legacy-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 40%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(191, 148, 86, 0.03) 0%,
    transparent 70%
  );
  z-index: 0;
}

.heading-accent-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
}

.experience-glass-card {
  position: relative;
  z-index: 2;
}

.experience-glass-card .card-inner {
  display: flex;
  align-items: center;
  padding: 30px;
  background: rgba(20, 20, 22, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold);
  transition: all var(--transition-slow);
}

.experience-glass-card:hover .card-inner {
  background: rgba(25, 25, 28, 0.6);
  border-color: rgba(191, 148, 86, 0.3);
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(191, 148, 86, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.card-icon-box i {
  font-size: 1.5rem;
  color: var(--gold);
}

.card-item-title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
}

.card-item-desc {
  font-size: 0.95rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Legacy Visual Frame */
.legacy-visual-frame {
  position: relative;
  z-index: 1;
  padding-right: 40px;
}

.legacy-img-container {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(191, 148, 86, 0.2);
}

.legacy-img {
  width: 100%;
  transition: transform 5s ease-out;
}

.legacy-visual-frame:hover .legacy-img {
  transform: scale(1.08);
}

.legacy-overlay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 40%,
    transparent 100%
  );
  pointer-events: none;
}

.visual-accent-aura {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(191, 148, 86, 0.15);
  z-index: -1;
  transition: all var(--transition-slow);
}

.legacy-visual-frame:hover .visual-accent-aura {
  top: 10px;
  right: 10px;
}

.floating-years-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.years-num {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.years-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.2;
  width: 120px;
}

.legacy-deco-lines {
  position: absolute;
  top: 40px;
  right: -10px;
  width: 30px;
  height: 150px;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px);
  background-size: 100% 15px;
  opacity: 0.3;
}

/* ==========================================================================
   Makeup Diaries (3D Slider)
   ========================================================================== */
.makeup-diaries-section {
  background-color: var(--black);
  overflow: hidden;
}

.diaries-nav-custom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.diaries-nav-custom button {
  background: transparent;
  border: 1px solid rgba(191, 148, 86, 0.3);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.diaries-nav-custom button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.diary-divider {
  width: 30px;
  height: 1px;
  background: rgba(191, 148, 86, 0.2);
  margin: 0 15px;
}

.makeup-diaries-slider .owl-stage-outer {
  overflow: visible;
  padding: 50px 0;
}

.diaries-3d-card {
  position: relative;
  height: 550px;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.card-media {
  height: 100%;
  width: 100%;
  position: relative;
}

.diary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.img-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: 1;
}

.card-glass-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 30px;
  background: rgba(15, 15, 18, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid var(--gold);
  z-index: 2;
  transform: translateZ(50px); /* 3D depth */
  transition: all 0.5s ease;
}

.diaries-3d-card:hover .diary-img {
  transform: scale(1.1);
}

.diaries-3d-card:hover .card-glass-info {
  background: rgba(191, 148, 86, 0.15);
  border-color: var(--gold);
  transform: translateZ(80px);
}

.badge-category {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.diary-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.view-details-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.diaries-3d-card:hover .view-details-link {
  opacity: 1;
  color: var(--gold);
}

/* ==========================================================================
   Voices of Elegance (Editorial Narrative Redesign)
   ========================================================================== */
.testimonial-narrative-section {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.header-accent-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-top: 20px;
}

.narrative-wrapper {
  padding: 40px 0;
}

.narrative-visual-frame {
  position: relative;
  z-index: 1;
}

.narrative-arch-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 400px 400px 0 0;
  overflow: hidden;
  border: 1px solid rgba(191, 148, 86, 0.2);
}

.narrative-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}

.item:hover .narrative-img {
  transform: scale(1.05);
}

.visual-glow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.floating-quote-mark {
  position: absolute;
  bottom: 30px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.narrative-content {
  position: relative;
}

.narrative-quote {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.narrative-name {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 8px;
}

.narrative-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  margin-top: 16px;
}

.narrative-divider-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

/* Elite Manual Navigation (Guaranteed Visibility) */
.narrative-nav-group {
  position: relative;
  z-index: 100;
}

.custom-nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background: rgba(191, 148, 86, 0.08);
  border: 1px solid rgba(191, 148, 86, 0.3);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
}

.custom-nav-btn i {
  font-size: 1.2rem;
  transition: transform 0.4s ease;
}

.custom-nav-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(191, 148, 86, 0.3);
}

.custom-nav-btn.narrative-prev:hover i {
  transform: translateX(-10px);
}
.custom-nav-btn.narrative-next:hover i {
  transform: translateX(10px);
}

@media (min-width: 992px){
    .navbar-expand-lg .navbar-collapse{
        justify-content: flex-end;
    }
}

@media (max-width: 991px) {
  .narrative-nav-group {
    justify-content: center !important;
    margin-top: 40px;
  }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 991px) {
  .site-header {
    background: rgba(0, 0, 0, 0.95); /* Solid for mobile menu readability */
    padding: 15px 0;
  }
  .navbar-collapse {
    background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.98) 0%,
      rgba(20, 20, 20, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 20px;
    margin-top: 15px;
    border: 1px solid rgba(191, 148, 86, 0.1);
    /* min-height: calc(100vh - 100px); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  }

  .navbar-collapse.show {
    display: flex !important;
  }

  .navbar-collapse::before {
    content: "DEBJANIZ";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12vw;
    font-weight: 900;
    color: rgba(191, 148, 86, 0.03);
    z-index: -1;
    letter-spacing: 15px;
    pointer-events: none;
    white-space: nowrap;
  }

  .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }

  .navbar-toggler:not(.collapsed) + .navbar-collapse .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  /* Delay for each link */
  .navbar-toggler:not(.collapsed) + .navbar-collapse .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .navbar-toggler:not(.collapsed) + .navbar-collapse .nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .navbar-toggler:not(.collapsed) + .navbar-collapse .nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .navbar-toggler:not(.collapsed) + .navbar-collapse .nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }
  .navbar-toggler:not(.collapsed) + .navbar-collapse .nav-item:nth-child(5) {
    transition-delay: 0.5s;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 6px;
    display: inline-block;
    padding: 8px 0 !important;
  }

  .navbar-nav .nav-link::after {
    bottom: 5px;
    height: 2px;
    display: none;
  }
  .main-heading {
    font-size: 3.5rem;
  }
  .section-heading {
    font-size: 1.8rem;
    word-wrap: break-word;
  }
  .about-image-wrapper {
    padding: 20px 0 0 20px;
    margin-bottom: 20px;
  }
  .experience-badge {
    left: -10px;
    width: 90px;
    height: 90px;
  }
  .experience-badge .years {
    font-size: 1.8rem;
  }
  .custom-blockquote {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .pt-100 {
    padding: 30px 0 !important;
  }
  .pb-100 {
    padding-bottom: 30px !important;
  }
  .pb-120 {
    padding-bottom: 50px !important;
  }

  .mb-80 {
    margin-bottom: 30px !important;
  }

  .site-header {
    padding: 5px 0;
  }

  .hero-section {
    height: 70vh;
    min-height: 500px;
  }

  .hero-section .owl-dots {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-heading {
    font-size: 2.5rem;
  }
  .slide-text {
    font-size: 1rem;
  }
  .slider-nav-custom {
    display: none; /* Hide custom nav on small screens, rely on dots */
  }
  .btn-group-custom .btn {
    display: block;
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 15px;
    text-align: center;
  }

  /* Core Skills Responsive */
  .premium-skill-card {
    margin-bottom: 10px;
  }
  .skill-card-inner {
    padding: 30px 20px;
  }
  .section-lead-text {
    font-size: 1rem;
  }
  .action-banner {
    padding: 20px;
    border-radius: 12px;
    flex-direction: column;
    text-align: center;
  }

  /* Why Choose Us Responsive */
  .masterpiece-wrapper {
    min-height: 400px;
    margin-top: 40px;
    padding-left: 0;
  }
  .glass-stat-card {
    bottom: -10px;
    left: 0;
  }
  .glass-stat-inner {
    padding: 15px 25px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .timeline-item:hover .timeline-content {
    transform: translateX(5px);
  }

  /* Philosophy Manifesto Responsive */
  .philosophy-manifesto-section {
    padding: 80px 0;
    overflow: hidden;
  }
  .manifesto-canvas-wrapper {
    overflow: hidden;
  }
  .manifesto-title {
    font-size: 2rem;
  }
  .manifesto-broken-grid {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
  }
  .manifesto-item {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    max-width: 100%;
    margin-bottom: 0px;
  }
  .manifesto-shard {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 350px !important;
    transform: none !important;
    clip-path: none !important;
    margin: 20px 0;
    overflow: hidden;
  }
  .mega-number {
    font-size: 5rem;
    top: -30px;
    left: -10px;
  }
  .canvas-bg-text {
    font-size: 10vw;
    letter-spacing: 0.5vw;
    opacity: 0.05;
  }

  /* New Sections Responsive */
  .counter-number {
    font-size: 3rem;
  }
  .achievement-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }
  .legacy-visual-frame {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .floating-years-badge {
    left: 0;
    padding: 15px 25px;
  }
  .years-num {
    font-size: 2.2rem;
  }

  /* Diaries & Testimonials Responsive Overlay */
  .diaries-3d-card {
    height: 450px;
  }
  .card-glass-info {
    padding: 20px;
  }
  .diary-title {
    font-size: 1.2rem;
  }
  .review-text {
    font-size: 1.35rem;
  }
  .testimonial-reveal-card {
    padding: 40px 20px;
    min-height: auto;
  }
  .author-img-halo {
    width: 65px;
    height: 65px;
  }

  .timeline-item {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .achievements-banner-custom {
    padding: 25px 0 !important;
  }

  .achievement-item {
    padding: 0;
  }

  .philosophy-manifesto-section {
    padding: 40px 0;
  }

  .item-title {
    font-size: 1.3rem;
  }

  .item-content {
    padding: 30px 20px;
  }

  .btn-outline-gold {
    padding: 12px 30px !important;
  }

  .timeline-content {
    padding: 20px;
  }

  .skill-card-title {
    font-size: 1.2rem;
  }
  .skill-list li:last-child {
    margin-bottom: 0;
  }

  .achievements-banner-custom .col-md-3 {
    margin-bottom: 0 !important;
  }

  .legacy-deco-lines {
    display: none;
  }

  .narrative-quote {
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
  }
}
/* ==========================================================================
   Onyx & Sunstone Masterpiece Footer
   ========================================================================== */
.site-footer {
  background-color: #000000;
  position: relative;
  padding: 100px 0 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(191, 148, 86, 0.15);
}

.stardust-texture-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(191, 148, 86, 0.08) 1px,
    transparent 0
  );
  background-size: 48px 48px;
  opacity: 0.6;
  pointer-events: none;
}

.onyx-footer-brand img {
  margin-bottom: 29px;
}

/* Elegant Architectural Headings */
.onyx-heading {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 40px;
}

.onyx-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px; /* Fixed architectural width */
  height: 1px;
  background: var(--gold);
}

.onyx-heading::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
}

.onyx-footer-logo {
  height: 110px;
  filter: drop-shadow(0 0 25px rgba(191, 148, 86, 0.2));
}

.onyx-bio {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 2.1; /* Architectural Spacing */
  letter-spacing: 0.6px;
}

.sunstone-social-circle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(191, 148, 86, 0.2);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.sunstone-social-circle:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(191, 148, 86, 0.4);
}

.onyx-links-list li {
  margin-bottom: 24px; /* Editorial air between links */
}

.onyx-links-list a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.onyx-links-list a:hover {
  color: var(--gold);
  transform: translateX(12px);
}

.sunstone-icon-frame {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(191, 148, 86, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
  background: rgba(191, 148, 86, 0.02);
}

.onyx-contact-item:hover .sunstone-icon-frame {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 25px rgba(191, 148, 86, 0.6);
  transform: scale(1.1);
}

.contact-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.onyx-footer-bottom {
  background-color: #040404;
  padding: 24px 0;
  margin-top: 90px; /* ZEN BOTTOM VOID */
  border-top: 1px solid rgba(191, 148, 86, 0.06);
}

.onyx-copyright {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  letter-spacing: 3px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.onyx-copyright p{
    margin-bottom: 0;
}

.onyx-footer-bottom img.footer-developer-logo{
        margin: 0 10px;
}

.onyx-heart {
  color: #c9a050;
  margin: 0 12px;
}

.designer-signature {
  color: var(--gold);
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

.onyx-footer-bottom img.footer-developer-logo {
  width: 50px;
}

@media (max-width: 991px) {
  .site-footer {
    padding: 120px 0 0 0;
  }
  .onyx-footer-brand {
    margin-bottom: 100px;
  }
  .onyx-heading {
    margin-bottom: 45px;
  }
  .onyx-footer-bottom {
    text-align: center;
    margin-top: 80px;
  }
  .onyx-links-list li {
    margin-bottom: 18px;
  }
  .onyx-copyright {
    letter-spacing: 1px;
    font-size: 0.75rem;
    line-height: 1.6;
    padding: 0 15px;
  }
}

/* Whatsapp chat box */

.whatsapp-chatbox {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 9999;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  padding: var(--btn-padding);
  height: var(--btn-height);
  background: linear-gradient(90deg, var(--wa-start), var(--wa-end));
  border-radius: var(--radius);
  box-shadow: var(--wa-shadow);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.12s ease;
  will-change: transform;
  border: none;
}

.whatsapp-btn svg {
  flex: 0 0 auto;
  display: block;
  margin-left: 2px;
}

.whatsapp-label {
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.02);
  box-shadow: 0 10px 30px rgba(31, 174, 79, 0.28);
}

/* ==========================================================================
   Artistry Noir Hero Section
   ========================================================================== */

.artistry-hero {
  background-color: #000000;
  padding: 240px 0 100px 0; /* Increased to 240px to resolve header overlap */
  position: relative;
  overflow: hidden;
}

.onyx-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.onyx-title-main {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 30px;
}

.onyx-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Artistry Noir: Kinetic Gold Thread Slider
   ========================================================================== */

.service-ribbon-section {
  background-color: #000000;
  position: relative;
  border-top: 1px solid rgba(191, 148, 86, 0.1);
}

.service-ribbon-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.service-ribbon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.ribbon-item {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 25px 5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
}

.ribbon-item:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.ribbon-item.active {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(191, 148, 86, 0.3);
}

.gliding-thread-base {
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.gliding-thread {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0; /* Updated via JS */
  background: var(--gold);
  box-shadow: 0 10px 20px rgba(191, 148, 86, 0.5);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service Stage Slider */
.service-stage-section {
  background-color: #000000;
  padding: 120px 0;
  overflow: hidden;
}

.service-stage-carousel .owl-item {
  opacity: 0.2;
  transition: all 1s ease;
  transform: scale(0.9);
}

.service-stage-carousel .owl-item.active {
  opacity: 1;
  transform: scale(1);
}

/* Portal & Content Refinements */
.portal-stack {
  position: relative;
  max-width: 520px;
  margin-right: auto;
}

.arched-portal {
  border: 1px solid rgba(191, 148, 86, 0.15);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
}

.spotlight-title {
  font-size: 4rem;
  letter-spacing: -1px;
}

.onyx-desc {
  font-size: 1.15rem;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .service-ribbon {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 40px;
    padding-bottom: 10px;
  }
  .service-ribbon::-webkit-scrollbar {
    display: none;
  }
  .ribbon-item {
    font-size: 0.9rem;
  }
  .service-stage-section {
    padding: 80px 0;
  }
  .spotlight-title {
    font-size: 3rem;
  }
}

/* ==========================================================================
   Contact Page (Bespoke Portal)
   ========================================================================== */

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff !important;
}
.breadcrumb-item.active {
  opacity: 0.7;
}

.contact-hero {
  padding: 160px 0 100px;
  background-color: var(--black);
  background-image: var(--bg-pattern);
  background-size: 30px 30px;
  position: relative;
  border-bottom: 1px solid rgba(226, 192, 141, 0.1);
}

.contact-info-section {
  padding: 100px 0;
  background: #000;
}

.contact-cards-row {
  margin-top: 100px;
}

.contact-card-bespoke {
  background: #0a0a0a;
  border: 1px solid rgba(226, 192, 141, 0.1);
  padding: 50px 40px;
  text-align: center;
  border-radius: 20px;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.contact-card-bespoke a{
    color: #fff;
}

.contact-card-bespoke::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sunstone);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-card-bespoke:hover {
  transform: translateY(-10px);
  border-color: rgba(226, 192, 141, 0.4);
}

.contact-card-bespoke:hover::after {
  transform: scaleX(1);
}

.card-icon-new {
  width: 80px;
  height: 80px;
  background: rgba(226, 192, 141, 0.05);
  border: 1px solid var(--sunstone);
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sunstone);
  font-size: 1.8rem;
}

.card-label-new {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--sunstone);
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.card-value-new {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}

/* Centered Portal Form */
.portal-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: #0a0a0a;
  padding: 80px;
  border-radius: 40px;
  border: 1px solid rgba(226, 192, 141, 0.1);
  position: relative;
}

.portal-form-container::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 40px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(226, 192, 141, 0.3),
    transparent,
    rgba(226, 192, 141, 0.1)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.portal-heading {
  font-family: var(--font-heading);
  font-size: 4rem;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.portal-heading span {
  font-style: italic;
  color: var(--sunstone);
}

.portal-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Map Section */
.map-full-width {
  height: 600px;
  filter: grayscale(1) contrast(1.1) brightness(0.8);
  border-top: 1px solid rgba(226, 192, 141, 0.1);
}

@media (max-width: 992px) {
  .portal-form-container {
    padding: 40px;
  }
  .portal-heading {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
}

.onyx-input-group {
  position: relative;
  margin-bottom: 35px;
}

.onyx-input {
  width: 100%;
  background: transparent !important;
  border: none;
  border-bottom: 1px solid rgba(226, 192, 141, 0.2);
  padding: 15px 0;
  color: #fff !important;
  font-size: 1.1rem;
  transition: var(--transition-medium);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

select.onyx-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e2c08d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  cursor: pointer;
  padding-right: 30px;
}

select.onyx-input option {
  background-color: #0a0a0a;
  color: #fff;
  padding: 10px;
}

.onyx-input:focus {
  outline: none;
  border-bottom: 1px solid var(--sunstone);
  box-shadow: none;
}

.onyx-label {
  position: absolute;
  left: 0;
  top: 15px;
  color: #666;
  pointer-events: none;
  transition: var(--transition-medium);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.onyx-input:focus ~ .onyx-label,
.onyx-input:not(:placeholder-shown) ~ .onyx-label,
select.onyx-input:valid ~ .onyx-label {
  top: -15px;
  font-size: 0.7rem;
  color: var(--sunstone);
}

/* Our Schedule Section */
.schedule-section {
  padding: 120px 0;
  background: #000;
  border-bottom: 1px solid rgba(226, 192, 141, 0.1);
}

.schedule-narrative {
  padding-right: 50px;
}

.schedule-list-wrapper {
  background: #0a0a0a;
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(226, 192, 141, 0.1);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-item:last-child {
  border-bottom: none;
}

.day-circle {
  width: 35px;
  height: 35px;
  background: rgba(226, 192, 141, 0.1);
  color: var(--sunstone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  margin-right: 15px;
}

.day-name {
  color: #fff;
  font-weight: 500;
  flex-grow: 1;
}

.time-range {
  color: #888;
  font-size: 0.9rem;
}

.time-range.closed {
  color: #ff4d4d;
  font-weight: 600;
  text-transform: uppercase;
}

.quote-editorial {
  border-left: 2px solid var(--sunstone);
  padding-left: 30px;
  font-style: italic;
  color: #999;
  margin-top: 50px;
}

/* ==========================================================================
   Portfolio Page (Masterpiece Collection)
   ========================================================================== */

.portfolio-hero {
  padding: 180px 0 100px;
  background-color: var(--black);
  background-image: var(--bg-pattern);
  background-size: 30px 30px;
  position: relative;
  border-bottom: 1px solid rgba(226, 192, 141, 0.1);
}

.portfolio-gallery-section {
  padding: 80px 0 120px;
  background: #000;
}

/* Filter Ribbon */
.filter-ribbon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.filter-btn {
  padding: 10px 25px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(226, 192, 141, 0.2);
  color: #ccc;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-medium);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--sunstone);
  color: #000;
  border-color: var(--sunstone);
  font-weight: 600;
}

/* Hybrid Portfolio Layouts */
.editorial-mosaic-grid {
  width: 100%;
  transition: all 0.5s ease;
}

/* 1. Bespoke Mosaic Mode (All Artistry - Masonry) */
.editorial-mosaic-grid.is-masonry {
  display: block;
  column-count: 3;
  column-gap: 20px;
}

.editorial-mosaic-grid.is-masonry .mosaic-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
}

.editorial-mosaic-grid.is-masonry .mosaic-img {
  height: auto;
  width: 100%;
  display: block;
}

/* 2. Standard Grid Mode (Category Tabs) */
.editorial-mosaic-grid.is-standard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.editorial-mosaic-grid.is-standard .mosaic-item {
  width: 100%;
  aspect-ratio: 1 / 1.1; /* Slightly taller for better face visibility in 3-col */
  grid-column: span 1 !important;
  grid-row: span 1 !important;
}

.editorial-mosaic-grid.is-standard .mosaic-img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Core Item Styles */
.mosaic-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #0a0a0a;
}

.mosaic-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.mosaic-img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Overlay & Cinematic Effects */
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-item:hover .mosaic-img {
  transform: scale(1.08);
}

.mosaic-content {
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.mosaic-item:hover .mosaic-content {
  transform: translateY(0);
}

.mosaic-category {
  font-size: 0.75rem;
  color: var(--sunstone);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.mosaic-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.mosaic-icon-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--sunstone);
  color: var(--sunstone);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) rotate(-45deg);
  transition: all 0.5s ease;
}

.mosaic-item:hover .mosaic-icon-btn {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* Filtering Utility Class */
.mosaic-item.hide {
  display: none !important;
}

/* Responsive Mosaic */
@media (max-width: 1200px) {
  .editorial-mosaic-grid.is-masonry {
    column-count: 3;
  }
  .editorial-mosaic-grid.is-standard {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .editorial-mosaic-grid.is-masonry {
    column-count: 2;
  }
  .editorial-mosaic-grid.is-standard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .editorial-mosaic-grid.is-masonry,
  .editorial-mosaic-grid.is-standard {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .editorial-mosaic-grid.is-masonry .mosaic-item {
    width: 100% !important;
    margin-bottom: 20px;
    aspect-ratio: auto !important;
  }
  .editorial-mosaic-grid.is-standard .mosaic-item {
    width: 100% !important;
    aspect-ratio: 4/5 !important;
  }

  .mosaic-title {
    font-size: 1.5rem;
  }
  .portfolio-filters {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .filter-btn {
    width: 80%;
    text-align: center;
  }

  .site-footer {
    padding: 70px 0 0 0;
  }

  .onyx-heading::after,
  .onyx-heading::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .artistry-hero {
    padding: 150px 0 60px 0;
  }
}

/* ==========================================================================
   Academy Page Styles
   ========================================================================== */
.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}
.mb-80 {
  margin-bottom: 80px;
}

/* Academy Hero */
.academy-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-color: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.academy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.academy-hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 1;
}

.academy-hero-content {
  position: relative;
  z-index: 5;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

.scroll-indicator .mouse {
  width: 25px;
  height: 45px;
  border: 2px solid var(--white);
  border-radius: 20px;
  margin-bottom: 15px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

/* Philosophy Section */
.philosophy-image-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 550px;
}

.philosophy-img-1 {
  grid-column: 1 / 10;
  grid-row: 1 / 11;
  z-index: 1;
  border: 1px solid var(--gold-muted);
}

.philosophy-img-1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.philosophy-img-2 {
  grid-column: 6 / 13;
  grid-row: 5 / 13;
  z-index: 2;
  border: 10px solid var(--black);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.philosophy-img-2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.academy-badge {
  position: absolute;
  bottom: 20px;
  left: 10%;
  z-index: 3;
  background: var(--gold);
  color: var(--black);
  animation: none;
  transform: rotate(-10deg);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-muted);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px) rotate(10deg);
}

.feature-text h5 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* Reel Cards */
.reel-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-medium);
}

.reel-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0.6;
  transition: var(--transition-medium);
}

.sunstone-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  z-index: 10;
  opacity: 1;
  transition: var(--transition-medium);
  backdrop-filter: blur(5px);
}

.sunstone-play-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px var(--gold);
}

.reel-card:hover .reel-thumb img {
  transform: scale(1.1);
}

.reel-card:hover .reel-overlay {
  opacity: 0.9;
}

.reel-info {
  padding: 25px;
  text-align: center;
}

.reel-info h4 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.course-tag {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.award-frame {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 15px;
  background: #050505;
  transition: var(--transition-medium);
}

.award-frame img {
  width: 100%;
  height: auto;
  filter: sepia(30%) contrast(1.1);
  transition: var(--transition-medium);
}

.award-item:hover .award-frame {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.award-item:hover .award-frame img {
  filter: sepia(0%) contrast(1);
}

/* Terms Card */
.terms-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.bg-gold {
  background: var(--gold);
}
.text-dark {
  color: var(--black) !important;
}

.terms-list li {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* ==========================================================================
   Academy Page - Responsive Fixes
   ========================================================================== */
@media (max-width: 991px) {
  .philosophy-image-grid {
    height: 400px;
    margin-bottom: 50px;
  }
  .main-heading {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .main-heading {
    font-size: 2.2rem;
  }
  .pt-120 {
    padding-top: 80px;
  }
  .pb-120 {
    padding-bottom: 80px;
  }
}

/* ==========================================================================
   Academy Page - Ultra-Premium Redesign (Consolidated)
   ========================================================================== */

/* Hero Section */
.academy-hero {
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.academy-hero .main-heading {
  font-size: 5rem;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.academy-hero .slide-text {
  font-size: 1.1rem;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Philosophy Section */
.philosophy-section {
  background: #000;
}

.luxury-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.03);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-heading);
}

.artistic-collage {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}

.collage-main-frame {
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.collage-sub-frame {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  z-index: 3;
  border: 8px solid #000;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.academy-metric-badge {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  background: var(--gold);
  color: #000;
  padding: 25px 15px;
  z-index: 5;
  text-align: center;
  box-shadow: 0 15px 30px rgba(191, 148, 86, 0.3);
}

.metric-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.metric-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.editorial-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.luxury-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.l-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.f-count {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  opacity: 0.6;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* Success Stories (Cinetic Reels) */
.testimonials-section {
  position: relative;
  background: #000;
}

.smartphone-frame {
  position: relative;
  background: #050505;
  border: 8px solid #1a1a1a;
  border-radius: 40px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  height: 520px;
  margin: 0 auto;
  width: 100%;
}

.frame-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #1a1a1a;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.smartphone-frame:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: #d4af37;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(212, 175, 55, 0.2);
}

.reel-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.smartphone-frame:hover .reel-thumb img {
  transform: scale(1.1);
}

.cinematic-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  z-index: 10;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.play-pulse {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: playPulse 2s infinite;
  opacity: 0;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.cinematic-play-btn:hover {
  background: var(--gold);
  color: #000;
  transform: translate(-50%, -50%) scale(1.1);
}

.reel-info-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 15px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 4;
  text-align: center;
}

.reel-info-glass h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
}

.reel-info-glass .course-tag {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Awards Ticker */
.awards-ticker-container {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 12px 20px;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
}

.awards-ticker {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
}

.ticker-item {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-right: 35px;
  position: relative;
}

.ticker-item::after {
  content: "•";
  position: absolute;
  right: -18px;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Recognition & Awards Gallery */
.awards-masonry-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.size-lg {
  grid-column: span 2;
  grid-row: span 2;
}
.size-md {
  grid-column: span 1;
  grid-row: span 2;
}
.size-sm {
  grid-column: span 1;
  grid-row: span 1;
}

.award-art-frame {
  position: relative;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 8px;
  background: #080808;
  transition: all 0.5s ease;
}

.award-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(15%) contrast(1.1);
  transition: all 0.6s ease;
}

.frame-glare {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.award-collage-item:hover .award-art-frame {
  border-color: var(--gold);
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.award-collage-item:hover .award-art-frame img {
  filter: sepia(0%) contrast(1);
}

.award-collage-item:hover .frame-glare {
  left: 150%;
}

.floating-gold-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: orbFloat 12s infinite alternate ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -100px;
}
.orb-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -50px;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.2);
  }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .awards-masonry-collage {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .academy-hero .main-heading {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }
  .recognition-section .section-heading {
    font-size: 3rem;
  }
  .luxury-bg-text {
    font-size: 20vw;
  }
  .artistic-collage {
    margin-bottom: 80px;
    padding-right: 0;
  }
  .collage-sub-frame {
    width: 50%;
    right: 0;
  }
  .academy-metric-badge {
    left: 10px;
    padding: 15px 10px;
  }
  .metric-number {
    font-size: 1.5rem;
  }
  .awards-masonry-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .size-lg,
  .size-md,
  .size-sm {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .academy-hero {
    height: auto;
    padding: 150px 0 100px;
  }
  .academy-hero .main-heading {
    font-size: 2.8rem;
  }
  .smartphone-frame {
    height: 480px;
  }
  .awards-masonry-collage {
    grid-auto-rows: auto;
    display: flex;
    flex-direction: column;
  }
  .award-art-frame {
    height: 300px;
  }
}

/* ==========================================================================
   Academy Page - Terms & Conditions (Premium Redesign)
   ========================================================================== */
.premium-terms-wrapper {
  position: relative;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 80px 60px;
  backdrop-filter: blur(20px);
  border-radius: 4px;
}

.terms-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  opacity: 0.6;
}

.terms-line-art {
  width: 100px;
  height: 1px;
  background: var(--gold);
  margin: 30px auto;
  position: relative;
}

.terms-line-art::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.term-protocol-card {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 40px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.term-protocol-card.highlighted {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #0d0d0d 0%, #1a150a 100%);
}

.protocol-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 25px;
  opacity: 0.8;
}

.protocol-content h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.protocol-content p {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 0;
}

.term-protocol-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.wax-seal-icon {
  width: 80px;
  height: 80px;
  background: #000;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

@media (max-width: 991px) {
  .premium-terms-wrapper {
    padding: 50px 30px;
  }
}

/* Certifications Grid Fix */
.recognition-section .award-art-frame {
  height: 350px;
}

.certificate_row {
  padding-top: 50px;
}

/* ==========================================================================
   Academy Page - Terms & Conditions (Reference Match)
   ========================================================================== */
.onyx-terms-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-bottom: 60px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.terms-gold-top {
  height: 4px;
  background: var(--gold);
  width: 100%;
  margin-bottom: 60px;
}

.terms-card-content {
  padding: 0 50px;
}

.terms-sub-heading {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
  font-family: var(--font-body);
}

.terms-main-heading {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 0;
}

.terms-list-simple {
  /* max-width: 800px;
    margin: 0 auto; */
  text-align: left;
  margin-bottom: 0;
}

.terms-list-simple li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s ease;
}

.terms-list-simple li:last-child {
  margin-bottom: 0;
}

.terms-list-simple li:hover {
  background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateX(10px);
}

.term-icon-circle {
  width: 35px;
  height: 35px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 2px;
}

.terms-list-simple p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .terms-main-heading {
    font-size: 2.5rem;
  }
  .terms-card-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .terms-list-simple li {
    padding: 15px;
  }
  .terms-list-simple p {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Academy Premium Hero (Centered Reference Design)
   ========================================================================== */
.academy-reference-hero {
  position: relative;
  height: 650px;
  background-color: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.academy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 20%; /* Keep focus on face if portrait */
  z-index: 0;
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 1;
}

/* Faint Watermark Text */
.hero-watermark-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  line-height: 0.85;
}

.hero-watermark-text span {
  font-family: var(--font-heading);
  font-size: 12vw;
  font-style: italic;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  text-transform: capitalize;
}

/* Content Elements */
.hero-pill-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.hero-sub-heading {
  font-size: 0.95rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-main-heading {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-mentor-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hero-mentor-line::before,
.hero-mentor-line::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-mentor-line span {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Centered Scroll Indicator */
.scroll-indicator-center {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mouse-outline {
  width: 26px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  position: relative;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.mouse-outline:hover {
  opacity: 1;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.mouse-outline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
}

@media (max-width: 991px) {
  .hero-main-heading {
    font-size: 4rem;
  }
  .hero-watermark-text span {
    font-size: 15vw;
  }
}

@media (max-width: 768px) {
  .academy-reference-hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0;
  }
  .hero-main-heading {
    font-size: 3rem;
  }
  .hero-watermark-text {
    display: none; /* Hide on small screens for clarity */
  }
}

/* ==========================================================================
   Academy Enrollment & Why Choose Us Section (Theme Matched)
   ========================================================================== */
.enrollment-section {
  background-color: #000; /* Back to Black */
  padding: 120px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.pt-100 {
  padding: 100px 0;
}

.enrollment-section .sub-heading {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.enrollment-section .section-heading {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Features List */
.mastery-features-list {
  margin-top: 40px;
}

.mastery-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
}

.feature-icon-wrapper {
  flex: 0 0 55px;
  height: 55px;
  background: rgba(191, 148, 86, 0.1); /* Subtle gold tint */
  border: 1px solid rgba(191, 148, 86, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mastery-feature-item:hover .feature-icon-wrapper {
  background: var(--gold);
  color: var(--black);
  transform: rotateY(180deg) scale(1.1);
}

.feature-content h5 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Enrollment Card - Onyx Glassmorphism */
.academy-enrollment-card {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(191, 148, 86, 0.2);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  font-weight: 600;
}

/* Premium Inputs - Dark Mode */
.premium-input,
.premium-select {
  height: 55px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding-left: 0;
  font-size: 1rem;
  color: var(--white);
  background-color: transparent !important;
  transition: all 0.3s ease;
}

.premium-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 5px center !important;
  background-size: 16px !important;
  padding-right: 30px !important;
  cursor: pointer;
}

.premium-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.premium-input:focus {
  box-shadow: none;
  border-bottom-color: var(--gold);
  background-color: transparent !important;
}

.premium-select:focus {
  box-shadow: none;
  border-bottom-color: var(--gold);
  background-color: transparent !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 5px center !important;
  background-size: 16px !important;
}

.premium-select option {
  background: #111;
  color: #fff;
}

textarea.premium-input {
  height: auto;
  padding-top: 15px;
}

.premium-submit-btn {
  background: var(--gold);
  color: var(--black);
  height: 62px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.premium-submit-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(191, 148, 86, 0.3);
}

/* Trust Indicator */
.trust-indicator {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--black);
  margin-left: -15px;
  object-fit: cover;
  background: #222;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.trust-text strong {
  color: var(--gold);
}

@media (max-width: 1199px) {
  .enrollment-section {
    padding: 100px 0;
  }
  .mastery-feature-item {
    gap: 15px;
    margin-bottom: 25px;
  }
  .hero-main-heading {
    font-size: 3.2rem;
  }
  .academy-reference-hero {
    height: 600px;
  }
}

@media (max-width: 1024px) {
  .academy-reference-hero {
    height: 550px;
  }
  .hero-main-heading {
    font-size: 2.8rem;
  }
  .hero-watermark-text span {
    font-size: 10vw;
  }
  .enrollment-section .section-heading {
    font-size: 3rem;
  }
  .academy-enrollment-card {
    padding: 40px 30px;
  }
}

@media (max-width: 991px) {
  .enrollment-section {
    padding: 80px 0;
  }
  .section-heading {
    font-size: 2rem;
  }
  .academy-enrollment-card {
    padding: 35px 25px;
    margin-top: 60px;
  }
  .academy-reference-hero {
    height: 500px;
  }
  .mastery-features-list {
    margin-top: 30px;
  }
  .onyx-footer-brand {
    margin-bottom: 40px;
  }
  .onyx-nav-cluster,
  .onyx-contact-cluster {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .onyx-title-main {
    font-size: 2.5rem;
  }

  .academy-reference-hero {
    min-height: 80vh;
    height: auto;
    padding: 100px 0;
  }
  .hero-main-heading {
    font-size: 2.5rem;
  }
  .enrollment-section .section-heading {
    font-size: 2rem;
  }
  .enrollment-section {
    padding: 60px 0;
  }

  .mastery-feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .feature-icon-wrapper {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    font-size: 1.2rem;
  }

  .kinetic-reel-wrapper {
    justify-content: center;
  }
  .smartphone-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .recognition-section {
    padding-bottom: 60px;
  }
  .terms-section {
    padding-bottom: 60px;
  }
  .onyx-terms-card {
    padding: 40px 20px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .footer-grid-layout {
    text-align: center;
  }
  .onyx-socials {
    justify-content: center;
  }
  .onyx-contact-item {
    flex-direction: column;
    text-align: center;
  }
  .sunstone-icon-frame {
    margin: 0 auto 15px auto !important;
  }

  .service-ribbon {
    padding: 0;
    gap: 20px;
  }

  .arched-portal-new {
    height: 400px;
  }

  .editorial-heading {
    font-size: 2.4rem !important;
  }

  .service-spotlight {
    margin-bottom: 60px;
  }

  .editorial-grid-clean {
    margin-top: 30px;
  }

  .onyx-footer-bottom {
    margin-top: 20px;
  }

  .onyx-copyright {
    padding: 0;
  }

  .academy-enrollment-card {
    margin-top: 0;
  }

  .terms-card-content {
    padding: 0;
  }

  .contact-hero {
    padding: 130px 0 60px;
  }

  .contact-card-bespoke {
    padding: 30px 20px;
  }

  .schedule-section {
    padding: 60px 0;
  }

  .schedule-narrative {
    padding-right: 0;
  }

  .schedule-list-wrapper {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .portal-form-container {
    padding: 30px 20px;
  }

  .portal-heading {
    font-size: 1.8rem;
  }
  .portal-subtitle {
    margin-bottom: 30px;
  }

  #luxury-contact-form .mt-5 {
    margin-top: 10px !important;
  }

  .contact-info-section {
    padding: 50px 0;
  }

  .map-full-width {
    height: 400px;
  }

  .portfolio-hero {
    padding: 120px 0 50px;
  }

  .portfolio-gallery-section {
    padding: 50px 0 70px;
  }

  .editorial-mosaic-grid.is-masonry .mosaic-img {
    height: 400px;
    object-fit: cover;
    object-position: top;
  }

  .onyx-nav-cluster,
  .onyx-contact-cluster {
    margin-bottom: 15px;
  }

  .service-stage-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .academy-reference-hero {
    min-height: 70vh;
    padding: 80px 0;
  }
  .hero-main-heading {
    font-size: 2rem;
  }
  .hero-pill-badge {
    font-size: 0.7rem;
    padding: 6px 15px;
  }
  .hero-mentor-line span {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .enrollment-section .section-heading {
    font-size: 2rem;
  }
  .academy-enrollment-card {
    padding: 30px 15px;
  }
  .form-title {
    font-size: 1.8rem;
  }

  .feature-content h5 {
    font-size: 1.2rem;
  }
  .feature-content p {
    font-size: 0.9rem;
  }

  .trust-indicator {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .award-art-frame {
    margin-bottom: 20px;
  }

  .section-heading.display-4 {
    font-size: 2.2rem;
  }
  .sub-heading {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 430px) {
  .academy-reference-hero {
    min-height: 60vh;
    padding: 60px 0;
  }
  .scroll-indicator-center {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-main-heading {
    font-size: 1.8rem;
  }
  .enrollment-section .section-heading {
    font-size: 1.8rem;
  }

  .stardust-texture-overlay,
  .floating-gold-orb {
    display: none !important;
  }

  .academy-enrollment-card {
    padding: 25px 15px;
    border-radius: 15px;
  }
  .form-title {
    font-size: 1.6rem;
  }
  .form-subtitle {
    font-size: 0.7rem;
  }

  .mastery-feature-item {
    margin-bottom: 25px;
  }

  .terms-main-heading {
    font-size: 1.8rem;
  }
  .onyx-footer-logo {
    max-width: 150px;
    margin-bottom: 30px;
  }
}

@media (max-width: 360px) {
  .hero-main-heading {
    font-size: 1.6rem;
  }
  .enrollment-section .section-heading {
    font-size: 1.6rem;
  }
  .hero-pill-badge {
    font-size: 0.65rem;
  }
  .premium-input,
  .premium-select {
    font-size: 0.9rem;
    height: 50px;
  }
  .premium-submit-btn {
    font-size: 0.9rem;
    height: 55px;
  }
}
