* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1em;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(290deg, #401F4E47 0%, #106791 100%), 
                url('../images/hijyen-belgesi-hero.webp');
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat;
    padding: 3em 1em;
    text-align: center;
    color: white;
    width: 100%;
}
@media (max-width: 768px) {
    .hero {
        background-position: 70% 50%;
        padding: 4em 1em 3em;
    }
}
.hero-content {
    animation: fadeInUp 0.8s ease;
    max-width: 100%;
}
.hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: 0.2px;
    margin-bottom: 1em;
    color: #FFFFFF;
}
@media (max-width: 768px) {
    .hero h1 { 
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 0.8em;
    }
}
.hero h1 strong {
    display: block;
}
.hero p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #FFFFFF;
}
@media (max-width: 768px) {
    .hero p { 
        font-size: 13px;
        padding: 0;
        margin-bottom: 0.3em;
    }
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5em;
    width: 100%;
}
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: 8px;
        padding: 0 0.5em;
        margin-top: 1em;
    }
}
.btn {
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}
@media (max-width: 768px) {
    .btn {
        width: calc(50% - 4px);
        font-size: 14px;
        padding: 12px 15px;
        gap: 5px;
    }
    .btn i {
        font-size: 12px;
    }
}
.btn-primary {
    background: #10912B;
    color: #FFFFFF;
}
.btn-secondary {
    background: #1A9FDB;
    color: #FFFFFF;
}
.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* References Section */
.references {
    padding: 0 0 5em;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .references {
        padding: 2em 0 3em;
    }
}

.references-header {
    display: grid;
    grid-template-columns: 25% 75%;
    align-items: center;
    gap: 2em;
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 10px;
    width: 100%;
}

@media (max-width: 768px) {
    .references-header {
        grid-template-columns: 1fr;
        gap: 1em;
        padding: 10px;
    }
}

.references-title {
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    padding-right: 3em;
    border-right: 1px solid #1A9FDB;
    animation: fadeInLeft 0.8s ease;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .references-title {
        border-right: none;
        border-bottom: 1px solid #1A9FDB;
        padding-right: 0;
        padding-bottom: 1em;
        font-size: 20px;
        text-align: center;
        white-space: nowrap;
    }
}

.logos-slider {
    overflow: hidden;
    margin-left: 2em;
    width: 100%;
}

@media (max-width: 768px) {
    .logos-slider {
        margin-left: 0;
    }
}

.logos-track {
    display: flex;
    gap: 30px;
    animation: scroll 15s linear infinite;
}

@media (max-width: 768px) {
    .logos-track {
        gap: 15px;
    }
}

.logo-item {
    flex-shrink: 0;
    height: 60px;
}

@media (max-width: 768px) {
    .logo-item {
        height: 35px;
    }
}

.logo-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Steps Section */
.steps-intro {
    text-align: center;
    padding: 0 1em 1em;
    width: 100%;
}

@media (max-width: 768px) {
    .steps-intro {
        padding: 1em 1em 2em;
    }
}

.steps-intro h2 {
    font-size: 45px;
    margin-bottom: 0.5em;
    animation: fadeInUp 0.8s ease;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 768px) {
    .steps-intro h2 {
        font-size: 26px;
        line-height: 1.3;
        padding: 0 0.5em;
    }
}

.steps-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1em 7.5em;
    width: 100%;
}

