:root {
  --navy: #1a2332;
  --gold: #c9a961;
  --light-gold: #d4af37;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-grey: #f5f5f5;
  --text-grey: #4a5568;
  --border-grey: #e2e8f0;
}
.demo-style-switch {
  opacity: 1;
  position: fixed;
  z-index: 999;
  top: 150px;
  left: -222px;
  background: #f5ebe6;
}

.demo-style-switch:hover {
  opacity: 1 !important;
}

.demo-style-switch .switched-options {
  position: relative;
  width: 220px;
  text-align: left;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

.demo-style-switch .config-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  color: #000;
  border-bottom: 1px dotted #ccc;
  border-top: 1px dotted #ccc;
  margin-bottom: 5px;
}

.demo-style-switch ul {
  margin-bottom: 10px;
  padding-left: 0px;
}

.demo-style-switch ul .active a {
  color: #005885;
  font-weight: 400;
}

.demo-style-switch ul .p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}

.demo-style-switch ul li:hover {
  cursor: pointer;
}
.logo {
  color: var(--navy) !important;
  font-size: 1.5rem !important;
  text-decoration: none !important;
  letter-spacing: 0.1em !important;
  font-weight: 600 !important;
}
.logo span {
  color: #c9a961 !important;
}
.tagline {
  color: #c9a961 !important;
  font-size: 0.9rem !important;
  font-style: italic !important;
  letter-spacing: 0.05em !important;
  font-weight: 400 !important;
}
.subtitle {
  color: #c9a961;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  margin-top: -1rem;
  font-style: italic;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 1.1rem;
  border: 2px solid;
  cursor: pointer;
  background: none;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #c9a961);
  color: #1a2332;
  border-color: #c9a961;
  box-shadow: 0 6px 15px rgba(201, 169, 97, 0.4);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.btn-primary:hover {
  background: linear-gradient(135deg, #c9a961, #d4af37);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 25px rgba(201, 169, 97, 0.6);
}

/* Shine Effect */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 125%;
}

.btn-secondary {
  color: #1a2332;
  border: 2px solid #1a2332;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover Effect */
.btn-secondary:hover {
  background: #1a2332;
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 22px rgba(26, 35, 50, 0.35);
}

/* Border Glow */
.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-secondary:hover::after {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Click Effect */
.btn-secondary:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* CTA Content */

.cta-content {
  max-width: 900px;
  margin: auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.cta-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 2rem;
}

.cta-subtext {
  font-size: 1.1rem;
  color: var(--text-grey);
  margin-bottom: 2rem;
}

/* Quote Box */

.cta-quote {
  background: #192742;
  /* background: linear-gradient(135deg, #1a2332, #111827); */
  color: #fff;
  padding: 2rem;
  border-left: 5px solid var(--gold);
  border-radius: 6px;
  margin: 2rem auto;
  max-width: 900px;
  font-style: italic;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-quote span {
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-grey);
  max-width: 900px;
  margin: auto;
}
.ection-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    var(--gold) 50%,
    var(--navy) 100%
  );
  margin: 2rem auto 2rem;
}
/* email section */
.email-capture {
  padding: 6rem 2rem;
  background: var(--navy);
  color: var(--white);
  position: relative;
}

.email-capture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #0f1419 100%);
  z-index: 0;
}

.email-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.email-content h2 {
  color: var(--white);
}
.book-h2 {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.email-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}
.benefits-h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.email-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.email-form input {
  flex: 1;
  min-width: 300px;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Garamond", serif;
  transition: all 0.3s;
}

.email-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.free-resources {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.free-resources h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.resource-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-top: 1rem;
}

.resource-list li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
}

.resource-list li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 0.75rem;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Book Format Section */

/* .book-formats {
  width: 620px;
  margin: auto;
} */
.book-formats {
  max-width: 620px; /* max limit */
  width: 100%; /* responsive */
  margin: auto;
  padding: 0 1rem; /* mobile spacing */
  box-sizing: border-box;
}

.format-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
}

.format-desc {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Cards */

.buy-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.buy-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.buy-option-info h4 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.buy-option-info p {
  color: var(--grey);
  font-size: 0.95rem;
  margin: 0;
}

/* Button */

.format-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.format-btn:hover {
  background: var(--light-gold);
  color: #000;
}
/* Author Section */
.author {
  padding: 6rem 2rem;
  background: var(--white);
}

.author-content {
  max-width: 900px;
  margin: 0 auto;
}

.author-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.author-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #2a3545 100%);
  border: 4px solid var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.author-h2 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
}

.author-bio h3 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.author-bio p {
  color: var(--text-grey);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.section-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    var(--gold) 50%,
    var(--navy) 100%
  );
  margin: 0 auto 2rem;
}
.decorative-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1rem;
}
/* Bio Content */

.benefits {
  padding: 6rem 2rem;
  background: var(--white);
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.benefits-intro {
  color: var(--text-grey);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */

  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-grey);
  cursor: pointer;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.15);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--white);
}

