:root{
  --gold:#E6A72A;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/* ===== HEADER ===== */
header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  padding:20px 80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(14px);
  background:rgba(0,0,0,0.35);
  z-index:100;
}

.logo{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  letter-spacing:2px;
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav{
  display:flex;
  gap:40px;
  align-items:center;
}

nav a{
  color:#ddd;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
}

nav a:hover{
  color:#e6a72a;
}

.header-btn{
  padding:10px 22px;
  border:1px solid var(--gold);
  border-radius:30px;
  color:var(--gold);
  text-decoration:none;
  transition:0.3s;
}

.header-btn:hover{
  background:var(--gold);
  color:#000;
}

/* ===== HAMBURGER ===== */
.hamburger {
  width: 28px;
  height: 22px;
  position: relative;
  display: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.4s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(0px);
  background: rgba(0,0,0,0);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 900;
}

.menu-overlay.active {
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.5);
  opacity: 1;
  pointer-events: auto;
}

/* Nav logo hidden on desktop */
#navMenu .logo {
  display: none;
}

/* ===== MOBILE — 1000px ===== */
@media (max-width: 1000px) {

  header { padding: 20px; }

  .hamburger { display: block; }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    background: #111;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: 0.4s cubic-bezier(.77,0,.18,1);
    z-index: 1000;
    padding-top: 60px;
  }

  nav.active { transform: translateX(0); }
  .call-fixed,.email-fixed,.whatsapp-fixed {
    z-index: 99 !important;
  }

  nav a {
    opacity: 0;
    transform: translateX(20px);
    transition: 0.4s;
  }

  nav.active a {
    opacity: 1;
    transform: translateX(0);
  }

  nav.active a:nth-child(1) { transition-delay: 0.1s; }
  nav.active a:nth-child(2) { transition-delay: 0.2s; }
  nav.active a:nth-child(3) { transition-delay: 0.3s; }
  nav.active a:nth-child(4) { transition-delay: 0.4s; }
  nav.active a:nth-child(5) { transition-delay: 0.5s; }
  nav.active a:nth-child(6) { transition-delay: 0.6s; }

  body.menu-open { overflow: hidden; }

  /* Show logo inside mobile nav */
  #navMenu .logo {
    display: block !important;
    margin-bottom: 10px;
  }

  .hero h1 { font-size: 34px; }
  .note { position: static; margin-top: 40px; }

  .snapshot-section { padding: 120px 30px; }
  .snapshot-title { font-size: 40px  !important; }
  .snapshot-row { flex-direction: column; }
  .snapshot-buttons { flex-direction: column; }

  .mobile_filters {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    box-shadow: rgba(0,0,0,0.1) 0 -2px 6px 0;
    background: #fff;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center !important;
    gap: 10px;
    align-items: center;
  }
}

/* ===== HERO ===== */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 20px;
  overflow:hidden;
  background: url(../img/hero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

canvas{
  position:absolute;
  inset:0;
  z-index:-3;
}

.nebula{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(100,50,255,0.3), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,100,150,0.25), transparent 60%);
  animation:nebulaMove 20s infinite alternate ease-in-out;
  z-index:-2;
}

@keyframes nebulaMove{
  from{ transform:translateY(-20px); }
  to{ transform:translateY(20px); }
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.95));
  z-index:-1;
}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:72px;
  font-weight:400;
  line-height:1.1;
  max-width:1000px;
  margin-bottom:30px;
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1.5s ease forwards;
}

.hero p{
  max-width:650px;
  font-size:18px;
  color:#ccc;
  margin-bottom:40px;
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1.5s ease 0.3s forwards;
}

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

.hero-buttons{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  justify-content:center;
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1.5s ease 0.6s forwards;
}

.primary-btn{
  background:var(--gold);
  color:#000;
  padding:14px 32px;
  border-radius:40px;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}
.primary-btn:hover{ transform:translateY(-3px); }