@media (max-width: 768px) {
    .steps-container {
        padding: 0 0.5em 3em;
    }
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

.step {
    border: 1px solid #1A9FDB;
    border-right: none;
    padding: 0 30px 30px;
}

@media (max-width: 768px) {
    .step {
        border-right: 1px solid #1A9FDB;
        border-bottom: none;
        padding: 0 15px 25px;
    }
    .step:last-child {
        border-bottom: 1px solid #1A9FDB;
    }
}

.step:first-child {
    border-left: 1px solid #1A9FDB;
}

.step:last-child {
    border-right: 1px solid #1A9FDB;
    background: linear-gradient(150deg, #1A9FDB 30%, rgba(26, 159, 219, 0.5) 85%);
}

.step-header {
    background: #1A9FDB;
    color: white;
    padding: 20px 15px 10px;
    margin: -1px 0 20px;
    width: auto;
    display: inline-block;
    box-shadow: 0 5px 30px -10px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .step-header {
        padding: 12px 10px 8px;
        margin-bottom: 15px;
    }
}

.step:nth-child(1) .step-header { animation: fadeInRight 0.8s ease; }
.step:nth-child(2) .step-header { animation: fadeInRight 0.8s ease 0.24s; animation-fill-mode: both; }
.step:nth-child(3) .step-header { animation: fadeInRight 0.8s ease 0.24s; animation-fill-mode: both; }
.step:nth-child(4) .step-header { animation: fadeInRight 0.8s ease 0.48s; animation-fill-mode: both; }

.step h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin: 0;
}

@media (max-width: 768px) {
    .step h3 {
        font-size: 16px;
    }
}

.step:last-child .step-header {
    background: white;
    color: #1A9FDB;
    box-shadow: 0 5px 30px -10px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

.step:last-child p {
    color: white;
}

.step p {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .step p {
        font-size: 13px;
    }
}

.step-divider {
    width: 50px;
    height: 4px;
    background: #10912B;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .step-divider {
        width: 40px;
        height: 3px;
        margin-top: 15px;
    }
}

.step:last-child .step-divider {
    background: #FFFFFF;
}

/* E-Devlet Section */
.edevlet-section {
    text-align: center;
    padding: 0 1em 4em;
    width: 100%;
}
@media (max-width: 768px) {
    .edevlet-section {
        padding: 1em 1em 3em;
    }
}
.edevlet-section .subtitle {
    font-size: 20px;
    margin-bottom: 0.5em;
}
@media (max-width: 768px) {
    .edevlet-section .subtitle {
        font-size: 14px;
        margin-bottom: 0.8em;
    }
}
.edevlet-section h2 {
    font-size: 45px;
    margin-bottom: 0.8em;
    animation: fadeInUp 0.8s ease;
    font-family: 'Raleway', sans-serif;
}
@media (max-width: 768px) {
    .edevlet-section h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-top: 0;
    }
}
.edevlet-section .description {
    max-width: 50%;
    margin: 0 auto 2em;
    font-size: 15px;
}
@media (max-width: 768px) {
    .edevlet-section .description {
        max-width: 100%;
        padding: 0;
        font-size: 13px;
    }
}
.feature-divider {
    width: 280px;
    height: 4px;
    background: #10912B;
    margin: 2em auto;
}
@media (max-width: 768px) {
    .feature-divider {
        width: 90px;
        height: 3px;
        margin: 1.5em auto;
    }
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    max-width: 80%;
    margin: 0 auto 6em;
    width: 100%;
}
@media (max-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 1em;
        padding: 0 0.5em;
        margin-bottom: 3em;
    }
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 768px) {
    .feature {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }
}

.feature img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .feature img {
        width: 45px;
        height: 45px;
    }
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 3px;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 768px) {
    .feature-content h3 {
        font-size: 15px;
    }
}

.feature-content p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .feature-content p {
        font-size: 12px;
    }
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    padding: 0 1em 7em;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
        gap: 1.5em;
        padding: 2em 1em 4em;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
}

@media (max-width: 768px) {
    .about-content {
        order: 2;
    }
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 0.5em;
    animation: fadeInUp 0.8s ease;
    font-family: 'Raleway', sans-serif;
}

.about-content p {
    margin-bottom: 0.4em;
    line-height: 1.8;
}

.about-image {
    order: 2;
    animation: fadeInLeft 0.8s ease;
}

@media (max-width: 768px) {
    .about-image {
        order: 1;
    }
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-image img {
        height: 300px;
    }
}

/* === GENEL AYARLAR === */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden; /* yatay taşmayı tamamen engelle */
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  padding: 0 0 7em;
  margin-bottom: 0;
  overflow: hidden; /* güvenlik için */
}

@media (max-width: 768px) {
  .testimonials {
    padding: 0 0 3em;
  }
  .testimonials .container {
    padding: 0;
    max-width: 100%;
  }
}

/* Ana sarmalayıcı */
.testimonials-wrapper {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  max-width: 1260px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(77, 183, 227, 0.9) 85%, white 85%);
  background-image: url('../images/testimonials-bg.jpg');
  background-size: 85%;
  background-position: center left;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  max-width: 1260px;
}

@media (max-width: 768px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    /* Mobilde mavi arka planı sabitle */
    background: #4DB7E3;
    background-image: none; /* renk tutarlılığı için */
    background-size: cover;
    background-position: center;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* Mavi overlay (masaüstü) */
.testimonials-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, rgba(77, 183, 227, 0.9) 85%, rgba(255, 255, 255, 0) 85%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .testimonials-wrapper::before {
    width: 100%;
    /* Eski: mor rgba(64, 31, 78, 0.74) — Yeni: mavi */
    background: rgba(77, 183, 227, 0.9);
  }
}

/* Slider alanı */
.testimonials-slider {
  padding: 2em 2em 1.5em; 
}

@media (max-width: 768px) {
  .testimonials-slider {
    padding: 1.2em 1em 1em; 
  }
}


/* Açılış tırnak işareti */
.quote-icon {
  font-size: 50px;
  color: white;
  margin-bottom: 0.5em;
  line-height: 1;
  font-family: Georgia, serif;
}

@media (max-width: 768px) {
  .quote-icon {
    font-size: 30px;
    margin-bottom: 0.5em;
  }
}

/* Carousel çerçevesi */
.testimonials-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 150px;
}

@media (max-width: 768px) {
  .testimonials-carousel {
    min-height: 200px;
    width: 100%;
  }
}

/* Kaydırma hattı */
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  will-change: transform;
}

/* Her bir kart */
.testimonial {
  flex-shrink: 0;
  width: 100%;
  padding-right: 2em;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .testimonial {
    padding-right: 0;
    padding-bottom: 1em;
    width: 100%;
  }
}

/* İçerik */
.testimonial-content {
  font-size: 16px;
  margin-bottom: 1.5em;
  line-height: 1.6;
  color: white;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .testimonial-content {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 1em;
  }
}

