body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    background-color: #f4f4f9;
}

header {
    background-color: #333;
    color: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Üst bar tasarımı */
.top-bar {
    background-color: #333; /* Arka plan rengi */
    color: #fff;
    padding: 0px 20px 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    border-bottom: 1px solid #444; /* Alt çizgi ile bölmek */
}

.top-bar .socials {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* padding-left: 20px; */
}

.top-bar .socials a {
    margin-right: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

.top-bar .socials a:hover {
    color: #ff5722;
}

.top-bar .contact-info-header {
    flex: 2;
    text-align: left;
}

.top-bar .language-options {
    flex: 1;
    text-align: right;
    padding-right: 20px;
}

.top-bar .language-options select {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}


/* Logo Stili */
.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo h1 a {
    text-decoration: none;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo h1 a:hover {
    background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menü */
nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover {
    color: #ff5722;
    /* background-color: rgba(255, 87, 34, 0.1); */
}

nav a:hover::after {
    transform: scaleX(1);
}

/* Header CTA Button */
header .cta-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

header .cta-button:hover {
    background: linear-gradient(135deg, #e64a19 0%, #ff5722 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

.hero {
    background-image: url('../images/hero-background-2.webp');
    /* Arka plan resmi */
    background-size: cover;
    /* Resim, alanı tamamen kaplar */
    background-position: center;
    /* Resim ortalanır */
    background-repeat: no-repeat;
    /* Resim tekrar etmez */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    /* Yarı saydam arka plan filtresi */
    z-index: 1;
}

.hero h1,
.hero p,
.hero button {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Hero CTA Button için eski stil kaldırıldı - header .cta-button kullanılıyor */

section {
    padding: 60px 20px;
    /* width: 100vw; */
    /* Section arka planı tüm genişliği kaplasın */
    position: relative;
    left: 50%;
    /* Ortalamak için */
    transform: translateX(-50%);
    /* Ortalamak için */
}

.section-content {
    max-width: 1200px;
    /* İçeriği sınırlı genişlikte tutmak için */
    margin: 0 auto;
    /* İçeriği ortala */
    padding: 0 20px;
    /* İçerik sağ ve sol boşluğu */
}


.features,
.how-it-works,
.pricing,
.testimonials {
    text-align: center;
}

.features h2,
.how-it-works h2,
.pricing h2,
.testimonials h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.features .section-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.features .feature {
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.features .feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #ff5722;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.features .feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.features .feature h3 {
    color: #ff5722;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.features .feature p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.how-it-works .section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.how-it-works .step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 35px 25px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
}

.how-it-works .step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #ff5722;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 20px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.how-it-works .step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.how-it-works .step h3 {
    color: #ff5722;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.how-it-works .step p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.step-arrow {
    font-size: 2rem;
    color: #ff5722;
    flex-shrink: 0;
}

.step-arrow i {
    animation: slideRight 1.5s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@media (max-width: 768px) {
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

.features {
    background-color: #efefef;
}

.pricing {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works {
    background-color: #efefef;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan {
    background-color: #fff;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #ff5722;
}

.plan-header {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    padding: 25px 20px;
    text-align: center;
    color: #fff;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: 700;
}

.plan-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 5px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.plan-price {
    padding: 25px 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-price p {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
}

.plan-features {
    padding: 25px 20px;
    flex-grow: 1;
}

.plan-features ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.plan-features ul li {
    font-size: 0.95rem;
    color: #555;
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.plan-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff5722;
    font-weight: bold;
    font-size: 1.1rem;
}

.plan-footer {
    padding: 20px;
    background-color: #f8f9fa;
    margin-top: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Plan Butonları */
.btn-buy {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
    letter-spacing: 0.5px;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #e64a19 0%, #ff5722 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

.btn-demo {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: #ff5722;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #ff5722;
    letter-spacing: 0.5px;
}

.btn-demo:hover {
    background-color: #fff5f2;
    transform: translateY(-2px);
}


.testimonials {
    background-color: #f0f4ff;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    transition: transform 0.5s ease-in-out;
    /* Geçiş efektini ekledik */
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-slide p {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
}

.demo-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.demo-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.demo-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.demo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 400px;
    text-align: left;
}

.demo-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.demo-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.demo-qr img {
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form,
.contact-info {
    /* background-color: #fff; */
    /* padding: 30px; */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 20px);
}

.contact-form h3,
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.contact-form form button {
    padding: 15px 30px;
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form form button:hover {
    background-color: #e64a19;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 20px 0;
}

.contact-info .socials a {
    color: #333;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.contact-info .socials a:hover {
    color: #ff5722;
}


footer {
    background-color: #333;
    color: #fff;
    padding: 50px 20px;
}

/* Footer düzenlemeleri */
.footer-section.legal {
    flex: 1 1 200px;
    margin: 20px;
}

.footer-section.legal h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section.legal p {
    line-height: 1.6;
    font-size: 0.9rem;
    color: #ccc;
}


.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 200px;
    margin: 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff5722;
}

.footer-section .newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.footer-section .newsletter button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ff5722;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-section .newsletter button:hover {
    background-color: #e64a19;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 20px auto 0;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .socials a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-bottom .socials a:hover {
    color: #ff5722;
}

/* Footer düzenlemeleri */
.footer-bottom .language-options {
    display: inline-block;
    margin-left: 20px;
}

.footer-bottom .language-options select {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 5px;
    border-radius: 5px;
}