@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-white-solid: #FFF;
  --color-azure-50: #07F;
  --color-azure-40: #005FCC;
  --color-azure-7: #070D1D;
  --color-azure-17: #1C2B3D;
  --color-azure-87: #D6DDE6;
  --color-grey-99: #FFFDFC;
  --color-grey-46: #757575;
  --color-grey-20: #333;
  --color-grey-11: #1C1B1F;
  --cloud-darker: #BAC7D5;
  --gray-900: #101828;
  --orange-accent: #F36F25;
  --font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
}


body {
  font-family: var(--font-family), -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
  color: #1a1a1a;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1.2rem 0;
}

.logo img {
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  align-items: center;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #007AFF;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 104vh;
  background: #fff;
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 20px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: grid;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1.2rem;
  justify-content: space-between;
  grid-template-columns: 4fr auto 1fr;
  gap: 20px;
}

.mobile-menu-header img {
  height: 38px;
}

.close-btn {
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  padding: 0;
  line-height: 1;
  font-weight: 300;
}

.mobile-nav-links {
  list-style: none;
  border: 1px solid #D6DDE6;
  padding: 12px 18px;
  border-radius: 16px;
}

.mobile-nav-links li {
  border-bottom: 1px solid #f5f5f5;
}
.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.mobile-nav-links a::after {
  content: '›';
  font-size: 26px;
  color: #000000;
  font-weight: 300;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 24px;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 0px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('../img/hero.jpg') center/cover;
}

.hero-wave {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Steps section padding ayarı */
.steps-section {
  padding: 70px 0 50px;
  background: #fafafa;
  margin-top: 0; /* wave ile overlap olmasın */
}

@media (max-width: 768px) {
  .hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
  }

}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 170px;
}
.hero-section.thank-you-hero .hero-content{
  padding: 0 0 170px;
}
.hero-text {
  color: #fff;
  max-width: 580px;
}

.hero-text h1 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin-top: 1rem;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 4px 18px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.promo-badge::before {
  content: 'ÖZEL FIRSAT: ';
  margin-right: 4px;
}

.promo-badge span {
  color: #007AFF;
  font-weight: 600;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 16px;
  margin-top: 1.8rem;
}

.timer-box {
  text-align: center;
}

.timer-number {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 1) 0%, rgba(190, 220, 255, 1) 100%, rgba(96, 170, 255, 1) 50%);
  width: 80px;
  height: 80px;
  align-content: center;
  border-radius: 16px;
  border-bottom: 6px solid #0075FF;
}

.timer-label {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

/* Form Card */
.form-card {
  background: rgb(255 255 255 / 50%);
  border-radius: 40px;
  padding: 38px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  position: sticky;
  top: 100px;
  backdrop-filter: blur(10px);
}

.form-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
  text-align: center;
  color: #333;
}

.form-card > p {
  text-align: center;
  color: #333;
  font-size: 16px;
  margin-bottom: 28px;
  font-weight: 400;
}

.form-group {
  margin-bottom: 16px;
}

.input-with-icon {
  position: relative;
}
.telform{
  display: flex;
  height: 44px;
  padding: 13px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid var(--color-azure-87);
  background: var(--color-grey-99);
}
.input-with-icon input {
  padding-left: 42px;
  height: 52px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s;
  background: #fff;
}

.input-with-icon input::placeholder {
  color: #333;
}

.input-with-icon input:focus {
  border-color: #007AFF;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.08);
  outline: none;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-size: 16px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #333;
  line-height: 1;
}

.custom-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  cursor: pointer;
  accent-color: #007AFF;
  flex-shrink: 0;
}

.custom-checkbox label {
  margin: 0;
  cursor: pointer;
}

.custom-checkbox a {
  color: #000000;
  font-weight: 500;
  text-decoration: underline;
}

.custom-checkbox a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  height: 58px;
  background: #007AFF;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #0066DD;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  margin-top: 18px;
  padding-top: 18px;
  line-height: 1;
}

.privacy-note i {
  font-size: 18px;
}

/* Steps Section */
.steps-section {
  background: #f5faff;
  padding: 50px 0 50px;
  margin-top: -40px;
  position: relative;
}
.steps-section .container {
  display: flex;
  gap: 24px;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: #007AFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.step-number {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 72px;
  font-weight: 700;
  color: #f5f5f5;
  line-height: 1;
}

.step-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.step-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}


.step-card {
  display: flex;
  padding: 24px 12px;
  align-items: center;
  gap: 12px;
  flex: 1;
  border-radius: 18.296px;
  border: 1.525px solid #E7EBF0;
  background: #FFF;
  box-shadow: 0 12.198px 24.395px 0 rgba(28, 43, 61, 0.16);
  position: relative;

}


