html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0B0F0C;
  font-family: 'Inter', sans-serif;
  color: #E8F0E5;
  line-height: 1.5;
  overflow-x: hidden;
}

/* modern gradient background with depth */
.bg-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(circle at 20% 30%, #142010, #0A1208);
}

.animated-glow {
  position: fixed;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 160, 80, 0.15), transparent 70%);
  top: -20vh;
  right: -20vw;
  animation: floatGlow 18s infinite alternate;
  z-index: -1;
  pointer-events: none;
}

.animated-glow-2 {
  left: -30vw;
  bottom: -30vh;
  background: radial-gradient(circle, rgba(80, 200, 120, 0.12), transparent);
  animation: floatGlowSlow 24s infinite alternate;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }

  100% {
    transform: translate(5%, 5%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes floatGlowSlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  100% {
    transform: translate(-3%, -3%) scale(1.3);
    opacity: 0.7;
  }
}

/* container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* modern navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 200, 120, 0.2);
}

.logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #F9E0A0, #C5A86A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #D4DFC9;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #F3C26B;
}

.btn-whatsapp {
  background: #25D36620;
  border: 1px solid #25D366;
  padding: 10px 24px;
  border-radius: 60px;
  color: #25D366;
  font-weight: 600;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #0A1F0A;
}

/* HERO section - bold modern animation */
.hero {
  padding: 60px 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}

.hero-left {
  flex: 1.2;
}

.hero-badge {
  background: rgba(243, 194, 107, 0.2);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(243, 194, 107, 0.5);
}

.hero-left h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #FFF1C1, #E5BA73);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.expert-tag {
  background: rgba(80, 120, 60, 0.3);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #CFE6C2;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-primary-glow {
  background: linear-gradient(95deg, #E8B86B, #C7923E);
  border: none;
  padding: 14px 34px;
  border-radius: 60px;
  font-weight: 700;
  color: #1C2417;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 18px rgba(232, 184, 107, 0.5);
}

.btn-primary-glow:hover {
  transform: scale(1.03);
  box-shadow: 0 0 28px #E8B86B;
}

.btn-outline-light {
  background: transparent;
  border: 1.5px solid #E8B86B;
  padding: 13px 32px;
  border-radius: 60px;
  color: #E8B86B;
  font-weight: 600;
}

.hero-right {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
}

.floating-card {
  background: rgba(30, 35, 24, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 30px;
  width: 100%;
  border: 1px solid rgba(200, 170, 100, 0.3);
  animation: floatSoft 5s infinite alternate;
  display: none;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-12px);
  }
}

.offer-text {
  font-size: 1.4rem;
  font-weight: 600;
}

/* modern grid for packages (completely different layout) */
.section-title {
  text-align: center;
  margin: 80px 0 50px;
}