.outline-btn{
  border:1px solid var(--gold);
  color:var(--gold);
  padding:14px 32px;
  border-radius:40px;
  text-decoration:none;
  transition:0.3s;
}
.outline-btn:hover{ background:var(--gold); color:#000; }

.note{
  position:absolute;
  bottom:30px;
  right:40px;
  font-size:13px;
  color:#aaa;
}

/* ===== REVEAL TEXT ===== */
.reveal-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 1.1;
  text-align: center;
}

.reveal-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal 0.8s ease forwards;
}

.reveal-text span:nth-child(1){animation-delay:0.1s;}
.reveal-text span:nth-child(2){animation-delay:0.2s;}
.reveal-text span:nth-child(3){animation-delay:0.3s;}
.reveal-text span:nth-child(4){animation-delay:0.4s;}
.reveal-text span:nth-child(5){animation-delay:0.5s;}
.reveal-text span:nth-child(6){animation-delay:0.6s;}
.reveal-text span:nth-child(7){animation-delay:0.7s;}
.reveal-text span:nth-child(8){animation-delay:0.8s;}
.reveal-text span:nth-child(9){animation-delay:0.9s;}

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

/* ===== RECEIVE SECTION ===== */
.receive-section {
  position: relative;
  padding: 160px 140px;
  background: url('../img/chart_closeup.jpg');
  overflow: hidden;
}

.receive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(5 8 20 / 56%), rgb(5 8 20 / 61%));
  z-index: 0;
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.receive-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.receive-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.receive-left p {
  color: #aaa;
  max-width: 420px;
  margin-bottom: 35px;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #b7862d, #E6A72A);
  margin-bottom: 25px;
}

.receive-card {
  background: rgba(15,20,35,0.55);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 45px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 40px rgba(0,0,0,0.4), 0 0 60px rgba(183,134,45,0.05);
  transition: 0.4s ease;
  position: relative;
}

.receive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(243,176,61,.65), transparent);
}

.receive-card:hover {
  box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 80px rgba(183,134,45,0.12);
}

.receive-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #f4f6fa;
  font-weight: normal;
}

.receive-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.receive-card li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: 0.3s ease;
}
.receive-card li:hover { transform: translateX(6px); }

.check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4a24a, #b7862d);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.15), 0 0 0 1px rgba(255,255,255,0.04);
}

@media(max-width:1024px){
  .receive-container { flex-direction: column; gap: 60px; }
  .receive-left h2 { font-size: 42px; }
  .receive-card { width: 100%; }
  .receive-section { padding: 120px 30px; }
}

/* ===== CALM SECTION ===== */
.calm-section {
  position: relative;
  padding: 160px 140px;
  background: url(../img/testimonial-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.calm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(5 8 20 / 85%), rgb(5 8 20 / 0%));
}

.calm-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #aaa;
  margin-bottom: 20px;
  display: inline-block;
}

.calm-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  margin-bottom: 25px;
}

.calm-left p {
  color: #bbb;
  max-width: 520px;
  margin-bottom: 35px;
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.testimonial-card {
  background: rgba(15,20,35,0.75);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 24px;
  width: 420px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(243,176,61,.65), transparent);
}

/* Track = 3 slides wide */
.testimonial-track {
  display: flex;
  width: 300%;
  transition: transform 0.6s ease;
}

/* Each slide = 1/3 of track */


.quote-mark {
  font-size: 50px;
  color: #E6A72A;
  margin-bottom: 10px;
}

.testimonial-slide p {
  font-style: italic;
  color: #ddd;
  margin-bottom: 20px;
}

