/* ===================================================
   MAHARISHI JYOTISH PAGE — Premium Styles
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Variables --- */
:root {
  --jy-gold: #a67a35;
  --jy-gold-light: #c9a45c;
  --jy-gold-dark: #8c6225;
  --jy-cream: #faf6eb;
  --jy-warm-bg: #f5f0e6;
  --jy-text: #444;
  --jy-heading: #3a3a3a;
  --jy-white: #ffffff;
  --jy-border: rgba(166, 122, 53, 0.2);
  --jy-shadow: rgba(166, 122, 53, 0.1);
}



/* --- Hero Banner --- */
.jy-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -25px;
}

.jy-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.jy-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.jy-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.jy-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  max-width: 700px;
}

.jy-hero__title {
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 3px;
}

.jy-hero__subtitle {
  font-family: 'Lora', serif;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.8;
}

.jy-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--jy-gold);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 50px;
  border: 2px solid var(--jy-gold);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.jy-btn:hover {
  background: var(--jy-gold-dark);
  border-color: var(--jy-gold-dark);
  box-shadow: 0 8px 25px rgba(166, 122, 53, 0.4);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.jy-btn--outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.jy-btn--outline:hover {
  background: #fff;
  color: var(--jy-gold-dark);
}

/* --- Section Common --- */
.jy-section {
  padding: 90px 0;
  position: relative;
}

.jy-section--cream {
  background: var(--jy-cream);
}

.jy-section--warm {
  background: var(--jy-warm-bg);
}

.jy-section--white {
  background: var(--jy-white);
}

.jy-section--gray {
  background: #eeeeec;
}

.jy-section__label {
  font-family: 'Lora', serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--jy-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.jy-section__title {
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--jy-gold);
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.jy-section__desc {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 20px auto;
}



/* --- What Is Section --- */
.jy-what-is {
  background: var(--jy-white);
  position: relative;
  overflow: hidden;
}

.jy-what-is::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: url(../../assets/images/vecter_l.png) no-repeat center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.jy-what-is::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: url(../../assets/images/vecter_r.png) no-repeat center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}



.jy-what-is__content p {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* --- Benefits Section --- */
.jy-benefits {
  background: var(--jy-cream);
  position: relative;
  overflow: hidden;
}

.jy-benefits__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.jy-benefit-card {
  background: var(--jy-white);
  border: 1px solid var(--jy-border);
  border-radius: 8px;
  padding: 40px 30px 30px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.jy-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(166, 122, 53, 0.15);
  border-color: var(--jy-gold-light);
}

.jy-benefit-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--jy-gold);
}

.jy-benefit-card__title {
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--jy-gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.jy-benefit-card__text {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* --- Expert Section --- */
.jy-expert {
  background: var(--jy-white);
  position: relative;
  overflow: hidden;
}

.jy-expert::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: url(../../assets/images/vecter_l.png) no-repeat center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.jy-expert::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: url(../../assets/images/vecter_r.png) no-repeat center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.jy-expert__name {
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--jy-gold);
  font-weight: 700;
  margin-bottom: 5px;
}

.jy-expert__subtitle {
  font-family: 'Lora', serif;
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.jy-expert__bio {
  max-width: 850px;
  margin: 0 auto 0px auto;
}

.jy-expert__bio p {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Credentials Timeline */
.jy-credentials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
  position: relative;
  padding: 30px 0 0;
}

.jy-credentials::before {
  content: "";
  position: absolute;
  top: 31%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--jy-gold-light), var(--jy-gold), var(--jy-gold-light), transparent);
  z-index: 0;
}

.jy-credential {
  text-align: center;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.jy-credential__dot {
  width: 14px;
  height: 14px;
  background: var(--jy-gold);
  border: 3px solid var(--jy-cream);
  border-radius: 50%;
  margin: 0 auto 15px auto;
  box-shadow: 0 0 0 2px var(--jy-gold);
}

.jy-credential__text {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  font-family: 'Lora', serif;
}

/* --- Packages Table Section --- */
.jy-packages {
  background: #eeeeec;
  position: relative;
  overflow: hidden;
}

.jy-packages::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: url(../../assets/images/vecter_l.png) no-repeat center;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
}

.jy-packages::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: url(../../assets/images/vecter_r.png) no-repeat center;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
}

.jy-packages-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--jy-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.jy-packages-table thead th {
  background: var(--jy-gold);
  color: #fff;
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 20px;
  text-align: center;
  border: none;
  position: relative;
}

.jy-packages-table thead th:first-child {
  background: var(--jy-gold-dark);
  text-align: left;
}

.jy-packages-table thead th.highlight-col {
  background: var(--jy-gold-dark);
  position: relative;
}



.jy-packages-table tbody tr {
  transition: background 0.3s ease;
}

.jy-packages-table tbody tr:nth-child(even) {
  background: #faf8f3;
}

.jy-packages-table tbody tr:hover {
  background: #f5f0e6;
}

.jy-packages-table td {
  padding: 18px 20px;
  font-family: 'Lora', serif;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-bottom: 1px solid #f0ebe0;
  vertical-align: top;
  line-height: 1.6;
}