/* Yazar satırı */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: white;
  flex-wrap: wrap;
  max-width: 100%;
}

@media (max-width: 768px) {
  .testimonial-author {
    gap: 8px;
    font-size: 11px;
  }
}

/* Logo / görsel — taşma güvenliği */
.testimonial-author img {
  max-height: 50px;
  height: auto;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 768px) {
  .testimonial-author img {
    max-height: 30px;
  }
}

.testimonial-author > div {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.testimonial-author strong {
  display: inline-block;
  word-break: break-word;
}

/* Yıldızlar */
.stars {
  color: #FFC107;
  font-size: 14px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .stars {
    font-size: 10px;
    margin-left: 3px;
  }
}

/* CTA kutusu */
.cta-box {
  background: white url('../images/diagonal-lines.png');
  padding: 3em;
  border-bottom: 4px solid #1A9FDB;
  box-shadow: 0 10px 40px -5px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
  animation: fadeInLeft 0.8s ease;
  box-sizing: border-box;
  max-width: 100%;
}

@media (max-width: 768px) {
  .cta-box {
    padding: 1.5em 1em;
    margin: 0.5em 0 0;
    width: 100%;
  }
}

.cta-box h3 {
  font-size: 24px;
  margin-bottom: 1em;
  font-family: 'Raleway', sans-serif;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .cta-box h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 0.7em;
  }
}

.cta-box p {
  margin-bottom: 1.5em;
  line-height: 1.6;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .cta-box p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 1em;
  }
}

@media (max-width: 768px) {
  .cta-box .btn {
    width: 100%;
    font-size: 13px;
    padding: 12px 15px;
    box-sizing: border-box;
  }
}

/* (Opsiyonel) küçük cihazlarda fazladan güvenlik için konteynerleri taşmadan koru */
.testimonials, 
.testimonials .container,
.testimonials-wrapper,
.testimonials-slider,
.testimonials-carousel,
.cta-box {
  max-width: 100%;
  overflow-x: hidden;
}

/* Corporate Section */
.corporate-section {
    padding: 4em 0 4em;
    overflow: hidden;
}

@media (max-width: 768px) {
    .corporate-section {
        padding: 3em 1em 1em;
    }
}

.corporate-wrapper {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 2em;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 768px) {
    .corporate-wrapper {
        grid-template-columns: 1fr;
    }
}

.corporate-content {
    display: flex;
    align-items: center;
    gap: 3em;
}

@media (max-width: 768px) {
    .corporate-content {
        flex-direction: column;
        gap: 1.5em;
    }
}

.corporate-title {
    padding-right: 3em;
    position: relative;
}

.corporate-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: #1A9FDB;
}

@media (max-width: 768px) {
    .corporate-title {
        border-right: none;
        padding-right: 0;
        padding-bottom: 1.5em;
        text-align: center;
    }
    
    .corporate-title::after {
        left: 50%;
        right: auto;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        width: 50%;
        height: 1px;
    }
}

.corporate-title h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    animation: fadeInLeft 0.8s ease;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

.corporate-link {
    color: #1A9FDB;
    text-decoration: none;
    font-size: 16px;
    animation: fadeIn 0.8s ease 0.72s;
    animation-fill-mode: both;
    pointer-events: none;
    cursor: default;
}

.corporate-button {
    animation: fadeInRight 0.8s ease;
}

@media (max-width: 768px) {
    .corporate-button {
        text-align: center;
    }
}

.corporate-button .btn {
    background: #333;
    color: white;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .corporate-button .btn {
        white-space: normal;
    }
}

.corporate-button .btn:hover {
    background: white;
    color: #333;
    border: 1px solid #333;
}

/* Form Section */
.form-section {
    background: #F5F5F5;
    padding: 20px 0 70px;
    text-align: center;
}
@media (max-width: 768px) {
    .form-section {
        padding: 20px 0 20px;
    }
}

/* Adım Göstergesi */
.steps-indicator {
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
@media (max-width: 768px) {
    .steps-indicator {
        max-width: 90%;
        gap: 5px;
    }
}
.steps-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    flex: 1;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}
@media (max-width: 768px) {
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}
.step-item.active .step-number {
    background: #1399D8;
    color: white;
    transform: scale(1.15);
}
.step-item.completed .step-number {
    background: #0d7ab8;
    color: white;
}
.step-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .step-text {
        font-size: 10px;
        max-width: 70px;
    }
}
.step-item.active .step-text {
    color: #1399D8;
    font-weight: bold;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 0.5em;
    animation: fadeInUp 0.8s ease;
    font-family: 'Raleway', sans-serif;
    color: #333;
}
@media (max-width: 768px) {
    .form-section h2 {
        font-size: 26px;
    }
}

.form-section .subtitle {
    margin-bottom: 30px;
    font-size: 16px;
    color: #666;
}
@media (max-width: 768px) {
    .form-section .subtitle {
        font-size: 14px;
        padding: 0 1em;
    }
}

.form-divider {
    width: 280px;
    height: 4px;
    background: #1399D8;
    margin: 0 auto 30px;
}
@media (max-width: 768px) {
    .form-divider {
        width: 140px;
    }
}