.author { color: #aaa; }
.author span { color: #E6A72A; }

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    /* background: rgba(255,255,255,0.3); */
    /* cursor: pointer; */
}
.dot.active { background: #E6A72A; }

@media(max-width:1024px){
  .calm-container { flex-direction: column; gap: 60px; }
  .calm-left h2 { font-size: 40px; }
  .testimonial-card { width: 100%; }
  .calm-section { padding: 120px 30px; }
}

/* ===== METHOD SECTION ===== */
.method-section {
  position: relative;
  padding: 160px 140px;
  background: url(../img/method.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.method-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(5 8 20 / 85%), rgb(5 8 20 / 71%));
}

.method-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.method-left {
  max-width: 600px;
  position: relative;
}

.method-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.method-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #E6A72A, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-50%); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(50%); opacity: 0; }
}

.method-sub { color: #bbb; margin-bottom: 40px; line-height: 1.6; }

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.step { display: flex; gap: 18px; align-items: flex-start; }

.step-icon {
  width: 42px;
  height: 42px;
  background: rgba(230,167,42,0.08);
  border: 1px solid rgba(230,167,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #E6A72A;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  background: #E6A72A;
  color: #111;
  box-shadow: 0 0 20px rgba(230,167,42,0.4);
}

.step h4 { margin: 0 0 6px; }
.step p { margin: 0; color: #aaa; font-size: 14px; }

.method-card {
  background: rgba(15,20,35,0.75);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 24px;
  width: 420px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
  animation: floatCard 6s ease-in-out infinite;
  position: relative;
}

.method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(243,176,61,.65), transparent);
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.method-card h3 { font-family: 'Cormorant Garamond', serif; margin-bottom: 20px; }
.method-card p { color: #bbb; line-height: 1.6; }
.gold { color: #E6A72A; }

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}
.reveal-up.active { opacity: 1; transform: translateY(0); }

@media(max-width:1024px){
  .method-container { flex-direction: column; gap: 60px; }
  .method-title { font-size: 40px; }
  .method-card { width: 100%; }
  .method-section { padding: 120px 30px; }
}

/* ===== OUTCOME SECTION ===== */
.outcome-section {
  position: relative;
  padding: 160px 80px;
  background: url(../img/outcome.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.outcome-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(230,167,42,0.07), transparent 70%);
  top: -250px;
  right: -250px;
  animation: outcome-glowMove 12s ease-in-out infinite alternate;
}

@keyframes outcome-glowMove {
  from { transform: translateY(0px); }
  to { transform: translateY(50px); }
}

.outcome-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.outcome-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 20px;
}

.outcome-subtitle { color: #9aa0b5; font-size: 18px; margin-bottom: 80px; }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.outcome-card {
  position: relative;
  background: linear-gradient(145deg, rgba(15,20,40,0.85), rgba(10,15,30,0.95));
  backdrop-filter: blur(20px);
  padding: 45px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.4s ease;
  overflow: hidden;
}

.outcome-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.outcome-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--out-x, 50%) var(--out-y, 50%), rgba(255,255,255,0.08), transparent 60%);
  opacity: 0;
  transition: 0.4s ease;
}
.outcome-card:hover::before { opacity: 1; }

.outcome-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 25px; }

.outcome-tag {
  position: relative;
  background: rgba(230,167,42,0.08);
  border: 1px solid rgba(230,167,42,0.4);
  color: #E6A72A;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  overflow: hidden;
}

.outcome-tag::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: outcome-tagShimmer 6s infinite;
}

