.shop-hero-section {
  background: linear-gradient(270deg, var(--primary-gold) 0%, black 100%);
  min-height: 678px;
  position: relative;
  overflow: hidden;
}

.hero-description {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.27;
  color: white;
  margin-bottom: 2.875rem;
}

.cta-button {
  background: var(--secondary-gold);
  color: white;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.27;
  padding: 0.625rem 1.125rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 2.875rem;
}

.cta-button:hover {
  background: #a67a11;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 143, 20, 0.3);
  color: white;
}

.hero-image:hover {
  transform: translateY(-5px);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(197, 143, 20, 0.2);
}

.price-button {
  background: linear-gradient(
    90deg,
    var(--primary-gold) 0%,
    var(--gradient-end) 100%
  );
  color: white;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.12;
  padding: 1.125rem 1.625rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.price-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(195, 141, 23, 0.4);
  color: white;
}

.price-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(195, 141, 23, 0.3);
}

.price-icon {
  width: 26px;
  height: 26px;
  background: var(--light-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 14px;
}

.strikethrough {
  text-decoration: line-through;
  opacity: 0.7;
}

.hero-image {
  width: 383px;
  height: 480px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.content-container {
  max-width: 650px;
}

@media (max-width: 1200px) {
  .shop-hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .cta-button {
    font-size: 1.25rem;
    padding: 0.75rem 1.25rem;
  }

  .price-button {
    font-size: 1.375rem;
    padding: 1rem 1.5rem;
  }

  .content-container {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .cta-button {
    font-size: 1.125rem;
    padding: 0.625rem 1.125rem;
  }

  .price-button {
    font-size: 1.25rem;
    padding: 0.875rem 1.25rem;
  }
}

/* What you learn section styles ======================================================================== */

.what-you-learn {
  background: linear-gradient(90deg, black 0%, #c38d17 100%);
  color: white;
}

.border-b {
  border-bottom: 3px solid #fff;
}
.phase-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 45px;
  line-height: 50px;
}
.phase-subtitle {
  font-size: 30px;
  line-height: 40px;
  font-family: "Nunito", sans-serif;
}
.action-title {
  font-size: 25px;
  line-height: 40px;
  font-weight: 700;
}
.action-step {
  font-size: 18px;
  line-height: 25px;
}
.bullet {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
}
.outline-img {
  border-radius: 12px;
  outline: 15px solid black;
  max-width: 247px;
}

/* Book- turn the page styles ======================================================================== */

.book-card {
  background: #fff8e6;
  border-radius: 16px;
  border: 1px solid #a4a7ae;
  position: relative;
  overflow: hidden;
}

.book-image {
  width: 212px;
  height: 266px;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
}

.card-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: black;
  margin-top: 1rem;
}

.buy-btn {
  background: #d91e18;
  color: white;
  font-size: 22px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  line-height: 32px;
  border-radius: 8px;
  padding: 8px 17px;
  display: inline-block;
  text-align: center;
  margin-top: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.buy-btn:hover {
  background: #b01614;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 30, 24, 0.3);
  color: white;
}

.book-card-top {
  padding: 30px 20px;
  border-bottom: 1px solid #a4a7ae;
}

.boot-card-bottom {
  padding: 10px 20px 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
}

/* FAQ section styles ======================================================================== */

.faq-container {
  background: var(--primary-gradient);
  min-height: 100vh;
  padding: 40px 20px;
}

.hero-title {
  font-family: "Bebas Neue", cursive;
  font-size: 4.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.accordion-container {
  max-width: 1200px;
  margin: 0 auto;
}

.accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.accordion-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.15);
}

.accordion-header.active {
  background: rgba(195, 141, 23, 0.2);
  border-color: var(--gold-color);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-question {
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  flex: 1;
}

.accordion-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.accordion-icon i {
  font-size: 1.2rem;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--gold-color);
}

.accordion-header.active .accordion-icon i {
  color: white;
}

.accordion-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.accordion-content.active {
  max-height: 500px;
  padding: 30px;
}

.accordion-answer {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease 0.1s;
}

.accordion-content.active .accordion-answer {
  opacity: 1;
  transform: translateY(0);
}

.cta-section {
  text-align: center;
  margin-top: 80px;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  font-family: "Nunito", sans-serif;
}

.section-subtitle,
.quote {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.section-subtitle {
  margin-bottom: 40px;
}

.cta-button {
  background: var(--button-gradient);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(195, 141, 23, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(195, 141, 23, 0.4);
  color: white;
}

.price-original {
  text-decoration: line-through;
  opacity: 0.7;
}

.price-sale {
  color: var(--gold-color);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .accordion-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .accordion-question {
    font-size: 1.2rem;
  }

  .accordion-icon {
    width: 40px;
    height: 40px;
    align-self: flex-end;
    margin-left: 0;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-content.active {
    padding: 20px;
  }

  .cta-section {
    margin-top: 50px;
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 1.2rem;
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .accordion-question {
    font-size: 1.1rem;
  }

  .accordion-header {
    padding: 15px;
  }

  .accordion-content.active {
    padding: 15px;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 12px 20px;
  }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-animation {
  animation-delay: calc(var(--animation-order) * 0.1s);
}

/* Price section styles ========================================================== */
.price-section {
  background-color: #000;
}

.offer-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 40px 30px;
  max-width: 445px;
  margin: auto;
}

.offer-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 45px;
  line-height: 50px;
  color: #1c1c1c;
  text-align: center;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1c1c1c;
  font-size: 18px;
  line-height: 24px;
}

.checkmark {
  width: 26px;
  height: 26px;
  position: relative;
  flex-shrink: 0;
}

.checkmark::before,
.checkmark::after {
  content: "";
  position: absolute;
  background-color: transparent;
  border: 2.5px solid #00e61b;
  border-radius: 50%;
}

.checkmark::before {
  width: 21.67px;
  height: 21.67px;
  top: 2.17px;
  left: 2.17px;
}

.checkmark::after {
  width: 9.21px;
  height: 6.13px;
  top: 9.93px;
  left: 8.4px;
  border-width: 0 0 2.5px 2.5px;
  transform: rotate(-45deg);
}

.quote-info {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}

.border-b {
  border-bottom: 2.5px solid;
  padding-bottom: 25px;
}

.guarantee-image {
  max-width: 494px;
  max-height: 100%;
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  margin: 0 auto;
  display: block;
}

/* Online Business Page styles =============================================================== */

.hero-bg-section {
  background: var(--primary-gradient);
  background-image: url("../images/hero-background.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  min-height: 100vh;
  position: relative;
}

.hero-bg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, #373737 0%, #515050 100%);
  opacity: 0.9;
  z-index: 1;
}

.hero-bg-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.mentorship-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.feature-list {
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-bullet {
  width: 8px;
  height: 8px;
  background: var(--text-primary);
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
  color: var(--text-secondary);
}

.hero-bg-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-bg-cta-section {
  padding: 2rem 0;
}

.hero-bg-cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-bg-cta-highlight {
  color: var(--accent-color);
  font-weight: 500;
}

.hero-bg-cta-final {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-bg-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-bg-subtitle,
  .hero-bg-description,
  .mentorship-intro,
  .feature-text,
  .hero-bg-cta-text,
  .hero-bg-cta-final {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-bg-content {
    padding: 40px 0;
  }

  .feature-item {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-bg-cta-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }
}

@media (max-width: 576px) {
  .hero-bg-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-bg-subtitle,
  .hero-bg-description,
  .mentorship-intro,
  .feature-text,
  .hero-bg-cta-text,
  .hero-bg-cta-final {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-bg-content {
    padding: 30px 0;
  }

  .feature-bullet {
    width: 6px;
    height: 6px;
    margin-right: 0.8rem;
    margin-top: 0.5rem;
  }

  .hero-bg-cta-section {
    margin-top: 1.5rem;
    padding: 1rem 0;
  }
}

/* Animation Effects */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
}

.fade-in-delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects */
.feature-item:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-bullet {
  background: var(--accent-color);
  transition: background 0.3s ease;
}

/* Big text section styles =========================================================================  */

.big-text-content {
  color: #fff;
  text-align: center;
  font-family: "Kalnia", sans-serif;
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: 80px; /* 106.667% */
}
.big-text-content:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
}

.big-text-content span {
  color: #fff;
  font-family: "Kapakana", sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 60% */
  display: block;
}

.big-text-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.big-text-content span {
  animation: fadeInDown 1s ease-out 0.3s forwards;
}

.big-text-image {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

.how-to-row:nth-of-type(even) .image-col {
  order: 2;
  text-align: right;
}

.how-to-row:nth-of-type(even) .content-col {
  order: 1;
}

.howto-card-text,
.paragraph-color {
  color: #535862;
}

/* Contact Page styles ========================================================================  */

.contact-page-section {
  background-color: var(--bg-primary);
  border-radius: 16px;
  padding: 60px;
  margin: 100px auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.contact-page-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.section-header {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.form-container {
  position: relative;
  z-index: 2;
}

.form-label {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.form-control {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
  height: 60px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--focus-color);
  box-shadow: var(--focus-shadow);
  color: var(--text-primary);
}

.form-control::placeholder {
  color: var(--text-third);
  opacity: 1;
}

.form-control:focus::placeholder {
  opacity: 0.7;
}

.form-textarea {
  height: 250px;
  resize: vertical;
  min-height: 150px;
}

.contact-page-section .form-group {
  margin-bottom: 2rem;
}

.submit-btn {
  background-color: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 6px;
  padding: 0.75rem 2.875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* Enhanced Form Animations */
.form-group {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.form-group:nth-child(4) {
  animation-delay: 0.4s;
}
.form-group:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Label Effect */
.form-floating {
  position: relative;
}

.form-floating .form-control {
  padding-top: 1.5rem;
}

.form-floating label {
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-size: 1rem;
  color: var(--text-third);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-page-section {
    padding: 40px 0;
    margin: 15px;
    border-radius: 12px;
  }

  .form-control {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    height: 50px;
  }

  .form-textarea {
    height: 200px;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .submit-btn {
    padding: 0.625rem 2rem;
    font-size: 0.875rem;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-page-section {
    padding: 30px 0;
    margin: 10px;
    border-radius: 8px;
  }

  .form-control {
    font-size: 0.9rem;
    padding: 0.75rem 0.875rem;
    height: 45px;
  }

  .form-textarea {
    height: 150px;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }
}

/* Form Validation Styles */
.form-control:valid {
  border-color: #28a745;
}

.form-control:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #dc3545;
}

/* Loading State */
.submit-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid var(--button-text);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Accessibility */
.form-control:focus {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-group {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Readme link ======================================================================

*/

.readme-link {
  color: black !important;
  border: black solid 1px !important;
}

.gray-color {
  color: #535862 !important;
}

/* Subscription Messages ====================================================================== */

.newsletter-message {
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 16px;
}

.newsletter-message.success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.newsletter-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.newsletter-message.warning {
  background-color: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
}




/* Whatsapp Section  =================================================================================== */

.whatsapp-section h2 {
  padding: 40px 0;
  background: #c48e24;
  color: white;
  font-size: 60px;
}

.whatsapp-section p {
  color: #535862;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

.whatsapp-section p span {
  color: #d91e18;
}

.whatsapp-section img {
  max-width: 400px;
}