.registration-form {
    max-width: 50%;
    margin: 0 auto;
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .registration-form {
        max-width: 90%;
        padding: 1.5em;
    }
}

.registration-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .registration-form .form-row {
        grid-template-columns: 1fr;
    }
}

.registration-form .form-group {
    width: 100%;
    position: relative;
}

.registration-form .form-group label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 500;
}

.registration-form .form-group input,
.registration-form .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s;
    background: white;
    color: #333;
}

.registration-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.registration-form .form-group input:focus,
.registration-form .form-group select:focus {
    outline: none;
    border-color: #1399D8;
}

.registration-form .btn-submit {
    width: 100%;
    background: #1399D8;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(19, 153, 216, 0.3);
    position: relative;
}
@media (max-width: 768px) {
    .registration-form .btn-submit {
        font-size: 16px;
        padding: 15px 20px;
    }
}

.registration-form .btn-submit:hover {
    background: #0d7ab8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 153, 216, 0.4);
}

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

/* Buton içinde fiyat */
.btn-price-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
}

.btn-old-price {
    text-decoration: line-through;
    font-size: 14px;
    opacity: 0.9;
    margin-left: 10px;
}

/* Bilgilendirme Notu */
.info-note {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    text-align: left;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .info-note {
        font-size: 12px;
        padding: 10px;
        max-width: 90%;
    }
}

/* FAQ Section */
.faq {
    display: grid;
    grid-template-columns: 33% 66.66%;
    gap: 2em;
    padding: 4em 1em 7em;
    max-width: 1260px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq {
        grid-template-columns: 1fr;
        padding: 2em 1em 2.5em;
    }
}

.faq-intro h2 {
    font-size: 25px;
    margin-bottom: 0.5em;
    animation: fadeInUp 0.8s ease;
    font-family: 'Raleway', sans-serif;
}

.faq-intro-divider {
    width: 50px;
    height: 4px;
    background: #10912B;
    margin-top: 1em;
}

@media (max-width: 768px) {
    .faq-intro-divider {
        width: 40px;
    }
}

.faq-list {
    animation: fadeInRight 0.8s ease;
}

.faq-item {
    background: white;
    border: 1px solid #DADADA;
    margin-bottom: 15px;
    border-radius: 0;
}

@media (max-width: 768px) {
    .faq-item {
        margin-bottom: 10px;
    }
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #727272;
    background: white;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
}

.faq-item.active .faq-question {
    background: #1A9FDB;
    color: white;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #727272;
    font-size: 16px;
    line-height: 1.5;
    background: white;
}

@media (max-width: 768px) {
    .faq-answer {
        font-size: 14px;
    }
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .faq-icon {
        font-size: 17px;
    }
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ============================================
   KURUMSAL SAYFASI CSS
   ============================================ */

/* Corporate Requests Hero Section */
.corporate-requests-hero {
    background: #5A9AB8;  /* Düz mavi renk */
    padding: 8em 1em 6em;
    color: white;
    width: 100%;
}

@media (max-width: 768px) {
    .corporate-requests-hero {
        padding: 5em 0.5em 2em;
    }
}

.corporate-hero-content {
    animation: fadeInUp 0.8s ease;
    max-width: 1300px;
    margin: 0 auto;
    text-align: left;  /* Sola yasla */
}

.corporate-hero-content h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 49px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.3em;
    color: #FFFFFF;
    text-transform: capitalize;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .corporate-hero-content h1 {
        font-size: 30px;
        letter-spacing: 0;
    }
}

.corporate-hero-content .subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

@media (max-width: 768px) {
    .corporate-hero-content .subtitle {
        font-size: 15px;
    }
}

/* Form Section */
.corporate-form-section {
    padding: 3em 1em;
    width: 100%;
}

@media (max-width: 768px) {
    .corporate-form-section {
        padding: 2em 1em;
    }
}

.form-content-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 3em;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form-content-grid {
        grid-template-columns: 1fr;
        gap: 2em;
    }
}

.form-info h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    margin-bottom: 0.5em;
    color: #333;
}

@media (max-width: 768px) {
    .form-info h2 {
        font-size: 26px;
    }
}

.form-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 768px) {
    .form-info p {
        font-size: 14px;
    }
}

.form-container {
    width: 100%;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .form-row-half {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }
}

.form-row-half .form-group {
    width: 100%;
    position: relative;
}

.form-row-half .form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-row-half .form-group input:focus {
    outline: none;
    border-color: #1399D8;
}

.form-row-half .error-message {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.btn-submit-corporate {
    width: 100%;
    background: #1399D8;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.btn-submit-corporate:hover {
    background: #0d7ab8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-submit-corporate {
        font-size: 14px;
        padding: 12px 20px;
    }
}

#corporateFormMessage {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    display: none;
    grid-column: 1 / -1;
}

#corporateFormMessage.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#corporateFormMessage.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ============================================
   BA���ARILI ���DEME SAYFA Y���NLEND���RME
   ============================================ */