@keyframes outcome-tagShimmer {
  0% { left: -100%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

.outcome-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.outcome-gold { color: #E6A72A; font-weight: 500; }

.outcome-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 30px 0;
}

.outcome-quote { font-style: italic; color: #c5c8d4; margin-bottom: 12px; line-height: 1.6; }
.outcome-author { font-size: 14px; color: #7f8599; }

.outcome-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}
.outcome-reveal.active { opacity: 1; transform: translateY(0); }

@media(max-width:1024px){
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-title { font-size: 42px; }
  .outcome-section { padding: 120px 30px; }
}

/* ===== PACKAGE SECTION ===== */
.package-section {
  position: relative;
  padding: 160px 80px;
  background: url("../img/packages.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.package-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(5 8 20 / 90%), rgb(5 8 20));
  z-index: 1;
}

.package-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(230,167,42,0.06), transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 1;
  animation: package-glowMove 12s ease-in-out infinite alternate;
}

@keyframes package-glowMove {
  from { transform: translateY(0px); }
  to { transform: translateY(40px); }
}

.package-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.package-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  margin-bottom: 20px;
}

.package-subtitle {
  color: #9aa0b5;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: linear-gradient(145deg, rgba(15,20,40,0.85), rgba(10,15,30,0.95));
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: left;
  transition: 0.4s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.package-featured {
  border: 1px solid rgba(230,167,42,0.5);
  box-shadow: 0 0 60px rgba(230,167,42,0.15);
}

.package-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #E6A72A;
  color: #000;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 500;
}

.package-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.package-desc { color: #b0b6c8; margin-bottom: 25px; }

.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.package-list li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  color: #c5c8d4;
}

.package-list li .fa-check { left: 0; color: #E6A72A; font-size: 14px; }

.package-response { font-size: 14px; color: #8a8f9f; margin-bottom: 25px; }

.package-btn-outline {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: 1px solid #E6A72A;
  background: transparent;
  color: #E6A72A;
  cursor: pointer;
  transition: 0.3s ease;
}
.package-btn-outline:hover { background: #E6A72A; color: #000; }

.package-btn-solid {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(90deg, #E6A72A, #f0c05a);
  border: none;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}
.package-btn-solid:hover { opacity: 0.9; }

@media(max-width:1024px){
  .package-grid { grid-template-columns: 1fr; }
  .package-title { font-size: 42px; }
  .package-section { padding: 120px 30px; }
}

/* ===== SNAPSHOT SECTION ===== */
.snapshot-section {
  position: relative;
  padding: 160px 80px;
  background: url(../img/snap.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.snapshot-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,167,42,0.07), transparent 70%);
  top: -200px;
  right: -200px;
  animation: snapshotGlow 10s ease-in-out infinite alternate;
}

@keyframes snapshotGlow {
  from { transform: translateY(0px); }
  to { transform: translateY(40px); }
}

.snapshot-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.snapshot-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  margin-bottom: 20px;
}

.snapshot-subtitle { color: #9aa0b5; font-size: 18px; margin-bottom: 40px; }

.snapshot-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.snapshot-btn-solid,
.snapshot-submit {
  position: relative;
  padding: 14px 32px;
  border-radius: 40px;
  background: linear-gradient(90deg, #E6A72A, #f0c05a);
  border: none;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
}

.snapshot-btn-solid::after,
.snapshot-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: snapshotShimmer 5s infinite;
}

@keyframes snapshotShimmer {
  0% { left: -100%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

.snapshot-btn-outline {
  padding: 14px 32px;
  border-radius: 40px;
  border: 1px solid #E6A72A;
  background: transparent;
  color: #E6A72A;
  cursor: pointer;
}

.snapshot-form-card {
  background: rgba(15,20,40,0.85);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: left;
  transition: 0.6s ease;
}

.snapshot-form { display: flex; flex-direction: column; gap: 20px; }
.snapshot-row { display: flex; gap: 20px; }

.snapshot-field { position: relative; width: 100%; }

.snapshot-field input,
.snapshot-field textarea,
.snapshot-field select {
  width: 100%;
  padding: 18px 18px 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,15,30,0.9);
  color: #fff;
  outline: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.snapshot-field textarea { border-radius: 20px; min-height: 100px; resize: none; }

.snapshot-field input:focus,
.snapshot-field textarea:focus,
.snapshot-field select:focus {
  border-color: #E6A72A;
  box-shadow: 0 0 15px rgba(230,167,42,0.3);
}

.snapshot-field label {
  position: absolute;
  left: 18px;
  top: 16px;
  font-size: 13px;
  color: #7f8599;
  transition: 0.3s ease;
  pointer-events: none;
}

.snapshot-field input:focus + label,
.snapshot-field input:not(:placeholder-shown) + label,
.snapshot-field textarea:focus + label,
.snapshot-field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 11px;
  color: #E6A72A;
}

.snapshot-success { display: none; text-align: center; padding: 60px 20px; }
.snapshot-success.active { display: block; }
.snapshot-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; margin-bottom: 15px; }
.snapshot-success p { color: #9aa0b5; }

/* ===== INSIGHT SECTION ===== */
.insight-section {
  position: relative;
  padding: 160px 80px;
  background: url(../img/blog.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.method-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(5 8 20), rgb(5 8 20 / 80%));
}

.insight-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,167,42,0.06), transparent 70%);
  top: -200px;
  left: -200px;
}

.insight-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.insight-title { font-family: 'Cormorant Garamond', serif; font-size: 64px; margin-bottom: 20px; }
.insight-subtitle { color: #9aa0b5; font-size: 18px; margin-bottom: 80px; }

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.insight-card {
  background: rgba(15,20,40,0.85);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.4s ease;
  text-align: left;
}

.insight-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(0,0,0,0.6); }

.insight-image { overflow: hidden; height: 220px; }

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

.insight-card:hover img { transform: scale(1.1); }

.insight-content { padding: 30px; }

.insight-tag {
  display: inline-block;
  font-size: 12px;
  color: #E6A72A;
  border: 1px solid rgba(230,167,42,0.4);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.insight-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 15px; }
.insight-content p { color: #b0b5c8; font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
.insight-link { color: #E6A72A; text-decoration: none; font-weight: 500; transition: 0.3s ease; }
.insight-link:hover { letter-spacing: 1px; }

.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #7f8599;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.insight-date { letter-spacing: 1px; text-transform: uppercase; }

.insight-location {
  color: #E6A72A;
  border: 1px solid rgba(230,167,42,0.4);
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 11px;
}

.insight-cta { margin-top: 80px; text-align: center; }

.insight-btn {
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  border: 1px solid #E6A72A;
  color: #E6A72A;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  transition: 0.4s ease;
}

.insight-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #E6A72A, #f0c05a);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
  z-index: -1;
}

.insight-btn:hover { color: #000; transform: translateY(-3px); }
.insight-btn:hover::before { transform: scaleX(1); }

@media(max-width:1024px){
  .insight-grid { grid-template-columns: 1fr; }
  .insight-title { font-size: 42px; }
  .insight-section {
    padding: 30px 30px;
}
}

/* ===== FOOTER ===== */
.footer-section {
  position: relative;
  padding: 120px 80px 40px 80px;
  background: linear-gradient(145deg, #04060f, #0a1020);
  color: #9aa0b5;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,167,42,0.07), transparent 70%);
  bottom: -250px;
  left: -250px;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin-bottom: 20px; color: #fff; }
.footer-brand p { line-height: 1.6; margin-bottom: 20px; }

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  width: 30px;
  height: 30px;
  background: #e9ae37;
  padding: 7px;
  border-radius: 50px;
  color: #fff;
}
.footer-social a:hover { background: #fff; color: #e9ae37; }

.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; margin-bottom: 20px; color: #fff; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a { color: #9aa0b5; text-decoration: none; transition: 0.3s ease; }
.footer-col ul li a:hover { color: #E6A72A; }

.footer-newsletter { display: flex; margin-top: 10px; }

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 20px 0 0 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,15,30,0.9);
  color: #fff;
  outline: none;
}

.footer-newsletter button {
  padding: 10px 18px;
  border-radius: 0 20px 20px 0;
  border: none;
  background: linear-gradient(90deg, #E6A72A, #f0c05a);
  color: #000;
  font-weight: 500;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobile_filters {
  display: none;
}

.footer-legal-main { justify-content: space-between; flex-wrap: wrap; color: #9aa0b5; text-align: center; }
.footer-legal-main span { color: #E6A72A; }
.footer-disclaimer { color: #7f8599; line-height: 1.6; text-align: center; }

@media(max-width:1024px){
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .footer-section { padding: 100px 30px 40px 30px; }
}

/* ===== FIXED CONTACT BUTTONS ===== */
.whatsapp-fixed {
  z-index: 100;
  position: fixed;
  right: 15px;
  bottom: 200px;
  padding: 8px 10px !important;
  border-radius: 6px;
  font-size: 41px;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
}

.call-fixed {
  z-index: 100;
  position: fixed;
  right: 15px;
  bottom: 150px;
  padding: 8px 10px !important;
  border-radius: 6px;
  font-size: 41px;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
}

.email-fixed {
  z-index: 100;
  position: fixed;
  right: 15px;
  bottom: 100px;
  padding: 8px 10px !important;
  border-radius: 6px;
  font-size: 41px;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
}
/* ===== OWL CAROUSEL DOTS OVERRIDE ===== */
.testimonial-card .owl-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: flex-start;
}

.testimonial-card .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.3) !important;
  margin: 0 !important;
  transition: background 0.3s ease;
}

.testimonial-card .owl-dot.active span {
  background: #E6A72A !important;
}



/* ===============================================
   BLOG DETAIL PAGE — blog-detail.css
   Matches K Foresight brand (dark luxury, gold)
   Link AFTER style.css in <head>
   =============================================== */

/* ===== HERO BANNER ===== */
.bd-hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px; /* header offset */
}

.bd-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.bd-hero:hover .bd-hero-img {
  transform: scale(1);
}

.bd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.bd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 80px 60px 80px;
}

.bd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E6A72A;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.bd-back-link:hover {
  gap: 14px;
  opacity: 0.8;
}

.bd-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.bd-tag {
  font-size: 12px;
  color: #E6A72A;
  border: 1px solid rgba(230, 167, 42, 0.5);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.bd-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}

.bd-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9aa0b5;
}

.bd-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.bd-meta i {
  color: #E6A72A;
}

/* ===== ARTICLE BODY LAYOUT ===== */
.bd-body-section {
  background: linear-gradient(to bottom, #050814, #0a1020);
  padding: 80px 80px 120px 80px;
}

.bd-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 70px;
  align-items: start;
}

/* ===== ARTICLE ===== */
.bd-article {
  color: #c5c8d4;
  line-height: 1.8;
}

.bd-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.6;
  color: #e8eaf0;
  margin-bottom: 40px;
  font-style: italic;
}

.bd-gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #b7862d, #E6A72A);
  margin-bottom: 40px;
}

.bd-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin: 50px 0 20px 0;
  position: relative;
  padding-left: 20px;
}

.bd-article h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, #E6A72A, transparent);
  border-radius: 2px;
}

.bd-article p {
  font-size: 16px;
  color: #b0b5c8;
  margin-bottom: 22px;
  line-height: 1.85;
}

.bd-article em {
  color: #E6A72A;
  font-style: normal;
}

/* ===== BLOCKQUOTE ===== */
.bd-quote {
  position: relative;
  margin: 40px 0;
  padding: 30px 36px;
  background: rgba(230, 167, 42, 0.05);
  border-left: 3px solid #E6A72A;
  border-radius: 0 16px 16px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: #e0d5b8;
  line-height: 1.65;
}

.bd-quote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: rgba(230, 167, 42, 0.2);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

/* ===== SIGNAL LIST ===== */
.bd-signal-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 30px 0 40px 0;
}

