/* CSS Root Variables */
:root {
  /* Colors */
  --primary-color: #0385B5;
  --primary-light: #02bbea;
  --primary-gradient: linear-gradient(-72.32deg, rgba(3, 195, 242, 1) 0%, rgba(4, 81, 128, 1) 100%);
  --feature-color: #0385B5;
  --dark-blue: #001c2d;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-gray: #94a3b8;
  --text-medium: #3a3a3a;
  --border-color: #999999;
  --background-light: #fbfbfb;
  
  /* Spacing */
  --container-width: 1170px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Font sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-md: 1rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-2xl: 2rem;
  --font-3xl: 2.5rem;
  --font-4xl: 3rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --radius-full: 100px;
}

/* 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 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: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  width: 50%;
  bottom: 0;
  right: 20px;
}

.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);
  cursor: pointer;
}

.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-description {
  font-size: var(--font-lg);
  margin-bottom: var(--spacing-lg);
}

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

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

/* 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;
}

/* 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;
}

/* Testimonials Section */
.testimonials {
  overflow: hidden;
}

.testimonials-overview {
  padding: 4rem 0;
  position: relative;
}

.testimonials-graphic {
  position: absolute;
  top: 3rem;
  left: 10%;
  width: 317px;
  height: auto;
  z-index: -1;
}

.testimonials-grid {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 90px 4px rgba(0, 0, 0, 0.12);
  width: 348px;
  height: 338px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-md);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

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

.testimonial-slide {
  position: absolute;
  width: 320px;
  transition: all 0.5s ease;
  cursor: pointer;
}

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

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

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

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

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

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

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

/* Bonus Section */

.bonus-cta .cta-button {
  margin: 0;
  margin-bottom: 10px;
  max-width: 25rem;
}

.bonus {
  padding: 2rem 0;
}

.bonus-wrapper {
  background: var(--dark-blue);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  margin: 0 4rem;
}

.bonus-content {
  flex: 1;
  color: var(--text-light);
  width: 50%;
  position: relative;
  z-index: 2;
}

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

.bonus-title .accent {
  color: var(--primary-light);
}

.bonus-value {
  font-size: var(--font-xl);
  margin-bottom: var(--spacing-md);
}

.bonus-value strong, .final-value strong {
  text-decoration: line-through; 
}

.bonus-offer {
  font-size: var(--font-xl);
  margin-bottom: var(--spacing-lg);
}

.limited-notice {
  color: var(--primary-light);
  font-weight: 600;
  margin-top: var(--spacing-sm);
  margin-left: 5rem;
}

.bonus-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
  margin-left: 2rem;

}

.bonus-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  position: absolute;
  right: -3rem;
  z-index: 3;
}

.bonus .cta-button {
  width: auto;
  display: inline-flex;
  background: var(--primary-gradient);
  color: var(--text-light);
  border-radius: var(--radius-full);
  padding: 1rem 2rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  text-align: center;
}

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

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

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


/* Benefits Section */
.benefits {
  padding: 4rem 0;
}

.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;
}

.benefit-card img {
  width: 80%;
  height: auto;
  margin-bottom: var(--spacing-md);
}

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

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

.benefit-list {
  list-style-type: none;
}

.benefit-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
}

.benefit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-medium);
}

/* Final CTA Section */
.final-cta {
  padding: 4rem 0;
  text-align: center;
}

.final-value {
  font-size: var(--font-xl);
  margin-bottom: var(--spacing-md);
}

.final-text {
  font-size: 3rem;
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  line-height: 54px;
  text-align: center;
  letter-spacing: 0.143292px;
  color: #3A3A3A;
}

.final-cta .cta-button {
  margin-top: 40px;
  width: 24rem;
}

/* Reviews Section */
.reviews {
  padding: 2rem 0;
  overflow-x: 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;
}

.review-card .rating {
  width: 100px;
  margin-bottom: var(--spacing-md);
}

.review-highlight {
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-md);
  font-size: var(--font-lg);
  color: var(--text-medium);
}

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

.review-author {
  font-weight: 700;
  color: var(--text-medium);
}