.success-redirect-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em 1em;
    background: linear-gradient(135deg, #1399D8 0%, #0d7ab8 100%);
}

@media (max-width: 768px) {
    .success-redirect-section {
        padding: 1.5em 0.5em;
    }
}

.success-redirect-content {
    background: white;
    padding: 2em 2.5em;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@media (max-width: 768px) {
    .success-redirect-content {
        padding: 1.2em 0.8em;
        border-radius: 12px;
    }
}

/* Success Message */
.success-message {
    margin-bottom: 1.5em;
}

@media (max-width: 768px) {
    .success-message {
        margin-bottom: 1em;
    }
}

.success-icon {
    font-size: 50px;
    color: #10912B;
    margin-bottom: 0.2em;
    animation: scaleIn 0.6s ease;
}

@media (max-width: 768px) {
    .success-icon {
        font-size: 35px;
        margin-bottom: 0.1em;
    }
}

.success-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #333;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .success-title {
        font-size: 16px;
    }
}

/* Web Layout - Yatay (Countdown + Instructions) */
@media (min-width: 769px) {
    .content-wrapper {
        display: grid;
        grid-template-columns: 35% 65%;
        gap: 2em;
        align-items: center;
        margin-bottom: 1.5em;
    }
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 1.5em;
}

@media (min-width: 769px) {
    .countdown-section {
        margin-bottom: 0;
        border-right: 1px solid #e0e0e0;
        padding-right: 2em;
    }
}

@media (max-width: 768px) {
    .countdown-section {
        margin-bottom: 1em;
    }
}

.loader-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 0.8em;
}

@media (max-width: 768px) {
    .loader-circle {
        width: 60px;
        height: 60px;
        margin: 0 auto 0.5em;
    }
}

.circular-loader {
    width: 100%;
    height: 100%;
    animation: rotate 2s linear infinite;
}

.loader-path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 700;
    color: #1399D8;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 768px) {
    .countdown-number {
        font-size: 24px;
    }
}

.redirect-text {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .redirect-text {
        font-size: 12px;
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Instructions Box */
.instructions-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 1.2em;
    border-radius: 10px;
    border-left: 3px solid #1399D8;
    margin-bottom: 1em;
    text-align: left;
}

@media (max-width: 768px) {
    .instructions-box {
        padding: 0.8em;
        border-radius: 8px;
        margin-bottom: 0.8em;
    }
}

.instructions-box h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #1399D8;
    margin-bottom: 0.6em;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .instructions-box h3 {
        font-size: 13px;
        margin-bottom: 0.4em;
    }
}

.instruction-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.6em;
}

@media (max-width: 768px) {
    .instruction-content p {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 0.4em;
    }
}

.instruction-content p:last-child {
    margin-bottom: 0;
}

.instruction-content strong {
    color: #333;
    font-weight: 600;
}

.instruction-content .highlight {
    background: white;
    padding: 0.6em;
    border-radius: 6px;
    color: #10912B;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .instruction-content .highlight {
        font-size: 10px;
        padding: 0.5em;
        gap: 4px;
    }
}

.instruction-content .highlight i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .instruction-content .highlight i {
        font-size: 12px;
    }
}

/* Manual Redirect */
.manual-redirect {
    padding-top: 1em;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .manual-redirect {
        padding-top: 0.8em;
    }
}

.manual-redirect p {
    font-size: 12px;
    color: #777;
    margin-bottom: 0.6em;
}

@media (max-width: 768px) {
    .manual-redirect p {
        font-size: 10px;
        margin-bottom: 0.4em;
    }
}

.manual-redirect .btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 768px) {
    .manual-redirect .btn {
        font-size: 11px;
        padding: 8px 16px;
        gap: 4px;
    }
}

.manual-redirect .btn-primary {
    background: #10912B;
    color: white;
}

.manual-redirect .btn-primary:hover {
    background: #0d7a24;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 145, 43, 0.3);
}/* ============================================
   BA���ARILI ���DEME SAYFA Y���NLEND���RME
   ============================================ */

.success-redirect-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em 1em;
    background: linear-gradient(135deg, #1399D8 0%, #0d7ab8 100%);
}

@media (max-width: 768px) {
    .success-redirect-section {
        padding: 1.5em 0.5em;
    }
}

.success-redirect-content {
    background: white;
    padding: 2em 2.5em;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@media (max-width: 768px) {
    .success-redirect-content {
        padding: 1.2em 0.8em;
        border-radius: 12px;
    }
}

/* Success Message */
.success-message {
    margin-bottom: 1.5em;
}

@media (max-width: 768px) {
    .success-message {
        margin-bottom: 1em;
    }
}

.success-icon {
    font-size: 50px;
    color: #10912B;
    margin-bottom: 0.2em;
    animation: scaleIn 0.6s ease;
}

@media (max-width: 768px) {
    .success-icon {
        font-size: 35px;
        margin-bottom: 0.1em;
    }
}

.success-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #333;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .success-title {
        font-size: 16px;
    }
}

/* Web Layout - Yatay (Countdown + Instructions) */
@media (min-width: 769px) {
    .content-wrapper {
        display: grid;
        grid-template-columns: 35% 65%;
        gap: 2em;
        align-items: center;
        margin-bottom: 1.5em;
    }
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 1.5em;
}