.bd-signal {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(15, 20, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  transition: 0.3s ease;
}

.bd-signal:hover {
  border-color: rgba(230, 167, 42, 0.25);
  background: rgba(15, 20, 40, 0.9);
  transform: translateX(6px);
}

.bd-signal-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: rgba(230, 167, 42, 0.4);
  line-height: 1;
  min-width: 48px;
  font-weight: 600;
}

.bd-signal h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.bd-signal p {
  font-size: 14px;
  color: #9aa0b5;
  margin: 0;
  line-height: 1.7;
}

/* ===== CTA BOX ===== */
.bd-cta-box {
  margin-top: 60px;
  padding: 50px;
  background: rgba(15, 20, 40, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(230, 167, 42, 0.25);
  box-shadow: 0 0 60px rgba(230, 167, 42, 0.07);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bd-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 167, 42, 0.7), transparent);
}

.bd-cta-line {
  width: 40px;
  height: 2px;
  background: #E6A72A;
  margin: 0 auto 24px auto;
}

.bd-cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.bd-cta-box p {
  color: #9aa0b5;
  margin-bottom: 30px;
}

.bd-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.bd-btn-solid {
  padding: 12px 28px;
  border-radius: 40px;
  background: linear-gradient(90deg, #E6A72A, #f0c05a);
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 14px;
}

.bd-btn-solid:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.bd-btn-outline {
  padding: 12px 28px;
  border-radius: 40px;
  border: 1px solid #E6A72A;
  color: #E6A72A;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 14px;
}

.bd-btn-outline:hover {
  background: #E6A72A;
  color: #000;
}

/* ===== SIDEBAR ===== */
.bd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}