.step-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
}

.step-title {
  color: var(--gray-900);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.step-description {
  align-self: stretch;
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.step-number {
  position: absolute;
  right: 12px;
  top: 26px;
  color: var(--gray-900);
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
  opacity: 0.1;
}


/* Responsive */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .form-card {
    position: relative;
    top: 0;
    margin-top: 35px;
  }

  .timer-box {
    min-width: 72px;
    padding: 15px 18px;
  }

  .timer-number {
    font-size: 28px;
  }

  .steps-section {
    padding: 50px 0 30px;
    margin-top: -30px;
  }

  .step-card {
    margin-bottom: 16px;
  }
}

@media (max-width: 776px) {
  .hero-text h1 {
    font-size: 24px;
    font-weight: 500;
  }
  .timer-box {
    min-width: 62px;
    padding: 6px 4px;
  }

  .timer-number {
    font-size: 20px;
    width: 60px;
    height: 60px;
    font-weight: 500;
    margin-bottom: 0;
  }

  .timer-label {
    font-size: 12px;
  }

  .form-card {
    padding: 30px 24px;
  }

  .form-card h3 {
    font-size: 20px;
  }
  .hero-section {
    max-height: 550px;
    min-height: auto;
  }
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: #fff;
}

.stat-card {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.stat-content {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}
/* Features Section */
.features-section {
  padding: 20px 0 50px;
  background: #fff;
}

.features-header {
  max-width: 900px;
  margin: 0 auto 60px;
}

.features-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.features-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Desktop Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
}

.feature-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-image {
  transform: translateY(-4px);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Carousel */
.features-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 20px;
  margin: 0 -20px;
}

.features-carousel::-webkit-scrollbar {
  display: none;
}

.features-carousel-wrapper {
  display: flex;
  gap: 16px;
  padding: 4px 0 20px;
}

.features-carousel .feature-item {
  flex: 0 0 160px;
  width: 160px;
}

.features-carousel .feature-image {
  margin-bottom: 12px;
  border-radius: 14px;
}

.features-carousel .feature-item h4 {
  font-size: 14px;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  background: #007AFF;
  color: #fff;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s;
}

.btn-primary-custom:hover {
  background: #0066DD;
  transform: translateY(-2px);
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {

  .stat-number {
    font-size: 20px;
  }
  .stat-card {
    height: 150px;
  }
  .promo-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
  }

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

  .features-header {
    margin-bottom: 40px;
  }

  .features-header h2 {
    font-size: 26px;
  }

  .features-header p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .steps-section {
    padding-top: 560px;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 14px 0;
  }
  .features-section {
    padding: 50px 0;
  }

  .features-header h2 {
    font-size: 22px;
  }

  .features-header p {
    font-size: 14px;
  }

  .features-carousel {
    padding: 0 16px;
    margin: 0 -16px;
  }

  .features-carousel .feature-item {
    flex: 0 0 140px;
    width: 140px;
  }

  .features-carousel .feature-item h4 {
    font-size: 13px;
  }

  .btn-primary-custom {
    padding: 14px 32px;
    font-size: 14px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Partners Section */
.partners-section {
  padding: 50px 0;
  background: #fff;
}

.partners-header {
  margin-bottom: 50px;
}

.partners-header h2 {
  font-size: 20px;
  font-weight: 400;
  color: #757575;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* Desktop Grid */
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: scale(1.05);
}

.partner-item img {
  max-height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.partner-item:hover img {
  opacity: 1;
}

/* Mobile Carousel */
.partners-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 20px;
  margin: 0 -20px;
}

.partners-carousel::-webkit-scrollbar {
  display: none;
}

.partners-carousel-wrapper {
  display: flex;
  gap: 30px;
  padding: 10px 0 20px;
}

.partners-carousel .partner-item {
  flex: 0 0 140px;
  width: 140px;
}

.partners-carousel .partner-item img {
  max-height: 50px;
  max-width: 140px;
}

/* Responsive */
@media (max-width: 991px) {
  .partners-section {
    padding: 60px 0;
  }

  .partners-header {
    margin-bottom: 40px;
  }

  .partners-header h2 {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .partners-section {
    padding: 50px 0;
  }

  .partners-header h2 {
    font-size: 12px;
  }

  .partners-carousel {
    padding: 0 16px;
    margin: 0 -16px;
  }

  .partners-carousel .partner-item {
    flex: 0 0 120px;
    width: 120px;
  }

  .partners-carousel .partner-item img {
    max-height: 45px;
    max-width: 120px;
  }
}
/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  overflow: hidden;
}

.testimonials-header {
  max-width: 900px;
  margin: 0 auto 60px;
}

.testimonials-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.testimonials-header p {
  font-size: 20px;
  color: #757575;
  margin: 0;
  font-weight: 300;
}

.testimonials-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 24px;
}

.testimonials-container::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 420px;
  background: linear-gradient(135deg, #070D1D 0%, #2d3142 100%);
  border-radius: 24px;
  padding: 20px 26px;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.quote-icon {
  font-size: 60px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 32px;
  min-height: 120px;
  font-weight: 300;
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgb(85 96 128);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding-top: 10px;
}

.author-avatar i {
  font-size: 60px;
  color: rgba(255,255,255,0.6);
}

.author-info h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.author-info p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 0;
}

/* Navigation Buttons */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #007AFF;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.testimonial-nav:hover {
  background: #0066DD;
  transform: translateY(-50%) scale(1.05);
}

.testimonial-nav-prev {
  left: 0;
}

.testimonial-nav-next {
  right: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .countdown-timer {
    gap: 4px;
    margin-top: 1.4rem;
  }
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-header h2 {
    font-size: 28px;
  }

  .testimonials-wrapper {
    padding: 0 20px;
  }

  .testimonial-nav {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 340px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-header h2 {
    font-size: 24px;
  }

  .testimonials-header p {
    font-size: 14px;
  }

  .testimonials-wrapper {
    padding: 0 16px;
  }

  .testimonials-container {
    gap: 16px;
    padding: 4px 0 20px;
  }

  .testimonial-card {
    flex: 0 0 300px;
    padding: 32px 28px;
    border-radius: 20px;
  }

  .quote-icon {
    font-size: 50px;
    margin-bottom: 16px;
  }

  .testimonial-text {
    font-size: 15px;
    margin-bottom: 28px;
    min-height: auto;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
  }

  .author-info h5 {
    font-size: 15px;
  }

  .author-info p {
    font-size: 12px;
  }
}
/* CTA Section */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(90deg, rgb(37 99 235 / 90%) 0%, rgb(37 99 235 / 50%) 100%), url(../img/footer.jpg);
  background-size: cover;
  background-position: center right;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.85) 0%, rgba(37, 99, 235, 0.9) 100%);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  color: #fff;
}