.jy-packages-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--jy-gold-dark);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-family: 'Lora', serif;
  width: 140px;
  background: #faf8f3;
}

.jy-packages-table td.highlight-col {
  background: rgba(166, 122, 53, 0.04);
  border-left: 2px solid var(--jy-gold-light);
  border-right: 2px solid var(--jy-gold-light);
}

.jy-packages-table .price-val {
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--jy-gold);
}

.jy-packages-table .price-val .currency {
  font-size: 13px;
  font-weight: 400;
  vertical-align: super;
  margin-right: 2px;
  font-family: 'Lora', serif;
}

.jy-packages-table ul.inclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.jy-packages-table ul.inclusion-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.jy-packages-table ul.inclusion-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--jy-gold);
  font-size: 10px;
  top: 2px;
}

/* Package Action Row */
.jy-packages-table .action-row td {
  padding: 20px;
  border-bottom: none;
}

.jy-packages-table .action-row .jy-btn {
  padding: 10px 25px;
  font-size: 11px;
}

/* --- How It Works Section --- */
.jy-how-it-works {
  background: var(--jy-white);
  position: relative;
  overflow: hidden;
}

.jy-how-it-works::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: url(../../assets/images/vecter_l.png) no-repeat center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.jy-how-it-works::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: url(../../assets/images/vecter_r.png) no-repeat center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.jy-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.jy-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  position: relative;
}

.jy-step__number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--jy-gold-light), var(--jy-gold));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: 0 6px 20px rgba(166, 122, 53, 0.3);
  position: relative;
  z-index: 2;
}

.jy-step__title {
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--jy-gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.jy-step__text {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  font-family: 'Lora', serif;
}

/* Connector line between steps */
.jy-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -25px;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--jy-gold-light), transparent);
}

/* --- CTA Banner --- */
.jy-cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg,
      rgba(140, 98, 37, 0.92) 0%,
      rgba(166, 122, 53, 0.88) 50%,
      rgba(140, 98, 37, 0.92) 100%);
  text-align: center;
  overflow: hidden;
}

.jy-cta-banner__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  background-image:
    url(../../assets/images/vecter_l.png),
    url(../../assets/images/vecter_r.png);
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: 200px auto;
  pointer-events: none;
}

.jy-cta-banner__content {
  position: relative;
  z-index: 2;
}

.jy-cta-banner__title {
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 44px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.jy-cta-banner__text {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto 35px auto;
  line-height: 1.7;
}

.jy-cta-banner .jy-btn {
  background: #fff;
  color: var(--jy-gold-dark);
  border-color: #fff;
  font-weight: 700;
}

.jy-cta-banner .jy-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* --- Scroll Animations --- */
.jy-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.jy-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.jy-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.jy-fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.jy-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.jy-fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .jy-hero__title {
    font-size: 48px;
  }

  .jy-hero__subtitle {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .jy-section__title {
    font-size: 36px;
  }

  .jy-benefit-card {
    max-width: 100%;
    min-width: 45%;
  }

  .jy-credentials::before {
    display: none;
  }

  .jy-credential {
    min-width: 140px;
  }

  .jy-packages-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .jy-step:not(:last-child)::after {
    display: none;
  }

  .jy-cta-banner__title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .jy-hero {
    min-height: 80vh;
  }

  .jy-hero__title {
    font-size: 36px;
    letter-spacing: 1px;
  }

  .jy-hero__subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .jy-section {
    padding: 60px 0;
  }

  .jy-section__title {
    font-size: 28px;
  }

  .jy-benefit-card {
    min-width: 100%;
    max-width: 100%;
  }

  .jy-benefits__grid {
    gap: 20px;
  }

  .jy-expert__name {
    font-size: 28px;
  }

  .jy-credential {
    min-width: 100%;
    max-width: 100%;
    padding: 15px 10px;
  }

  .jy-steps {
    gap: 30px;
  }

  .jy-step {
    min-width: 100%;
    max-width: 100%;
  }

  .jy-cta-banner {
    padding: 60px 0;
  }

  .jy-cta-banner__title {
    font-size: 26px;
  }

  .jy-packages-table thead th {
    font-size: 12px;
    padding: 12px 10px;
    letter-spacing: 1px;
  }

  .jy-packages-table td {
    padding: 12px 10px;
    font-size: 12px;
  }

  .jy-packages-table .price-val {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .jy-hero__title {
    font-size: 30px;
  }

  .jy-section__title {
    font-size: 24px;
  }

  .jy-expert__name {
    font-size: 24px;
  }

  .jy-cta-banner__title {
    font-size: 22px;
  }
}

/* --- Simple Benefits Grid --- */
.jy-simple-benefit {
  padding: 20px;
  transition: all 0.3s ease;
}

.jy-simple-benefit:hover .jy-simple-benefit__icon {
  background: var(--jy-gold);
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(166, 122, 53, 0.3);
}

.jy-simple-benefit__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: var(--jy-cream);
  border: 2px solid var(--jy-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--jy-gold);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.jy-simple-benefit__title {
  font-family: 'Callstories', 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--jy-gold-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}