.bd-sidebar-card {
  background: rgba(15, 20, 40, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  position: relative;
}

.bd-sidebar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 167, 42, 0.5), transparent);
}

/* Author card */
.bd-author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, #E6A72A, #b7862d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin-bottom: 16px;
}

.bd-sidebar-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.bd-sidebar-card p {
  font-size: 13px;
  color: #9aa0b5;
  line-height: 1.65;
  margin-bottom: 20px;
}

.bd-sidebar-btn {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border-radius: 40px;
  border: 1px solid #E6A72A;
  color: #E6A72A;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s ease;
}

.bd-sidebar-btn:hover {
  background: #E6A72A;
  color: #000;
}

/* Sidebar title */
.bd-sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 18px;
}

/* Share links */
.bd-share-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bd-share-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #9aa0b5;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

.bd-share-links a:hover {
  border-color: rgba(230, 167, 42, 0.4);
  color: #E6A72A;
  background: rgba(230, 167, 42, 0.05);
}

.bd-share-links a i {
  color: #E6A72A;
  font-size: 15px;
}

/* Related items */
.bd-related-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bd-related-item {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.bd-related-item:hover {
  transform: translateX(4px);
}

.bd-related-item img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.bd-related-tag {
  display: block;
  font-size: 11px;
  color: #E6A72A;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bd-related-item p {
  font-size: 13px;
  color: #c5c8d4;
  line-height: 1.45;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bd-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bd-sidebar {
    position: static;
  }

  .bd-hero-content {
    padding: 0 30px 50px 30px;
  }

  .bd-hero-content h1 {
    font-size: 36px;
  }

  .bd-body-section {
    padding: 60px 30px 100px 30px;
  }
}

@media (max-width: 768px) {
  .bd-hero {
    height: 65vh;
    min-height: 420px;
  }

  .bd-hero-content h1 {
    font-size: 28px;
  }

  .bd-meta {
    gap: 14px;
  }

  .bd-lead {
    font-size: 18px;
  }

  .bd-article h2 {
    font-size: 26px;
  }

  .bd-cta-box {
    padding: 30px 20px;
  }

  .bd-signal {
    flex-direction: column;
    gap: 12px;
  }

  .bd-cta-btns {
    flex-direction: column;
  }

  .bd-btn-solid,
  .bd-btn-outline {
    text-align: center;
  }
}

/* ===== COMMENTS SECTION ===== */
.bd-comments-section {
  background: linear-gradient(to bottom, #0a1020, #050814);
  padding: 80px 80px 120px 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.bd-comments-container {
  max-width: 860px;
  margin: 0 auto;
}

.bd-comments-header {
  margin-bottom: 50px;
}

.bd-comments-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.bd-comments-header p {
  color: #7f8599;
  font-size: 15px;
}

/* ===== COMMENT FORM ===== */
.bd-comment-form-wrap {
  background: rgba(15,20,40,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 40px;
  margin-bottom: 60px;
  position: relative;
}

.bd-comment-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230,167,42,0.6), transparent);
}

.bd-comment-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 28px;
  font-weight: 400;
}