@media (min-width: 769px) {
    .countdown-section {
        margin-bottom: 0;
        border-right: 1px solid #e0e0e0;
        padding-right: 2em;
    }
}

@media (max-width: 768px) {
    .countdown-section {
        margin-bottom: 1em;
    }
}

.loader-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 0.8em;
}

@media (max-width: 768px) {
    .loader-circle {
        width: 60px;
        height: 60px;
        margin: 0 auto 0.5em;
    }
}

.circular-loader {
    width: 100%;
    height: 100%;
    animation: rotate 2s linear infinite;
}

.loader-path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 700;
    color: #1399D8;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 768px) {
    .countdown-number {
        font-size: 24px;
    }
}

.redirect-text {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .redirect-text {
        font-size: 12px;
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Instructions Box */
.instructions-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 1.2em;
    border-radius: 10px;
    border-left: 3px solid #1399D8;
    margin-bottom: 1em;
    text-align: left;
}

@media (max-width: 768px) {
    .instructions-box {
        padding: 0.8em;
        border-radius: 8px;
        margin-bottom: 0.8em;
    }
}

.instructions-box h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #1399D8;
    margin-bottom: 0.6em;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .instructions-box h3 {
        font-size: 13px;
        margin-bottom: 0.4em;
    }
}

.instruction-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.6em;
}

@media (max-width: 768px) {
    .instruction-content p {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 0.4em;
    }
}

.instruction-content p:last-child {
    margin-bottom: 0;
}

.instruction-content strong {
    color: #333;
    font-weight: 600;
}

.instruction-content .highlight {
    background: white;
    padding: 0.6em;
    border-radius: 6px;
    color: #10912B;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .instruction-content .highlight {
        font-size: 10px;
        padding: 0.5em;
        gap: 4px;
    }
}

.instruction-content .highlight i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .instruction-content .highlight i {
        font-size: 12px;
    }
}

/* Manual Redirect */
.manual-redirect {
    padding-top: 1em;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .manual-redirect {
        padding-top: 0.8em;
    }
}

.manual-redirect p {
    font-size: 12px;
    color: #777;
    margin-bottom: 0.6em;
}

@media (max-width: 768px) {
    .manual-redirect p {
        font-size: 10px;
        margin-bottom: 0.4em;
    }
}

.manual-redirect .btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 768px) {
    .manual-redirect .btn {
        font-size: 11px;
        padding: 8px 16px;
        gap: 4px;
    }
}

.manual-redirect .btn-primary {
    background: #10912B;
    color: white;
}

.manual-redirect .btn-primary:hover {
    background: #0d7a24;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 145, 43, 0.3);
}

/* ============================================
   HATA SAYFASI (ERROR PAGE)
   ============================================ */

.error-redirect-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em 1em;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

@media (max-width: 768px) {
    .error-redirect-section {
        padding: 1.5em 0.5em;
    }
}

.error-redirect-content {
    background: white;
    padding: 2em 2.5em;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@media (max-width: 768px) {
    .error-redirect-content {
        padding: 1.2em 0.8em;
        border-radius: 12px;
    }
}

/* Error Message */
.error-message {
    margin-bottom: 1.5em;
}

@media (max-width: 768px) {
    .error-message {
        margin-bottom: 1em;
    }
}

.error-icon {
    font-size: 50px;
    color: #dc3545;
    margin-bottom: 0.2em;
    animation: shakeError 0.6s ease;
}

@media (max-width: 768px) {
    .error-icon {
        font-size: 35px;
        margin-bottom: 0.1em;
    }
}

.error-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #333;
    font-weight: 700;
    margin: 0 0 0.3em 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 16px;
    }
}

.error-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .error-subtitle {
        font-size: 13px;
    }
}

@keyframes shakeError {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

/* Error specific countdown */
.error-redirect-section .loader-path {
    stroke: #dc3545;
}

.error-redirect-section .countdown-number {
    color: #dc3545;
}

/* Error Instructions Box */
.error-redirect-section .instructions-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 3px solid #dc3545;
}

.error-redirect-section .instructions-box h3 {
    color: #dc3545;
}

.error-redirect-section .instructions-box h3 i {
    color: #dc3545;
}

.error-redirect-section .instruction-content ul {
    list-style: none;
    padding: 0;
    margin: 0.8em 0;
}

.error-redirect-section .instruction-content ul li {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.4em;
    padding-left: 1.2em;
    position: relative;
}

@media (max-width: 768px) {
    .error-redirect-section .instruction-content ul li {
        font-size: 11px;
    }
}

