/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

menu, ol, ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 700;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hide-on-mobile {
  display: block;
}

.hide-on-desktop {
  display: none;
}

/* Layout Components */
/* Header */
.site-header {
  background-color: var(--dark-blue);
  border-bottom: 1px solid #1e293b;
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 156px;
  height: 40px;
}

/* Hero Section */
.hero {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  background: var(--primary-gradient);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  color: var(--text-light);
  position: relative;
  z-index: 12;
}

.hero-image {
  position: absolute;
  z-index: 1;
  width: 50%;
  height: 100%;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 100%;
  height: 100%;
}

.hero-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 999;
  bottom: 0;
  right: 0;
  background: #C2BBEE;
  border-radius: 12px;
  max-width: 717px;
  padding:  var(--spacing-sm);
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 26px;
  color: #000000;
}

.badge {
  display: inline-block;
  border: 1px solid var(--text-light);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  font-size: var(--font-lg);
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-family: "DM Serif Display", serif;
  font-size: var(--font-4xl);
  line-height: 1.2;
  letter-spacing: 0.2px;
  font-weight: 400;
  margin-bottom: var(--spacing-lg);
}

.hero .cta-button {
  margin-top: 1rem;
}

.new-hero-description {
  font-size: var(--font-lg);
  margin-bottom: var(--spacing-lg);
}

.new-hero-description .highlight {
  font-weight: 700;
}

.new-hero-description .emphasis {
  font-weight: 700;
  text-decoration: underline;
}


.seminar-details-container {
  margin-left: 1rem;
}
.seminar-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2px;
}

.seminar-info-item span {
  font-family: 'Poppins';
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #FFFFFF;
}

.seminar-info-item .label-text {
  font-weight: 700;
}

.seminar-info-item .value-text {
  font-weight: 400;
}

/* Countdown Component */
.countdown {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  font-family: 'Poppins', sans-serif;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-size: 60px;
  font-weight: 400;
  color: var(--text-light);
}

.countdown-label {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-light);
  margin-top: -10px;
}

.countdown-separator {
  font-size: 60px;
  font-weight: 400;
  color: var(--text-light);
  margin: 0 10px;
  align-self: flex-start;
  padding-top: 0;
}

.seminar-date {
  margin-bottom: var(--spacing-lg);
}

/* Button Styles */
.hide-on-mobile .cta-button {
  width: 28rem;
  text-align: center;
}

.cta-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--text-light);
  color: var(--primary-color);
  border-radius: var(--radius-full);
  padding: 1rem 2rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  width: fit-content;
  position: relative;
  border: none;
  z-index: 1;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--primary-gradient);
  border-radius: calc(var(--radius-full) + 2px);
  z-index: -1;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--text-light);
  border-radius: var(--radius-full);
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button .primary-text {
  font-weight: 600;
  font-size: var(--font-lg);
}

.cta-button .secondary-text {
  font-weight: 300;
  font-size: var(--font-sm);
}

.bonus .cta-button,
.final-cta .cta-button {
  background: var(--primary-gradient);
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  border: none;
}

.bonus .cta-button::after,
.final-cta .cta-button::after {
  display: none !important;
}

/* Wide button style */
.cta-button.wide {
  width: 460px;
  margin: 2rem auto;
  display: block;
  background: var(--primary-gradient);
  color: var(--text-light);
}

.cta-button.wide span {
  display: block;
  text-align: center;
}

.cta-button.wide::after {
  display: none;
}

/* Features Section */
.features {
  background-color: var(--background-light);
  padding: 4rem 0;
}

.features .container {
  width: 80%; 
  max-width: 1200px; 
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: var(--font-3xl);
  margin-bottom: var(--spacing-xl);
  font-weight: 500;
}

.section-title .primary {
  color: var(--primary-color);
  display: block;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  padding: 1rem 2rem;
  cursor: pointer;
}

.feature-item p {
  font-weight: 600;
}

.feature-item.active {
  background: var(--primary-gradient);
  color: var(--text-light);
}

.feature-button {
  background-color: var(--feature-color);
  color: var(--text-light);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 10px;
}