.bd-comment-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bd-comment-row {
  display: flex;
  gap: 18px;
}

.bd-comment-field {
  position: relative;
  width: 100%;
}

.bd-comment-field input,
.bd-comment-field textarea {
  width: 100%;
  padding: 18px 18px 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,15,30,0.9);
  color: #fff;
  outline: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: 0.3s ease;
}

.bd-comment-field textarea {
  border-radius: 20px;
  min-height: 120px;
  resize: none;
}

.bd-comment-field input:focus,
.bd-comment-field textarea:focus {
  border-color: #E6A72A;
  box-shadow: 0 0 15px rgba(230,167,42,0.2);
}

.bd-comment-field label {
  position: absolute;
  left: 18px;
  top: 16px;
  font-size: 13px;
  color: #7f8599;
  transition: 0.3s ease;
  pointer-events: none;
}

.bd-comment-field input:focus + label,
.bd-comment-field input:not(:placeholder-shown) + label,
.bd-comment-field textarea:focus + label,
.bd-comment-field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 11px;
  color: #E6A72A;
}

.bd-comment-submit {
  align-self: flex-start;
  padding: 13px 30px;
  border-radius: 40px;
  background: linear-gradient(90deg, #E6A72A, #f0c05a);
  border: none;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.bd-comment-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ===== COMMENTS LIST ===== */
.bd-comments-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bd-comment {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Pre-existing comments show immediately */
.bd-comment:not(.bd-comment-new) {
  opacity: 1;
  transform: translateY(0);
}

.bd-comment-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.bd-comment-reply {
  margin-left: 60px;
  position: relative;
}

.bd-comment-reply::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(230,167,42,0.2);
  border-radius: 2px;
}

.bd-comment-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #E6A72A, #b7862d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.bd-avatar-sm {
  width: 34px;
  height: 34px;
  min-width: 34px;
  font-size: 16px;
}

.bd-comment-body {
  flex: 1;
  background: rgba(15,20,40,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 22px 24px;
}

.bd-comment-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.bd-comment-name {
  font-weight: 500;
  color: #fff;
  font-size: 14px;
}

.bd-comment-date {
  font-size: 12px;
  color: #5a6070;
}

.bd-comment-body p {
  font-size: 14px;
  color: #b0b5c8;
  line-height: 1.7;
  margin-bottom: 14px;
}

.bd-reply-btn {
  background: none;
  border: none;
  color: #E6A72A;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.bd-reply-btn:hover {
  opacity: 0.7;
}

/* ===== REPLY FORM ===== */
.bd-reply-form {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bd-reply-actions {
  display: flex;
  gap: 10px;
}

.bd-reply-actions .bd-btn-solid,
.bd-reply-actions .bd-btn-outline {
  padding: 9px 20px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

/* ===== COPY LINK COPIED STATE ===== */
.bd-copied {
  border-color: rgba(230,167,42,0.6) !important;
  background: rgba(230,167,42,0.08) !important;
  color: #E6A72A !important;
}

/* ===== TOAST ===== */
.bd-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15,20,40,0.95);
  border: 1px solid rgba(230,167,42,0.4);
  color: #E6A72A;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.bd-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.bd-article img {
  width: 100%;
  height: 250px;
  border-radius: 30px;
  object-fit: cover;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bd-comments-section {
    padding: 60px 20px 100px 20px;
  }

  .bd-comment-form-wrap {
    padding: 24px 20px;
  }

  .bd-comment-row {
    flex-direction: column;
  }

  .bd-comment-reply {
    margin-left: 30px;
  }

  .bd-comment-submit {
    width: 100%;
    justify-content: center;
  }
  .snapshot-section {
    padding: 160px 20px;
}
.snapshot-form-card {
    padding: 20px;
}
.hero h1 {
    font-size: 32px;
}
.receive-left h2 {
    font-size: 28px;
}
.luxury-heading br {
  display: none;
}
.receive-section,.method-section,.outcome-section,.package-section,.snapshot-section {
    padding: 40px 30px;
  }
  .calm-section {
    padding: 40px 30px;
}
.call-fixed,.email-fixed,.whatsapp-fixed {
    z-index: 99;
}
}