.error-redirect-section .instruction-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.error-redirect-section .instruction-content .highlight {
    background: white;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.error-redirect-section .instruction-content .highlight i {
    color: #dc3545;
}

/* Error Button */
.manual-redirect .btn-danger {
    background: #dc3545;
    color: white;
}

.manual-redirect .btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

/* ============================================
   SERTİFİKA SORGULAMA SAYFASI
   ============================================ */

/* Content Section */
.sertifika-content-section {
    padding: 2em 1em;
    background: #f5f7fa;
    min-height: calc(100vh - 200px);
}

@media (max-width: 768px) {
    .sertifika-content-section {
        padding: 1.5em 0.5em;
    }
}

/* Status Card */
.status-card {
    background: white;
    border-radius: 15px;
    padding: 2em;
    margin-bottom: 1.5em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5em;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease;
}

@media (max-width: 768px) {
    .status-card {
        flex-direction: column;
        padding: 1.5em;
        gap: 1em;
        text-align: center;
        align-items: center;
    }
}

.status-icon {
    font-size: 50px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .status-icon {
        font-size: 45px;
    }
}

.status-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    .status-content h3 {
        font-size: 20px;
    }
}

.status-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0.5em;
    color: #555;
}

@media (max-width: 768px) {
    .status-content p {
        font-size: 14px;
    }
}

.status-note {
    font-size: 13px !important;
    color: #777 !important;
    font-style: italic;
}

/* Status Colors */
.status-error .status-icon {
    color: #dc3545;
}

.status-error {
    border-left: 5px solid #dc3545;
}

.status-success .status-icon {
    color: #10912B;
}

.status-success {
    border-left: 5px solid #10912B;
}

.status-warning .status-icon {
    color: #ffc107;
}

.status-warning {
    border-left: 5px solid #ffc107;
}

/* Register Button */
.btn-register {
    display: inline-block;
    padding: 12px 25px;
    background: #10912B;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 1em;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .btn-register {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.btn-register:hover {
    background: #0d7a24;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 145, 43, 0.3);
}

/* Contact Info */
.contact-info {
    display: flex;
    gap: 12px;
    margin-top: 1em;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-info {
        justify-content: center;
    }
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #1399D8;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 153, 216, 0.3);
}

.contact-link.whatsapp {
    background: #25D366;
}

.contact-link.whatsapp:hover {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* View Certificate Button */
.btn-view-certificate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #dc3545;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 1em;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .btn-view-certificate {
        font-size: 15px;
        padding: 10px 25px;
    }
}

.btn-view-certificate:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

/* Query Box */
.sertifika-query-box {
    background: white;
    border-radius: 15px;
    padding: 2em;
    margin-bottom: 1.5em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .sertifika-query-box {
        padding: 1.5em;
    }
}

.query-box-header {
    text-align: center;
    margin-bottom: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.query-box-header i {
    font-size: 28px;
    color: #1399D8;
}

@media (max-width: 768px) {
    .query-box-header i {
        font-size: 24px;
    }
}

.query-box-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .query-box-header h2 {
        font-size: 22px;
    }
}

/* Query Form */
.sertifika-query-form .form-group {
    margin-bottom: 1.2em;
}

.sertifika-query-form label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5em;
}

.sertifika-query-form .form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

.sertifika-query-form .form-input:focus {
    outline: none;
    border-color: #1399D8;
    box-shadow: 0 0 0 3px rgba(19, 153, 216, 0.1);
}

.btn-submit-query {
    width: 100%;
    padding: 12px;
    background: #1399D8;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-submit-query:hover {
    background: #0d7ab8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(19, 153, 216, 0.3);
}

/* Info Card - En Altta ve Küçük */
.info-card {
    background: linear-gradient(135deg, #1399D8 0%, #0d7ab8 100%);
    color: white;
    border-radius: 12px;
    padding: 1.5em;
}

@media (max-width: 768px) {
    .info-card {
        padding: 1.2em;
    }
}

.info-header {
    text-align: center;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-header i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .info-header i {
        font-size: 20px;
    }
}

.info-header h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    margin: 0;
}

@media (max-width: 768px) {
    .info-header h3 {
        font-size: 18px;
    }
}

/* Info Grid - 2x2 layout küçük */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8em;
}

@media (max-width: 768px) {
    .info-grid {
        gap: 0.7em;
    }
}

.info-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.9em;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 768px) {
    .info-item {
        padding: 0.8em;
    }
}

.info-item-icon {
    font-size: 22px;
    margin-bottom: 0.3em;
}

@media (max-width: 768px) {
    .info-item-icon {
        font-size: 20px;
    }
}

.info-item-content h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    margin-bottom: 0.3em;
    font-weight: 700;
}

@media (max-width: 768px) {
    .info-item-content h4 {
        font-size: 13px;
    }
}

.info-item-content p {
    font-size: 12px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .info-item-content p {
        font-size: 11px;
    }
}/* ============================================
   SHINY CTA BUTTON STYLES
   ============================================ */

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

.shiny-cta {
  --shiny-cta-bg: #10912B;
  --shiny-cta-bg-subtle: #0d7a24;
  --shiny-cta-fg: #ffffff;
  --shiny-cta-highlight: #10912B;
  --shiny-cta-highlight-subtle: #52c752;
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 18px 40px;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  text-decoration: none;
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
    conic-gradient(
        from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
        transparent,
        var(--shiny-cta-highlight) var(--gradient-percent),
        var(--gradient-shine) calc(var(--gradient-percent) * 2),
        var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
        transparent calc(var(--gradient-percent) * 4)
      ) border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
  transition: all 0.3s;
}