.section-title h2 {
  font-size: 2.6rem;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(120deg, #F3DEB2, #DBA459);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.package-card {
  background: rgba(18, 24, 15, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 56px;
  padding: 32px 28px;
  transition: all 0.3s;
  border: 1px solid rgba(210, 170, 90, 0.3);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
}

.package-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: #E8B86B;
  box-shadow: 0 25px 40px -12px #E8B86B30;
}

.package-icon {
  font-size: 2.5rem;
  color: #E7BC78;
  margin-bottom: 20px;
}

.package-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.package-desc {
  color: #C7D4BB;
  margin: 12px 0 20px;
  font-size: 0.9rem;
}

.price-badge {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F3C26B;
  margin: 20px 0 10px;
}

.btn-card-modern {
  background: transparent;
  border: 1px solid #CBA25E;
  padding: 12px 0;
  width: 100%;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.2s;
  color: #E8B86B;
}

.btn-card-modern:hover {
  background: #E8B86B;
  color: #121F0E;
}

/* special banner animation */
.marquee-offer {
  background: linear-gradient(90deg, #2A3B22, #1F2E19);
  padding: 20px;
  border-radius: 80px;
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border: 1px solid #E8B86B80;
}

.offer-highlight {
  font-weight: 700;
  font-size: 1.3rem;
}

/* testomonial / expert row */
.expertise-show {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 60px 0;
}

.expert-item {
  background: #121A0E80;
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 10px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* footer CTA */
.footer-cta {
  background: radial-gradient(circle at 10% 20%, #1C2A16, #0C130A);
  border-radius: 70px;
  padding: 50px 40px;
  margin: 50px 0 40px;
  text-align: center;
}

@media (max-width: 800px) {
  .container {
    padding: 0 20px;
  }

  .hero-left h1 {
    font-size: 2.3rem;
  }
}

.reiki-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

@media(max-width:768px) {
  .reiki-grid {
    grid-template-columns: 1fr;
  }
}


.featured-course {
  border: 2px solid #E8B86B;

  background: linear-gradient(135deg,
      rgba(232, 184, 107, .12),
      rgba(18, 24, 15, .95));
}


.booking-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.booking-popup.active {
  display: flex;
}

.booking-popup-content {
  width: 95%;
  max-width: 550px;

  background: rgba(18,24,15,.95);

  border: 1px solid rgba(232,184,107,.4);

  border-radius: 40px;

  padding: 35px;

  position: relative;

  box-shadow: 0 0 40px rgba(232,184,107,.25);
}

.booking-header {
  text-align: center;
  margin-bottom: 25px;
}

.booking-header h2 {
  color: #F3C26B;
  margin-bottom: 10px;
}

.booking-header p {
  color: #C7D4BB;
}

.booking-close {
  position: absolute;
  right: 20px;
  top: 20px;

  background: none;
  border: none;

  color: #E8B86B;

  font-size: 28px;
  cursor: pointer;
}

.booking-field {
  margin-bottom: 18px;
}

.booking-field label {
  display: block;
  margin-bottom: 8px;
  color: #E8F0E5;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  padding: 12px 16px;

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(232,184,107,.3);

  border-radius: 16px;

  color: white;
}

.booking-field input:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: #E8B86B;
}

.booking-submit {
  width: 100%;
  margin-top: 10px;
}

.selected-booking-card {
  background: rgba(232,184,107,.12);
  border: 1px solid rgba(232,184,107,.35);
  border-radius: 20px;
  padding: 14px 18px;
  margin-bottom: 25px;
  text-align: center;
  color: #F3C26B;
  font-weight: 600;
}

.selected-booking-card i {
  margin-right: 8px;
}


/* ==========================
   Booking Success Page
========================== */
/* ==========================================
   BOOKING SUCCESS PAGE
========================================== */

.booking-success-section{
    background:#f4f8fa;
    min-height:100vh;
    padding:80px 0;
}

.success-card{

    background:#fff;
    color:#444;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 18px 50px rgba(0,0,0,.08);

}
.success-page-content{
  padding: 5px 9px;
}
.success-header{

    background:linear-gradient(
        135deg,
        #014755,
        #0d8b93
    );

    color:#fff;

    text-align:center;

    padding:55px 35px;

}

.success-icon{

    width:130px;

    height:130px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#fff;

    color:#28a745;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:60px;

    box-shadow:0 15px 35px rgba(255,255,255,.25);

}

.summary-item{

    border:1px solid #edf1f3;

    border-radius:14px;

    padding:9px;

    margin-bottom:18px;

    transition:.3s;

}

.summary-item:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.summary-label{

    font-size:13px;

    color:#777;

    margin-bottom:5px;

}

.summary-value{

    font-size:18px;

    font-weight:600;
    color:#555;

}

.next-step{

    display:flex;

    align-items:center;

    padding:15px 0;

    border-bottom:1px solid #ececec;

}

.next-step:last-child{

    border-bottom:none;

}

.next-step i{

    color:#28a745;

    font-size:20px;

    width:35px;

}

.booking-success-buttons .btn{

    min-width:220px;

    margin:10px;

}

.success-footer{

    text-align:center;

    color:#888;

    margin-top:30px;

    font-size:14px;

}


/* ======================================
   Hero Portrait Slider
====================================== */

.hero-portrait-container{

    position:relative;

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

}

.hero-slider{

    position:relative;

    width:480px;

    height:480px;

    border-radius:50%;

    overflow:hidden;

    border:8px solid rgba(233,193,93,.25);

    box-shadow:
        0 0 45px rgba(233,193,93,.18),
        0 30px 60px rgba(0,0,0,.35);

    background:#111;
}

.hero-slide{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:0;

    transform:scale(1);

    transition:
        opacity 1.4s ease,
        transform 6s ease;

}

.hero-slide.active{

    opacity:1;

    transform:scale(1.07);

}

.hero-glow{

    position:absolute;

    width:540px;

    height:540px;

    border-radius:50%;

    background:radial-gradient(
        rgba(233,193,93,.25),
        transparent 70%
    );

    animation:heroGlow 4s ease-in-out infinite;

    z-index:0;

}

.hero-slider{

    z-index:2;

}

.hero-slider-dots{

    margin-top:28px;

}

.hero-dot{

    display:inline-block;

    width:10px;

    height:10px;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    margin:0 5px;

    transition:.35s;

}

.hero-dot.active{

    background:#e9c15d;

    transform:scale(1.3);

}

@keyframes heroGlow{

    0%{

        transform:scale(1);

        opacity:.65;

    }

    50%{

        transform:scale(1.05);

        opacity:1;

    }

    100%{

        transform:scale(1);

        opacity:.65;

    }

}

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero-slider{

    animation:heroFloat 6s ease-in-out infinite;

}


@media (max-width:992px){

.hero-slider{

    width:360px;

    height:360px;

}

.hero-glow{

    width:420px;

    height:420px;

}

}

@media (max-width:576px){

.hero-slider{

    width:290px;

    height:290px;

}

.hero-glow{

    width:340px;

    height:340px;

}

}