.benefit-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.benefit-card p {
  color: var(--text-grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 1rem;
  background: none;
  border: 2px solid var(--gold);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}
/* Modal Outer Box */

.benefit-modal-content {
  border-radius: 10px;
  border: 3px solid #e7c17b; /* pink/gold border */
  overflow: hidden;
}
.chapter-bg-one {
  background: var(--off-white);
}
/* Remove horizontal scroll */

#benefitModal .modal-dialog {
  max-width: 1100px;
}

#benefitModal .modal-body,
#benefitModal .modal-content {
  overflow-x: hidden;
}
/* blog-footer */
.blog-footer-quotes {
  color: #ffffff !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
}
.blog-footer-logo {
  color: var(--gold) !important;
}
.blog-footer-logo:hover {
  color: var(--white) !important;
}
.blog-footer-quick-links {
  color: var(--gold) !important;
}
.footer__topv2__link .link li a {
  color: #ffffff !important;
}

/* Wrapper */

.benefit-wrapper {
  padding: 3rem 4rem;
}

/* Close Button Right */

.benefit-close {
  position: absolute;
  top: 20px;
  right: 25px;
  z-index: 10;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category */

.benefit-category {
  color: var(--gold);
  font-weight: 600;
}

/* Title */

.benefit-details h3 {
  text-align: center;
  font-size: 2.2rem;
  margin: 2rem 0;
  color: var(--navy);
}

/* Text */

.benefit-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.3rem;
  text-align: left;
}
.benefit-text .first-line {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  display: block;
}
.email-content-h2 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
/* Vertical Scroll Only */

#benefitModal .modal-dialog-scrollable .modal-content {
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.footer-logo {
  color: var(--gold) !important;
}

/* Mobile */

@media (max-width: 768px) {
  .benefit-wrapper {
    padding: 2rem 1.5rem;
  }

  .benefit-details h3 {
    font-size: 1.7rem;
  }
}

.demo-style-switch ul li a {
  font-size: 12px;
  color: #808080;
  letter-spacing: 0.1px;
}

.demo-style-switch ul li a:hover {
  color: #008ed6;
  text-decoration: none;
}

.demo-style-switch ul.styles {
  margin-top: 15px;
}

.demo-style-switch ul.styles li {
  display: inline-block;
  margin-right: 5px;
}

.demo-style-switch ul.styles li .gredient,
.demo-style-switch ul.styles li .svg,
.demo-style-switch ul.styles li .color {
  width: 52px;
  height: 40px;
}
/* COLOR */

.demo-style-switch ul.styles li .oldRose {
  background: #c27b7f;
}
.demo-style-switch ul.styles li .wildBlue {
  background: #7978bb;
}

.demo-style-switch ul.styles li .nomad {
  background: #7c7a69;
}

.demo-style-switch ul.styles li .viridian {
  background: #2c6a50;
}

.demo-style-switch ul.styles li .pink {
  background: #bb4e6c;
}

.demo-style-switch ul.styles li .coffee {
  background: #7f6555;
}

.demo-style-switch ul.styles li .royal {
  background: #906398;
}
.demo-style-switch ul.styles li .sky {
  background: #029bb4;
}

.demo-style-switch ul.styles li .olive {
  background: #ab9d01;
}
.demo-style-switch .switch-button {
  opacity: 1 !important;
  background: #fff;
  padding: 10px;
  font-size: 25px;
  color: #272727;
  position: absolute;
  overflow: hidden;
  right: -46px;
  top: -10;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #ccc;
  border-left: 0px;
}

.demo-style-switch .switch-button:hover {
  color: #008ed6;
  cursor: pointer;
  text-decoration: none;
}

.demo-style-switch .homepage-style li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  margin-top: 5px;
}

.demo-style-switch .homepage-style li a {
  padding: 5px;
  font-size: 12px;
  letter-spacing: inherit;
  border: 1px solid #ececec;
}

.demo-style-switch .homepage-style li a:hover {
  border: 1px solid #008ed6;
}

.demo-style-switch .homepage-style .active {
  border: none;
}

.demo-style-switch .homepage-style .active a {
  border: 1px solid #008ed6;
  background: #008ed6;
  color: #fff;
}

.demo-style-switch .font-selection li {
  color: #808080;
  font-size: 12px;
  letter-spacing: 0.1px;
}

.demo-style-switch .font-selection li div:hover {
  color: #008ed6;
}
#chose-typography {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .demo-style-switch .switch-button {
    padding: 5px;
    right: -34px;
    font-size: 20px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .demo-style-switch {
    top: 60px;
  }
  .buy-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .email-form {
    flex-direction: column;
  }

  .email-form input {
    min-width: 100%;
  }

  .format-btn {
    width: 100%;
    text-align: center;
  }
  .author-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-photo {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }

  .read-more-btn {
    width: 100%;
    justify-content: center;
  }
}