.shiny-cta:hover,
.shiny-cta:focus,
.shiny-cta:active,
.shiny-cta:visited {
  text-decoration: none;
  color: var(--shiny-cta-fg);
  outline: none;
}

.shiny-cta::before,
.shiny-cta::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.shiny-cta:active {
  translate: 0 1px;
}

/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
      circle at var(--position) var(--position),
      white calc(var(--position) / 4),
      transparent 0
    ) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    -50deg,
    transparent,
    var(--shiny-cta-highlight),
    transparent
  );
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.shiny-cta span {
  z-index: 1;
  position: relative;
  text-decoration: none;
}

/* Animate */
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine;
}

.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
  animation: var(--animation) var(--duration),
    var(--animation) calc(var(--duration) / 0.4) reverse paused;
  animation-composition: add;
}

.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
}

.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}

/* Giriş Yap Butonu */
.btn-login {
    background: #FF6B35;
    color: #FFFFFF;
}

.btn-login:hover {
    background: #E55A2B;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
        padding: 0 0.5em;
        margin-top: 1em;
    }
    
    .shiny-cta {
        grid-column: 1 / -1;
        width: 100%;
        font-size: 17px;
        font-weight: 700;
        padding: 16px 25px;
        order: 3;
    }
    
    .btn-secondary {
        grid-column: 1;
        order: 1;
    }
    
    .btn-login {
        grid-column: 2;
        order: 2;
    }
    
    .btn-secondary,
    .btn-login {
        width: 100%;
        font-size: 13px;
        padding: 12px 10px;
        gap: 4px;
    }
    
    .btn-secondary i,
    .btn-login i {
        font-size: 11px;
    }
}

/* =============== CSS-ONLY PERFORMANCE & A11Y PACK (appended) =============== */

/* 1) Offscreen bölümleri tarayıcıdan sakla (scrollda otomatik açılır) */
.references,
.steps-container,
.edevlet-section,
.features,
.about,
.testimonials,
.corporate-section,
.form-section,
.faq,
.success-redirect-section,
.error-redirect-section,
.sertifika-content-section {
  content-visibility: auto;
  contain-intrinsic-size: 800px; /* sayfa ilk açılışta yer tutucu */
}

/* 2) Hero ve ağır bölümlerde motion azaltma desteği */
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .steps-intro h2,
  .step-header,
  .about-image,
  .cta-box,
  .corporate-button,
  .faq-list,
  .success-redirect-content,
  .error-redirect-content {
    animation: none !important;
    transition: none !important;
  }
}

/* 3) Klavye erişilebilirliği: belirgin focus stili */
:focus-visible {
  outline: 3px solid #FFD54F;
  outline-offset: 2px;
}

/* 4) CLS düşürme: yaygın görsel alanları için aspect-ratio yer tutucu */
.logo-item img { 
  aspect-ratio: 3 / 1;
}
.feature img { 
  aspect-ratio: 1 / 1; 
}
.about-image img {
  aspect-ratio: 5 / 2;
}

/* 5) Mobilde LCP düşürme: ağır arka plan görselini sadeleştir */
@media (max-width: 768px) {
  .hero {
    background-image: linear-gradient(290deg, #401F4E47 0%, #106791 100%);
    background-size: cover;
    background-position: 50% 30%;
  }
  .testimonials-wrapper {
    background-image: none !important;
  }
}

/* 6) Ağır gölgeleri hafiflet (CPU dostu) */
.step-header { box-shadow: 0 3px 12px -6px rgba(0,0,0,0.18); }
.cta-box { box-shadow: 0 6px 18px rgba(0,0,0,0.14); }
.success-redirect-content,
.error-redirect-content { box-shadow: 0 10px 28px rgba(0,0,0,0.16); }

/* 7) Transition’ları sadeleştir (repaint maliyeti) */
.btn, .manual-redirect .btn, .btn-submit, .btn-submit-corporate, .btn-register, .btn-view-certificate {
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

/* 8) Kontrast yükseltme: açık zemin üstü metinler */
.feature-content p { color: #555; } /* #666 → #555 */
.faq-question { color: #5f5f5f; }   /* #727272 → biraz daha koyu */
.status-note { color: #666 !important; } /* #777 → #666 */

/* 9) Shiny CTA: erişilebilirlik ve CPU için hareket kontrolü */
@media (prefers-reduced-motion: reduce) {
  .shiny-cta,
  .shiny-cta::before,
  .shiny-cta::after {
    animation: none !important;
  }
}

/* 10) Yazı tipi fallback’lerini güçlendir (FOIT etkisini azaltır) */
body, .btn, .registration-form input, .registration-form select, .manual-redirect .btn {
  font-family: 'Roboto', 'Helvetica Neue', Arial, system-ui, -apple-system, Segoe UI, sans-serif;
}
.hero h1, .steps-intro h2, .about-content h2, .corporate-hero-content h1, .form-info h2, .info-header h3, .status-content h3 {
  font-family: 'Raleway', 'Helvetica Neue', Arial, system-ui, -apple-system, Segoe UI, sans-serif;
}