.feature-button img {
  width: 20px !important;
  height: 20px !important;
}

/* Promo Message */
.bu-seminer-t-rk-enin {
  color: var(--primary-color);
  text-align: center;
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 25.6px;
  line-height: 35.84px;
  font-weight: 600;
  padding-top: 5rem;
  width: 100%;
  margin: 0 auto;
}

.bu-seminer-t-rk-enin-2 {
  color: var(--primary-color);
  text-align: center;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 500;
  padding: 2rem 0;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Ne Yasadigini Section */
.section-wrapper {
  padding: 4rem 0;
  background-color: #ffffff;
}

.ne-yasadigini {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title.dual-color {
  font-size: 42px;
  line-height: 50px;
  font-weight: 500;
}

.section-title.dual-color .dark {
  color: #333333;
}

.section-title.dual-color .primary {
  color: var(--primary-color);
}

.content-wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.image-side {
  flex: 0 0 300px;
}

.image-side img {
  width: 100%;
  height: auto;
}

.text-side {
  flex: 1;
}

.description {
  color: #444444;
  font-size: 17.6px;
  line-height: 28.16px;
  margin-bottom: 2rem;
}

.subtitle {
  color: var(--primary-color);
  font-size: 20.8px;
  line-height: 31.2px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.5rem;
  color: #333333;
  font-size: 16px;
  line-height: 24px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Journey Section */
.journey-section {
  padding: 3rem 5rem;
  background-color: #ffffff;
}

.journey-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
}

.emoji {
  font-size: 40px;
  margin-bottom: 1rem;
}

.journey-title {
  color: var(--primary-color);
  font-size: 19.2px;
  line-height: 28.8px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.journey-description {
  color: #555555;
  font-size: 16px;
  line-height: 25.6px;
}


/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background-color: var(--background-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.benefit-title {
  text-align: center;
  font-size: var(--font-lg);
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.benefit-description {
  text-align: center;
  color: var(--text-medium);
}

/* Paraf Section */
.paraf-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  padding: 2rem 0;
  background-color: #ffffff;
  text-align: center;
}

.paraf-section img {
  width: 260px;
  height: auto;
  border-radius: 12px;
}

.paraf-section p {
  font-size: 32px;
  color: var(--text-medium);
  letter-spacing: 0.17px;
}

/* Reviews Section */
.reviews {
  padding: 2rem 0;
  background-color: var(--background-light);
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.review-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.review-text {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--text-medium);
}

.review-author {
  font-weight: 700;
  color: #90caf9;
  margin-bottom: 0.5rem;
}

.rating {
  color: #ffc107;
}

/* Reviews Carousel */
.reviews-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}

.reviews-track {
  position: relative;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-slide {
  position: absolute;
  width: 100%;
  min-width: 300px;
  max-width: 400px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.review-slide:nth-child(1),
.review-slide:nth-child(3) {
  transform: translateX(-260px) scale(0.85);
  opacity: 0.6;
  z-index: 1;
}

.review-slide:nth-child(2) {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 3;
}

.review-slide:nth-child(3) {
  transform: translateX(260px) scale(0.85);
}

.review-slide.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 3;
}

.review-slide.prev {
  transform: translateX(-260px) scale(0.85);
  opacity: 0.6;
  z-index: 1;
}

.review-slide.next {
  transform: translateX(260px) scale(0.85);
  opacity: 0.6;
  z-index: 1;
}

.review-slide:nth-child(2):not(.active) {
  opacity: 1;
  z-index: 2;
}

.review-slide .review-card {
  height: auto;
  min-height: 380px;
}

/* Warning Section */
.warning-section {
  background-color: #ffffff;
  padding: 2rem 0;
}

.warning-header {
  background: var(--primary-color);
  border-radius: 15px 15px 0 0;
  padding: 2rem;
  text-align: left;
}

.warning-header h2 {
  color: #ffffff;
  font-size: 38px;
  line-height: 45px;
  letter-spacing: 0.2px;
  font-weight: 400;
}

.warning-content {
  padding: 2rem;
  box-shadow: 0px 0px 47px 4px rgba(0, 0, 0, 0.28);
}

.warning-list {
  margin-bottom: 2rem;
}

.warning-list li {
  color: #3a3a3a;
  font-size: 19px;
  line-height: 26.6px;
  margin-bottom: 1.5rem;
}

.warning-footer {
  color: #3a3a3a;
  font-weight: 700;
  font-size: 19px;
  line-height: 26.6px;
}

/* Final CTA Button */
.final-cta-button {
  padding: 3rem 0;
  background-color: #ffffff;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--dark-blue);
  padding: 4rem 0 2rem;
  color: var(--text-gray);
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.footer-logo img {
  width: 196px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-email {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.copyright {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.social-link {
  background: #1e395e;
  border-radius: 50%;
  border: 1px solid #1e293b;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Disclaimer Badge */
.disclaimer-badge-container {
  margin-top: var(--spacing-md);
}

.disclaimer-badge {
  display: flex;
  align-items: center;
  background: rgba(3, 133, 181, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid #1E293B;
  border-radius: 3rem;
  padding: var(--spacing-sm);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--text-light);
  font-weight: 500;
}

.disclaimer-divider {
  width: 1px;
  height: 40px;
  background-color: #1e293b;
}

.disclaimer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  font-size: var(--font-xs);
}

@media (max-width: 1268px) {
 .hero .hide-on-mobile {
    display: none!important;
  }

  .hero-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: unset;
    right: unset;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 26px;
    margin: 2rem 1.5rem;
  }
  
 .hero .hide-on-desktop {
    display: block;
    margin: 20px auto;
    width: 100%;
  }
  
  /* Hero section mobile adjustments */
  .hero {
    padding: 1rem 0;

  }
  
  .hero-wrapper {
    padding-top: 16rem!important;
    padding: 1.5rem;
    text-align: center;
    flex-direction: column;
    border-radius: var(--radius-lg);
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    opacity: 0.3;
    right: unset;
  }
  
  .hero-image img {
    max-width: 100%;
    height: 100%;
    margin: 0!important;
    object-fit: cover;
  }
  
  .badge {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    margin-bottom: 0.7rem;
  }

  .seminar-info-item span {
    color: #1F1868;
  }

  .final-cta-button {
    padding: 0;
  }

  
  /* Mobile countdown */
  .group-26 {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
  }
  
  .hide-on-desktop .countdown-number {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .hide-on-desktop .countdown-separator {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .hide-on-desktop .countdown-label {
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    display: inline-block;
    width: 40px;
    text-align: center;
    margin-top: 2px;
  }
  
  .seminar-date {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Mobile button styling */
  .group-12 {
    width: 100%;
    margin-top: 15px;
    max-width: 30.5rem;
    padding: 0 1.5rem;
  }
  
  .rectangle-40 {
    background: var(--primary-gradient);
    border-radius: 50px;
    display: block;
    padding: 12px 20px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    text-decoration: none;
  }
  
  .group-11 {
    text-align: center;
  }
  
  .cretsiz-web-seminerine-kaydol {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    display: block;
  }
  
  .kaydolmak-i-in-buraya-t-klay-n {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    margin-top: 4px;
  }
}


/* Mobile-specific Styles */
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none!important;
  }

  .hero-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: unset;
    right: unset;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 26px;
    margin: 2rem 1.5rem;
  }
  
  .hide-on-desktop {
    display: block;
    margin: 20px auto;
    width: 100%;
  }
  
  /* Hero section mobile adjustments */
  .hero {
    padding: 1rem 0;

  }
  
  .hero-wrapper {
    padding-top: 1rem!important;
    padding: 1.5rem;
    text-align: center;
    flex-direction: column;
    border-radius: var(--radius-lg);
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    opacity: 0.3;
    right: unset;
  }
  
  .hero-image img {
    max-width: 100%;
    height: 100%;
    margin: 0;
  }
  
  .badge {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    margin-bottom: 0.7rem;
  }

  .seminar-info-item span {
    color: #1F1868;
  }

  .final-cta-button {
    padding: 0;
  }

  
  /* Mobile countdown */
  .group-26 {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
  }
  
  .hide-on-desktop .countdown-number {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .hide-on-desktop .countdown-separator {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .hide-on-desktop .countdown-label {
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    display: inline-block;
    width: 40px;
    text-align: center;
    margin-top: 2px;
  }
  
  .seminar-date {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Mobile button styling */
  .group-12 {
    width: 100%;
    margin-top: 15px;
    max-width: 30.5rem;
    padding: 0 1.5rem;
  }
  
  .rectangle-40 {
    background: var(--primary-gradient);
    border-radius: 50px;
    display: block;
    padding: 12px 20px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    text-decoration: none;
  }
  
  .group-11 {
    text-align: center;
  }
  
  .cretsiz-web-seminerine-kaydol {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    display: block;
  }
  
  .kaydolmak-i-in-buraya-t-klay-n {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    margin-top: 4px;
  }

  .journey-section {
    padding: 3rem 0;
  }

  .paraf-section {
    flex-direction: column-reverse;
    gap: 1rem;
  }
    
  /* Features section mobile */
  .features .container {
    width: 95%;
    padding: 0 10px;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0 10px;
  }
  
  .feature-item {
    padding: 12px 15px;
    flex-direction: row;
    text-align: left;
  }
  
  .feature-item p {
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
    padding-right: 10px;
  }
  
  /* Ne Yasadigini section mobile */
  .content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .image-side {
    margin-bottom: 2rem;
  }

  .image-side img {
    height: 550px;
    object-fit: cover;
  }  
  
  /* Benefits section mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  


  
  /* Warning section mobile */
  .warning-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .warning-list li {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .warning-footer {
    font-size: 16px;
  }
  
  /* Wide button mobile */
  .cta-button.wide {
    width: 90%;
    max-width: 350px;
  }
  
  /* Mobile disclaimer badge */
  .disclaimer-badge {
    flex-direction: column;
    padding: 1rem;
  }
  
  .disclaimer-divider {
    width: 80%;
    height: 1px;
    margin: 0.5rem 0;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  

}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-wrapper {
    padding: 1rem;
  }
  
  .badge {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  
  .seminar-date {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .bonus-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .bonus-title {
    font-size: 1.5rem;
  }
  
  .bonus-image {
    max-height: 250px;
  }
  
  .bu-seminer-t-rk-enin,
  .bu-seminer-t-rk-enin-2 {
    font-size: 18px;
    line-height: 1.5;
    padding: 1.5rem 1rem;
  }
  
  .divider {
    display: none;
  }
  
  .section-title.dual-color {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .description {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .paraf-section p {
    font-size: 24px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  max-height: 95vh;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2.5rem;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.05);
}

.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(31, 24, 104, 0.3);
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
}

.modal-description {
  color: #6b7280;
  font-size: 1rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(31, 24, 104, 0.2);
}

.phone-input-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.country-code-select {
  width: 130px !important;
  padding: 0.875rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  cursor: pointer;
  font-size: 0.95rem;
}

.country-code-select option {
  background: #ffffff;
  color: #111827;
  padding: 0.5rem;
  font-size: 0.95rem;
}

#phone {
  width: 100%;
  flex: 1;
}

.privacy-notice {
  color: #374151;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.4;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.privacy-notice input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #d1d5db;
  border-radius: 0.25rem;
  outline: none;
  cursor: pointer;
  margin-top: 0.1rem;
  position: relative;
  background-color: #fff;
  flex-shrink: 0;
}

.privacy-notice input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.privacy-notice input[type="checkbox"]:checked:disabled {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  opacity: 0.8;
  cursor: not-allowed;
}

.privacy-notice input[type="checkbox"]:disabled {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  cursor: not-allowed;
  opacity: 0.7;
}

.privacy-notice input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.25rem;
  height: 0.5rem;
  border: solid white;
  border-width: 0 2px 2px 0;
}

.privacy-notice a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-notice a:hover {
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  background: var(--primary-gradient);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.submit-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-button:hover::before {
  opacity: 1;
}

.submit-button span {
  position: relative;
  z-index: 1;
}

/* Modal Countdown */
.modal-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 2rem;
  padding: 1.25rem;
  background: #f3f4f6;
  border-radius: 12px;
}

.modal-content .countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.modal-content .countdown-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.modal-content .countdown-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  text-transform: uppercase;
  margin-top: 1px;
}

.modal-content .countdown-separator {
  font-size: 2rem;
  font-weight: 400;
  color: #374151;
  align-self: flex-start;
  padding-top: 0;
  margin-top: -5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 90%;
    padding: 2rem;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
  
  .modal-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .modal-countdown {
    gap: 10px;
    padding: 1rem;
  }
  
  .modal-content .countdown-item {
    min-width: 60px;
  }
  
  .modal-content .countdown-number {
    font-size: 1.75rem;
  }
  
  .phone-input-wrapper {
    flex-direction: column;
  }
  
  .country-code-select {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1.5rem;
  }
  
  .modal-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
  
  .modal-countdown {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .modal-content .countdown-item {
    min-width: 65px;
  }
  
  .modal-content .countdown-separator {
    display: none;
  }
}

/* Bonus Section */
.bonus {
    padding: 2rem 0;
}

.bonus-wrapper {
    background: #050225;
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.bonus-content {
    flex: 1;
    color: #ffffff;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.bonus-value {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 1rem;
}

.bonus-value span {
    font-weight: 400;
}

.bonus-value strong {
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-weight: 700;
}

.bonus-offer {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 2rem;
}

.bonus-offer span {
    font-weight: 500;
}

.bonus-offer strong {
    margin-left: 0.5rem;
    font-weight: 700;
}

.bonus-items {
    margin-bottom: 2rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.bonus   .item-icon {
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
}

.bonus  .item-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.bonus   .item-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 16.7px;
    line-height: 1.2;
    text-align: left;
}

.bonus-cta {
    width: 100%;
    max-width: 352px;
}

.bonus   .cta-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-72.32deg, rgba(59, 43, 226, 1) 0%, rgba(31, 24, 104, 1) 100%);
    color: #ffffff;
    border-radius: 72px;
    padding: 1rem 2rem;
    width: 100%;
    text-decoration: none;
    margin-bottom: 0.5rem;
    text-align: center;
}

.bonus  .cta-button .primary-text {
    font-weight: 600;
    font-size: 17.38px;
    display: block;
    margin-bottom: 2px;
}

.bonus   .cta-button .secondary-text {
    font-weight: 300;
    font-size: 14.49px;
    display: block;
}

.bonus    .limited-notice {
    color: #ffffff;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
    font-size: 16px;
    line-height: 36px;
}

.bonus-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
    max-height: 430px;
}

/* Responsive styles */
@media (max-width: 1100px) {
    .bonus-wrapper {
        padding: 2rem;
    }
    
    .bonus-content {
        max-width: 45%;
    }
    
    .bonus-image img {
        max-height: 380px;
    }
}

@media (max-width: 900px) {
    .bonus-content {
        max-width: 50%;
    }
    
    .bonus-value, .bonus-offer {
        font-size: 20px;
        line-height: 30px;
    }
    
    .item-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .bonus-wrapper {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .bonus-content {
        max-width: 100%;
        width: 100%;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-value, .bonus-offer {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .bonus-cta {
        width: 100%;
        max-width: 100%;
    }
    
    .bonus   .cta-button {
        width: 100%;
        margin: 0 auto 0.5rem;
    }
    
    .bonus-image {
        width: 100%;
        justify-content: center;
    }
    
    .bonus-image img {
        max-width: 90%;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .bonus-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .bonus-value, .bonus-offer {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .bonus   .item-text {
        font-size: 14px;
    }
    
  .bonus    .cta-button .primary-text {
        font-size: 16px;
    }
    
  .bonus    .cta-button .secondary-text {
        font-size: 12px;
    }
    
  .bonus    .limited-notice {
        font-size: 14px;
    }
}