.cta-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.cta-title .text-orange {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}

.text-orange {
  color: #ff6b35;
}

.cta-description {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 36px;
  max-width: 600px;
  font-weight: 400;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.cta-feature-item i {
  font-size: 20px;
  color: #ff6b35;
}

.btn-cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff6b35;
  color: #fff;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-cta-contact:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.btn-cta-contact i {
  font-size: 18px;
}

/* Footer Bar */
.footer-bar {
  background: #26384F;
  padding: 24px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
}

.social-links a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-phone:hover {
  color: #ff6b35;
}

.footer-phone i {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-features {
    gap: 20px;
  }
  .steps-section .container {
    display: flex;
    gap: 4px;
    flex-direction: column;
  }
  .step-title {
    font-size: 14px;
  }
  .step-description {
    font-size: 12px;
  }
  .step-card {
    padding: 14px 12px;
  }
  .step-number {
    top: 20px;
    font-size: 40px;
  }
  .floating-buttons {
    gap: 16px;
    right: 0;
    bottom: 20px;
  }
  .form-card > p {
    text-align: center;
    color: #333333;
    font-size: 12px;
    margin-bottom: 28px;
  }
  .cta-title .text-orange {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .cta-description {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cta-features {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .cta-feature-item {
    font-size: 14px;
  }

  .cta-feature-item i {
    font-size: 18px;
  }

  .btn-cta-contact {
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;

  }

  .footer-content {
    flex-direction: row;
    gap: 20px;
    text-align: center;
  }

  .social-links {
    gap: 8px;
  }

  .footer-phone {
    font-size: 18px;
  }
}

/* Main Footer */
.main-footer {
  background: #f8f9fa;
  padding: 60px 0 40px;
  border-top: 1px solid #e5e7eb;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  height: 45px;
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-address {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-phone,
.footer-email {
  margin-bottom: 8px;
}

.footer-phone a{
  font-size: 16px;
}
.footer-email a{
  font-size: 14px;
}
.footer-phone a,
.footer-email a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-phone a:hover,
.footer-email a:hover {
  color: #007AFF;
}

.footer-badges {
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badges img {
  max-height: 80px;
  width: auto;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.footer-links a:hover {
  color: #1a1a1a;
}

/* Footer Copyright */
.footer-copyright {
  background: #e5e7eb;
  padding: 20px 0;
}

.footer-copyright p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 991px) {
  .main-footer {
    padding: 50px 0 30px;
  }

  .footer-title {
    margin-bottom: 16px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .main-footer {
    padding: 40px 0 10px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo img {
    height: 40px;
  }

  .footer-contact {
    margin-bottom: 24px;
  }

  .footer-address,
  .footer-phone a,
  .footer-email a {
    font-size: 13px;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-badges {
    justify-content: start;
  }

  .footer-badges img {
    max-height: 70px;
  }

  .footer-copyright p {
    font-size: 12px;
  }
}

/* Modal Styles */
.modal-content {
  border-radius: 16px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 24px;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.modal-body {
  padding: 24px;
  max-height: 60vh;
}

.modal-body h6 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 20px 0 10px;
}

.modal-body h6:first-child {
  margin-top: 0;
}

.modal-body p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

.modal-footer {
  border-top: 1px solid #e5e7eb;
  padding: 16px 24px;
}

.modal-footer .btn-primary {
  background: #007AFF;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

.modal-footer .btn-primary:hover {
  background: #0066DD;
}

.floating-buttons {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 1000;
}

.whatsapp-button {
  display: flex;
  padding: 10px 16px 10px 16px;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  background: #4FCE5D;
  box-shadow: 0 8px 16px 0 rgba(28, 43, 61, 0.16);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.phone-button {
  display: flex;
  padding: 10px 16px 10px 16px;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  background: #0077FFFF;
  box-shadow: 0 8px 16px 0 rgba(28, 43, 61, 0.16);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 576px) {
  .phone-button, .whatsapp-button {
    height: 50px; width: 50px;
  }
  .phone-button span {
    display: none;
  }
  .whatsapp-button span {
    display: none;
  }
  .phone-button i, .whatsapp-button i {
    font-size: 20px;
  }
  .floating-buttons {
    right: 20px;
    bottom: 20px;
  }

}

/* Thank You Message - White Background */
.hero-section.thank-you-hero {
  background: #fff;
  min-height: 50vh;
}

.thank-you-message {
  padding: 40px 0 30px;
}

.thank-you-badge {
  display: inline-block;
  background: #f0f9ff;
  color: #007AFF;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid #e0f2fe;
}

.thank-you-title {
  font-size: 40px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}
.thank-you-text{
  font-weight: 400;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
}
.thank-you-kod{
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  text-align: center;
  letter-spacing: 2px;
}
.thank-you-kod span{
  color:#0077FF;
}
.thank-you-info{
  text-align: center;
  color:#101828;
  background: #F7FBFF;
  padding: 24px 16px;
  border-radius: 12px;
}
.thank-you-info .title{
font-size: 18px;
  font-weight: 500;
}

.thank-you-info p{
  font-size: 18px;
  margin-top: 20px;
  text-align: left;
  font-weight: 400;
  color: #101828;
  line-height: 30px;
}


.thank-you-text {
  color: #101828;
  font-size: 24px;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .thank-you-message {
    padding: 40px 0 10px;
  }

  .thank-you-title {
    font-size: 22px;
  }

  .coupon-code {
    font-size: 24px;
    padding: 6px 20px;
    display: block;
    margin: 10px 10%;
  }

  .thank-you-text {
    font-size: 15px;
  }
}
  @media (max-width: 768px) {
    .hero-section.thank-you-hero {
      min-height: 50vh;
      margin-top: 0;
    }
    .thank-you-info p {
      font-size: 12px;
      line-height: 26px;
    }
  }


/* Hotels Section */
.hotels-section {
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

.hotels-section h1{
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  vertical-align: middle;
  text-align: center;
  padding-bottom: 30px;
}

.hotels-section .row {
  min-height: 500px;
}

/* Left Sticky Card */
.hotels-intro-card {
  position: sticky;
  top: 55px;
  height: 455px;
  background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../img/carbg.jpg) center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.hotels-intro-content {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.h-i-c{
  padding: 20px;
  background: #ffffff5e;
  width: 100%;
  text-align: left;
}

.hotels-intro-title {
  font-size: 34px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.hotels-intro-text {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 32px;
}

.btn-hotels-view {
  display: inline-flex;
  align-items: center;
  background: #007AFF;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-hotels-view:hover {
  background: #0066DD;
  transform: scale(1.05);
  color: #fff;
}

/* Mobile Header */
.hotels-header {
  padding: 40px 20px 20px;
  text-align: center;
}

.hotels-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}

/* Carousel Wrapper */
.hotels-carousel-wrapper {
  padding: 30px 0 10px 40px;
  background: #F2EFEE;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.hotels-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.hotels-carousel::-webkit-scrollbar {
  display: none;
}

/* Hotel Card */
.hotel-card {
  flex: 0 0 380px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s;
  cursor: pointer;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hotel-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

.hotel-favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.hotel-favorite:hover {
  background: #fff;
  transform: scale(1.1);
}

.hotel-favorite i {
  font-size: 18px;
  color: #1a1a1a;
}

.hotel-favorite:hover i {
  color: #ff6b35;
}

/* Hotel Info */
.hotel-info {
  padding: 20px;
}

.hotel-location {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.hotel-name-rating {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.hotel-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
}

.hotel-rating {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
  margin-left: 12px;
}

.hotel-rating i {
  font-size: 14px;
  color: #000000;
}

/* Price Row */
.hotel-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.hotel-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hotel-badge {
  display: inline-block;
  background: #E964051A;
  color: #E96405;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

.hotel-guests {
  font-size: 13px;
  color: #4b5563;
}

.hotel-pricing {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hotel-discount {
  background: #28A1381A;
  color: #28A138;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.hotel-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hotel-old-price {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
}

.hotel-price {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 991px) {
  .hotels-intro-card {
    position: relative;
    top: 0;
    height: 400px;
  }

  .hotels-intro-title {
    font-size: 28px;
  }

  .hotels-carousel-wrapper {
    padding: 20px 0 20px 20px;
  }

  .hotel-card {
    flex: 0 0 320px;
  }

  .hotel-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hotels-intro-card {
    height: 300px;
    padding: 30px 20px;
  }
  .hotels-intro-card{
    border-radius: 0;
  }
  .hotels-intro-title {
    font-size: 24px;
  }

  .btn-hotels-view {
    padding: 14px 28px;
    font-size: 14px;
  }

  .hotels-carousel-wrapper {
    padding: 20px 0 20px 16px;
    border-radius: 0;
  }

  .hotel-card {
    flex: 0 0 280px;
  }

  .hotel-image {
    height: 160px;
  }

  .hotel-name {
    font-size: 16px;
  }

  .hotel-price {
    font-size: 18px;
  }
  .hotels-section h1 {
    font-size: 18px;
  }
}
/* Carousel için önemli değişiklikler */
.hotels-carousel {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 20px;
  cursor: grab;
  user-select: none;
}

.hotels-carousel.active {
  cursor: grabbing;
  scroll-behavior: auto; /* Drag sırasında smooth kapalı */
}

.hotels-carousel::-webkit-scrollbar {
  display: none;
}

/* Kartların pointer events'i */
.hotel-card {
  flex: 0 0 380px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s;
  cursor: pointer;
  pointer-events: auto;
}

.hotels-carousel.active .hotel-card {
  pointer-events: none; /* Drag sırasında tıklamayı engelle */
}
@media (max-width: 991px) {
.hotel-card {
  flex: 0 0 230px;
}
  .hotel-name-rating {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .hotel-rating {
    display: none;
  }
  .hotel-price-row {
    display: flex;
    align-items: stretch;
    gap: 18px;
    flex-direction: column;
  }
  .hotel-details {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }
  .hotel-info {
    padding: 20px 10px;
  }


}

/* Hotel Navigation Buttons */
.hotels-carousel-wrapper {
  position: relative;
}

.hotel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0077ff;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hotel-nav:hover {
  background: #007AFF;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.hotel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.hotel-nav-prev {
  left: -24px;
}

.hotel-nav-next {
  right: 16px;
}

@media (max-width: 991px) {
  .hotel-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .hotel-nav-prev {
    left: 10px;
  }

  .hotel-nav-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .hotel-nav {
    display: none; /* Mobilde gizle, swipe yeterli */
  }
}

/* Form Validation Errors */
.input-with-icon input.is-invalid {
  border-color: #ef4444 !important;
  background-color: #fef2f2;
}

.input-with-icon input.is-invalid:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.custom-checkbox input.is-invalid {
  accent-color: #ef4444;
  outline: 2px solid #ef4444;
  outline-offset: 2px;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
  animation: slideDown 0.2s ease;
}

.error-message i {
  font-size: 14px;
  flex-shrink: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form group spacing ayarı */
.form-group {
  margin-bottom: 18px;
}

.form-group:has(.error-message) {
  margin-bottom: 22px;
}

.custom-checkbox {
  position: relative;
}

.custom-checkbox .error-message {
  margin-left: 30px;
}