/* 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;
}

/* 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;
  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);
}

/* Mobile-specific Styles */
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
  
  .hide-on-desktop {
    display: block;
    margin: 20px auto;
    width: 100%;
  }
  

  .final-cta .cta-button {
    margin-top: 40px;
    width: unset; 
  }

  /* Hero section mobile adjustments */
  /* Hero section adjustments */
  .hero {
    padding: 1rem 0;
  }
  
  .hero-wrapper {
    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 {
    margin-top: 2rem;
    height: auto;
    position: absolute;
    z-index: -1;
    bottom: 0;
    opacity: 0.25;
    right: unset;
  }
  
  .hero-image img {
    max-width: 100vw;
    height: 300px;
    object-fit: cover;
  }
  
  .badge {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    margin-bottom: 0.7rem;
  }
  
  /* Mobile countdown */
  .countdown-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .mobile-countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
  }
  
  .mobile-countdown-number {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
  }
  
  .mobile-countdown-separator {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
  }
  
  .mobile-countdown-labels {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
  }
  
  .mobile-countdown-label {
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 500;
    width: 40px;
    text-align: center;
  }
  
  .seminar-date {
    font-size: 1rem;
    line-height: 20px;
    text-align: center;
    margin: 15px 0;
  }
  /* Mobile countdown */
  .group-26 {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
  }
  
  .group-2 {
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .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;
  }
  
  .seminer-tarihi-19-mart-ar-amba-t-rkiye-saati-21-30 {
    color: #000000;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 20px;
    width: 100%;
    padding: 0 4rem;
  }
  
  .seminer-tarihi-19-mart-ar-amba-t-rkiye-saati-21-30-span {
    font-weight: 400;
  }
  
  .seminer-tarihi-19-mart-ar-amba-t-rkiye-saati-21-30-span2 {
    font-weight: 700;
  }
  
  /* Mobile button styling */
  .group-12 {
    width: 100%;
    margin-top: 15px;
    max-width: 30.5rem;
    padding: 0 1.5rem;

  }
  
  .rectangle-40 {
    background: linear-gradient(-72.32deg, rgba(3, 195, 242, 1) 0%, rgba(4, 81, 128, 1) 100%);
    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;
  }
  
  /* 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;
  }
  
  /* Bonus section mobile */
/* Bonus Section */
.bonus {
  padding: 4rem 5rem;
}

.bonus-wrapper {
  background: var(--dark-blue);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}

.bonus-content {
  flex: 1;
  color: var(--text-light);
  width: 50%;
  position: relative;
  z-index: 2;
}

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

.bonus-title .accent {
  color: var(--primary-light);
}

.bonus-value {
  font-size: var(--font-xl);
  margin-bottom: var(--spacing-md);
}

.bonus-value strong, .final-value strong {
  text-decoration: line-through; 
}

.bonus-offer {
  font-size: var(--font-xl);
  margin-bottom: var(--spacing-lg);
}

.limited-notice {
  color: var(--primary-light);
  font-weight: 600;
  margin-left: 0;
  text-align: left;
}

.bonus-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: absolute;
  right: -60px;
  height: 475px;
  z-index: 1;
}

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

.bonus .cta-button {
  width: auto;
  display: inline-flex;
  background: var(--primary-gradient);
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  border: none;
}

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

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

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

  /* Benefits section mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonus-wrapper {
    flex-direction: column;
  }
  
  .bonus-content {
    margin-bottom: var(--spacing-xl);
  }
}

/* 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;
  }
  
  .testimonial-card {
    width: 280px;
    height: auto;
  }
  
  .bonus-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .bonus-title {
    font-size: 1.5rem;
  }
  
  .bonus-image {
    max-height: 250px;
  }
  
  .divider {
    display: none;
  }
}


@media (max-width: 1200px) {
   .bonus-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  position: relative;
  right: 0;
}
}


/* Mobile-specific Bonus Styles */
@media (max-width: 768px) {
  .bonus {
    padding: 2rem 1rem;
  }
  .bonus .container {
    padding: 0;
  }

  .bonus-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  position: relative;
  right: 0;
}
  
  .bonus-wrapper {
    padding: 2rem 1.5rem;
    flex-direction: column;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: unset;
  }
  
  .bonus-content {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .bonus-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .bonus-value, .bonus-offer {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .limited-notice {
    margin-left: 0;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }
  
  .bonus-image {
    position: relative;
    right: auto;
    height: auto;
    max-height: 300px;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .bonus .cta-button {
    width: 100%;
    text-align: center;
  }
  
  .bonus .cta-button .primary-text {
    font-size: 1rem;
  }
  
  .bonus .cta-button .secondary-text {
    font-size: 0.8rem;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1200px) {
  .bonus {
    padding: 3rem 2rem;
  }
  
  .bonus-wrapper {
    padding: 2.5rem;
  }
  
  .bonus-image {
    right: -30px;
    height: 400px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .bonus-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .bonus-title {
    font-size: 1.5rem;
  }
  
  .bonus-image {
    max-height: 250px;
  }
}


/* Light Mode Modal Styles - Improved */
.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; /* Increased from 500px */
  max-height: 95vh;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2.5rem; /* Increased padding */
  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; /* Larger icon */
  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(3, 133, 181, 0.3);
}

.modal-title {
  font-size: 1.75rem; /* Larger title */
  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; /* Increased gap */
}

.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; /* Larger inputs */
  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(3, 133, 181, 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;
}

/* Checkbox stilini özelleştir */
.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;
}

/* Checkbox işareti için özel stil */
.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;
}

/* Improved Countdown Styles */
.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;  /* Darker color for better contrast on white background */
  text-transform: uppercase;
  margin-top: 1px;
}

.modal-content .countdown-separator {
  font-size: 2rem;
  font-weight: 400;
  color: #374151;  /* Darker color for better contrast on white background */
  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;
  }
}

@media (max-width: 480px) {

  .disclaimer-badge {
    flex-direction: column;
  }

  .modal-content {
    padding: 1.5rem;
  }
  
  .phone-input-wrapper {
    flex-direction: column;
  }
  
  .country-code-select {
    width: 100% !important;
  }
  
  .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;
  }
}