:root {
    --primary-color: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    --secondary-color: #10B981; /* Zeor'X Standard Rengi - Yeşil */
    --plus-color: #F97316; /* Zeor'X Plus Rengi - Turuncu */
    --dark-color: #1E293B;
    --light-color: #F8FAFC;
    --grey-color: #94A3B8;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #4F46E5 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #0EA5E9 100%); /* Zeor'X Standard Gradient */
    --gradient-plus: linear-gradient(135deg, var(--plus-color) 0%, #EC4899 100%); /* Zeor'X Plus Gradient */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

section {
    padding: 100px 0;
    position: relative;
}

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

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary.btn-zeorx {
    background: var(--gradient-secondary);
}

.btn-primary.btn-zeorx:hover {
    background: linear-gradient(135deg, #0EA5E9 0%, #059669 100%);
}

.btn-primary.btn-zeorx-plus {
    background: var(--gradient-plus);
}

.btn-primary.btn-zeorx-plus:hover {
    background: linear-gradient(135deg, #FB923C 0%, #DB2777 100%);
}

.btn-outline-secondary {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--grey-color);
}

.btn-outline-secondary:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Header */
.header {
    padding: 20px 0;
    transition: var(--transition);
    background-color: #fff;
    z-index: 1000;
}

.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-toggler {
    color: var(--dark-color);
    border: none;
    font-size: 24px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    position: relative;
    z-index: 1100;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 10px 20px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 30px;
}

.btn-siparis {
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    margin-left: 10px;
    transition: var(--transition);
}

.btn-siparis:hover {
    background: linear-gradient(135deg, #3171D8 0%, #4338CA 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(170deg, #EFF6FF 0%, #F8FAFC 100%);
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
    position: relative;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(96, 165, 250, 0.3);
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    font-weight: 500;
    color: var(--grey-color);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    background-color: white;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

.section-title p {
    font-size: 18px;
    color: var(--grey-color);
    max-width: 700px;
    margin: 0 auto;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--grey-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Benefits Section - Yeni Kullanıcı Grubu Kartları */
.benefit-card.user-group-card {
    overflow: hidden;
    padding-top: 0;
    position: relative;
    min-height: 320px;
    border: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.benefit-card.user-group-card .benefit-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    margin: 0;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card.user-group-card .benefit-icon i {
    font-size: 24px;
}

.benefit-card.user-group-card .user-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.benefit-card.user-group-card .user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-card.user-group-card:hover .user-image img {
    transform: scale(1.1);
}

.benefit-card.user-group-card .overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.benefit-card.user-group-card h3 {
    position: absolute;
    bottom: 110px;
    left: 25px;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.benefit-card.user-group-card p {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    color: var(--dark-color);
    font-size: 15px;
    line-height: 1.5;
    z-index: 3;
}

.benefit-card.user-group-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Uyumlu Tasarım İçin */
@media (max-width: 991px) {
    .benefit-card.user-group-card {
        min-height: 300px;
        margin-bottom: 30px;
    }
    
    .benefit-card.user-group-card h3 {
        bottom: 90px;
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .benefit-card.user-group-card {
        min-height: 280px;
    }
    
    .benefit-card.user-group-card h3 {
        bottom: 80px;
        font-size: 20px;
    }
    
    .benefit-card.user-group-card p {
        font-size: 14px;
    }
}

/* Products Section */
.products-section {
    background-color: #F1F5F9;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
}

.products-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    z-index: 1;
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-card.premium {
    border: 2px solid var(--plus-color);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-plus);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.product-image {
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
    text-align: center;
}

.product-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-description {
    color: var(--grey-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 10px;
}

.feature span {
    font-size: 16px;
}

.product-price {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
    position: relative;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FBBF24;
    font-size: 20px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--grey-color);
}

/* Order Section */
.order-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.order-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

/* Steps */
.order-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 auto 30px;
    max-width: 800px;
    flex-direction: row;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid var(--grey-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--grey-color);
    margin-bottom: 10px;
    transition: var(--transition);
}

.step.active .step-circle {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-sm);
}

.step-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--grey-color);
    transition: var(--transition);
}

.step.active .step-text {
    color: var(--secondary-color);
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: var(--grey-color);
    margin: 0 15px;
    position: relative;
    top: -25px;
}

.step.active ~ .progress-line {
    background: linear-gradient(to right, var(--secondary-color) 0%, var(--grey-color) 100%);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Product Selection */
.product-selection {
    margin-bottom: 30px;
}

.product-option {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    height: 100%;
    border: 2px solid transparent;
    overflow: hidden;
}

.product-option:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-option.active {
    border-color: var(--primary-color);
}

.product-check {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.product-option-image {
    text-align: center;
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-option-image img {
    max-height: 100%;
}

.product-option-info {
    text-align: center;
}

.product-option-info h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.product-option-info .price {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-option-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-option.active .product-option-check {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Order Summary */
.order-summary {
    background-color: #F8FAFC;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 30px;
}

.order-summary h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 10px;
    border-top: 2px solid #E2E8F0;
    border-bottom: none;
}

#selected-product-name, #summary-product {
    color: var(--dark-color);
}

/* Sipariş özetinde ürünlere göre renk ayarı */
[data-product="zeorx"] ~ .order-summary #selected-total,
.form-step3 #summary-total {
    color: var(--secondary-color) !important;
}

[data-product="zeorx-plus"] ~ .order-summary #selected-total {
    color: var(--plus-color) !important;
}

/* İndirim rengi - Turuncu ürün seçildiğinde farklı renk olsun */
[data-product="zeorx-plus"].active ~ .order-summary #discount-amount,
[data-product="zeorx-plus"].active ~ .order-summary .text-success {
    color: var(--plus-color) !important;
}

[data-product="zeorx"].active ~ .order-summary #discount-amount,
[data-product="zeorx"].active ~ .order-summary .text-success {
    color: var(--secondary-color) !important;
}

/* Payment Options */
.payment-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    flex: 1;
    min-width: 120px;
}

.btn-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius);
    background-color: white;
    transition: var(--transition);
}

.btn-payment i {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--grey-color);
}

.btn-payment span {
    font-weight: 600;
}

.btn-check:checked + .btn-payment {
    border-color: var(--primary-color);
    background-color: #EFF6FF;
    color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.btn-check:checked + .btn-payment i {
    color: var(--primary-color);
}

.btn-payment:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* About Section */
.about-section {
    background-color: white;
    position: relative;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-content {
    padding: 20px 0;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-features .feature {
    margin-bottom: 15px;
}

.about-features .feature i {
    font-size: 24px;
    color: var(--primary-color);
}

.about-features .feature span {
    font-size: 17px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #1E293B;
    padding: 80px 0 30px;
    color: #E2E8F0;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.footer-brand p {
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 20px;
    color: white;
}

.footer-links h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.footer-links ul {
    padding: 0;
}

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

.footer-links ul li a {
    color: #94A3B8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #94A3B8;
}

.footer-contact p i {
    margin-right: 15px;
    font-size: 20px;
    color: var(--primary-light);
}

.copyright {
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94A3B8;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #3171D8 0%, #4338CA 100%);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }

    .hero-section {
        padding-top: 120px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .benefit-card {
        margin-bottom: 30px;
    }

    .product-card {
        margin-bottom: 30px;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }

    .about-image {
        margin-bottom: 40px;
    }

    .about-content {
        text-align: center;
    }

    .about-features .feature {
        justify-content: center;
    }

    .btn-siparis {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 36px;
    }

    .hero-title {
        font-size: 40px;
    }

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

    .footer {
        padding: 60px 0 30px;
    }

    .footer-brand, .footer-links, .footer-contact {
        margin-bottom: 40px;
    }

    .order-form-container {
        padding: 30px;
    }
    
    .order-steps {
        flex-direction: row;
        gap: 5px;
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    
    .step {
        flex: 0 0 auto;
        margin: 0 5px;
    }
    
    .progress-line {
        width: 20px;
        height: 3px;
        flex: 0 0 auto;
    }
    
    .payment-method {
        padding: 15px;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
    }
    
    .payment-icon i {
        font-size: 20px;
    }
}

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

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .about-content h2 {
        font-size: 30px;
    }
    
    .order-form-container {
        padding: 20px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Form Control Styles */
.form-floating {
    margin-bottom: 5px;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: 60px;
    padding: 1rem 0.75rem;
}

.form-floating>label {
    padding: 1rem 0.75rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Navigation Buttons */
.form-navigation {
    margin-top: 30px;
}

.btn-next,
.btn-prev {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.order-final-summary {
    border: 1px solid #E2E8F0;
}

/* Product Selection */
.product-option[data-product="zeorx"] .product-option-check,
.product-option[data-product="zeorx"].active {
    border-color: var(--secondary-color);
}

.product-option[data-product="zeorx"] .product-option-check {
    background-color: var(--secondary-color);
}

.product-option[data-product="zeorx-plus"] .product-option-check,
.product-option[data-product="zeorx-plus"].active {
    border-color: var(--plus-color);
}

.product-option[data-product="zeorx-plus"] .product-option-check {
    background-color: var(--plus-color);
}

.product-option[data-product="zeorx"] .product-option-info .price {
    color: var(--secondary-color);
}

.product-option[data-product="zeorx-plus"] .product-option-info .price {
    color: var(--plus-color);
}

.product-option[data-product="zeorx-plus"] .product-badge {
    background: var(--gradient-plus);
}

.product-option[data-product="zeorx"] .product-badge {
    background: var(--gradient-secondary);
}

.summary-label {
    color: var(--grey-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.summary-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 0;
}

/* Sipariş adımları için renk değişimleri */
#form-step1.active ~ .form-navigation .btn-primary {
    background: var(--gradient-secondary);
}

#form-step1.active ~ .form-navigation .btn-primary:hover {
    background: linear-gradient(135deg, #0EA5E9 0%, #059669 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3171D8 0%, #4338CA 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Adım göstergesi renkleri */
.product-option[data-product="zeorx"].active ~ .form-navigation .btn-primary,
.form-step:has(.product-option[data-product="zeorx"].active) ~ .form-step .btn-primary {
    background: var(--gradient-secondary);
}

.product-option[data-product="zeorx-plus"].active ~ .form-navigation .btn-primary,
.form-step:has(.product-option[data-product="zeorx-plus"].active) ~ .form-step .btn-primary {
    background: var(--gradient-plus);
}

/* Adım çemberlerinin renkleri */
.product-option[data-product="zeorx"].active ~ .form-steps .step.active .step-circle {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.2);
}

.product-option[data-product="zeorx-plus"].active ~ .form-steps .step.active .step-circle {
    background-color: var(--plus-color);
    border-color: var(--plus-color);
    box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.2);
}

/* Form adımları ve adım göstergeleri ilişkisi */
#form-step1.active ~ .form-navigation .btn-next {
    background: var(--gradient-secondary);
}

#form-step2.active ~ .form-navigation .btn-next,
#form-step2.active ~ .form-navigation .btn-prev {
    background: var(--gradient-secondary);
}

#form-step3.active ~ .form-navigation .btn-prev,
#form-step3.active ~ .form-navigation button[type="submit"] {
    background: var(--gradient-secondary);
}

/* Aktif olan ürün Plus ise butonları turuncu yap */
.product-option[data-product="zeorx-plus"].active ~ .form-navigation .btn-next,
.product-option[data-product="zeorx-plus"].active ~ .form-navigation button[type="submit"] {
    background: var(--gradient-plus);
}

/* Kargo Seçimi Stilleri */
#form-step3 .shipping-options .shipping-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

#form-step3 .shipping-options .shipping-label {
    display: block;
    padding: 20px;
    background-color: #fff;
    border: 2px solid var(--grey-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

#form-step3 .shipping-options .shipping-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

#form-step3 .shipping-options .shipping-info {
    text-align: center;
    position: relative;
    z-index: 1;
}

#form-step3 .shipping-options .shipping-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

#form-step3 .shipping-options .shipping-fee {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Hover ve Seçili Durumlar */
#form-step3 .shipping-options .shipping-label:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

#form-step3 .shipping-options .shipping-label:hover::before {
    transform: translateX(0);
}

#form-step3 .shipping-options .btn-check:checked + .shipping-label {
    border-color: var(--secondary-color);
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.05), rgba(14, 165, 233, 0.05));
    box-shadow: var(--shadow-sm);
}

#form-step3 .shipping-options .btn-check:checked + .shipping-label::before {
    transform: translateX(0);
}

#form-step3 .shipping-options .btn-check:checked + .shipping-label .shipping-name {
    color: var(--secondary-color);
}

/* PLUS SEÇİLİ OLDUĞUNDA KARGO STİLLERİ - OVERRIDE */
body:has(.product-option[data-product="zeorx-plus"].active) #form-step3 .shipping-options .shipping-label::before {
    background: var(--gradient-plus) !important;
}

body:has(.product-option[data-product="zeorx-plus"].active) #form-step3 .shipping-options .shipping-label:hover {
    border-color: var(--plus-color) !important;
}

body:has(.product-option[data-product="zeorx-plus"].active) #form-step3 .shipping-options .btn-check:checked + .shipping-label {
    border-color: var(--plus-color) !important;
    background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.05), rgba(236, 72, 153, 0.05)) !important;
}

body:has(.product-option[data-product="zeorx-plus"].active) #form-step3 .shipping-options .btn-check:checked + .shipping-label .shipping-name {
    color: var(--plus-color) !important;
}

body:has(.product-option[data-product="zeorx-plus"].active) #form-step3 .shipping-options .shipping-fee {
    color: var(--plus-color) !important;
}

/* PLUS SEÇİLİ OLDUĞUNDA ADIM GÖSTERGESİ - OVERRIDE */
body:has(.product-option[data-product="zeorx-plus"].active) .order-steps .step.active .step-circle {
    background: var(--gradient-plus) !important;
    border-color: transparent !important;
}

body:has(.product-option[data-product="zeorx-plus"].active) .order-steps .step.active .step-text {
    color: var(--plus-color) !important;
}

body:has(.product-option[data-product="zeorx-plus"].active) .order-steps .step.active ~ .progress-line {
    background: linear-gradient(to right, var(--plus-color) 0%, var(--grey-color) 100%) !important;
}

/* PLUS SEÇİLİ OLDUĞUNDA BUTON RENKLERİ - OVERRIDE */
body:has(.product-option[data-product="zeorx-plus"].active) .btn-primary {
    background: var(--gradient-plus) !important;
}

body:has(.product-option[data-product="zeorx-plus"].active) .btn-primary:hover {
    background: linear-gradient(135deg, #FB923C 0%, #DB2777 100%) !important;
}

/* Dil Seçici Stili */
.language-switcher .nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

/* Dil seçici dropdown butonu için hover efektini kaldırma */
.nav-link.no-after::after {
    display: none !important;
}

.language-switcher .dropdown-menu {
    min-width: 180px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.language-switcher .dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}

.language-switcher .dropdown-item:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.language-switcher .dropdown-item.active {
    background-color: rgba(59, 130, 246, 0.15);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

/* fi bayrak sınıfları için ek stil */
.fi {
    margin-right: 5px;
    border-radius: 2px;
    width: 24px !important; 
    height: 18px !important;
}

.language-name {
    font-weight: 500;
}

/* Arabic Language Support */
html[dir="rtl"] .header .navbar-nav {
    margin-left: 0 !important;
    margin-right: auto !important;
}

html[dir="rtl"] .language-switcher .dropdown-item {
    text-align: right;
}

html[dir="rtl"] .hero-buttons {
    justify-content: flex-start;
}

html[dir="rtl"] .hero-buttons .btn-primary {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .benefit-card, 
html[dir="rtl"] .testimonial-card, 
html[dir="rtl"] .product-card {
    text-align: right;
}

html[dir="rtl"] .form-navigation {
    flex-direction: row-reverse;
}

html[dir="rtl"] .btn-next i {
    transform: rotate(180deg);
    margin-right: 0.5rem;
    margin-left: 0;
}

html[dir="rtl"] .btn-prev i {
    transform: rotate(180deg);
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Responsive Design for Language Switcher */
@media (max-width: 767px) {
    .language-name {
        display: none !important;
    }
    
    .language-switcher .nav-link {
        padding: 0.5rem;
    }
}

/* Ingredients Section Styles */
.ingredients-section {
    background-color: #f8fafc;
    padding: 80px 0;
    position: relative;
}

.ingredient-cards {
    margin-top: 30px;
}

.ingredient-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
    position: relative;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ingredient-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.2);
}

.ingredient-card.featured:hover {
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}

.ingredient-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.ingredient-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.ingredient-info {
    padding: 20px;
}

.ingredient-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.ingredient-card.featured .ingredient-info h3 {
    color: var(--primary-color);
}

.ingredient-info p {
    color: var(--grey-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.ingredient-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.ingredient-more i {
    font-size: 18px;
    margin-left: 5px;
    transition: var(--transition);
}

.ingredient-card:hover .ingredient-more {
    color: var(--primary-dark);
}

.ingredient-card:hover .ingredient-more i {
    transform: translateX(5px);
}

/* Modal Styles */
.ingredient-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.ingredient-modal .modal-header {
    background: var(--gradient-primary);
    color: white;
    border-bottom: none;
    padding: 15px 20px;
}

.ingredient-modal .modal-title {
    font-weight: 700;
    font-size: 22px;
}

.ingredient-modal .btn-close {
    color: white;
    opacity: 1;
    box-shadow: none;
}

.ingredient-modal .modal-body {
    padding: 25px;
}

.ingredient-modal .modal-body h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.ingredient-modal .modal-body ul {
    margin-bottom: 20px;
    padding-left: 0;
    list-style-type: none;
}

.ingredient-modal .modal-body ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
    display: flex;
    align-items: center;
}

.ingredient-modal .modal-body ul li i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-right: 8px;
}

/* Modal türüne göre chevron icon rengini değiştir */
.modal-header.zeorx-plus-header ~ .modal-body ul li i {
    color: var(--plus-color) !important;
}

.tab-content:has(#zeorx-plus-ingredients.active) .ingredient-modal .modal-body ul li i {
    color: var(--plus-color) !important;
}

body:has(.product-option[data-product="zeorx-plus"].active) .ingredient-modal .modal-body ul li i {
    color: var(--plus-color) !important;
}

.modal-header.zeorx-header ~ .modal-body ul li i {
    color: var(--secondary-color);
}

body:has(.product-option[data-product="zeorx"].active) .ingredient-modal .modal-body ul li i {
    color: var(--secondary-color);
}

.tab-content:has(#zeorx-ingredients.active) .ingredient-modal .modal-body ul li i {
    color: var(--secondary-color);
}

.ingredient-modal .modal-body p {
    color: var(--grey-color);
    line-height: 1.6;
}

.ingredient-modal .modal-footer {
    border-top: none;
    padding: 15px 20px 20px;
}

.ingredient-modal .btn-secondary {
    background-color: var(--grey-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 20px;
}

.ingredient-modal .btn-secondary:hover {
    background-color: var(--dark-color);
}

/* Product-Specific Modal Styles */
body:has(.product-option[data-product="zeorx-plus"].active) .ingredient-modal .modal-header {
    background: var(--gradient-plus);
}

body:has(.product-option[data-product="zeorx"].active) .ingredient-modal .modal-header {
    background: var(--gradient-secondary);
}

/* Tab sistemine göre modal header renkleri */
.tab-pane#zeorx-plus-ingredients.active ~ .ingredient-modal .modal-header,
.tab-pane#zeorx-plus-ingredients.active:has(~ .modal.show) .modal-header,
.tab-content:has(#zeorx-plus-ingredients.active) ~ .ingredient-modal .modal-header {
    background: var(--gradient-plus);
}

.tab-pane#zeorx-ingredients.active ~ .ingredient-modal .modal-header,
.tab-pane#zeorx-ingredients.active:has(~ .modal.show) .modal-header,
.tab-content:has(#zeorx-ingredients.active) ~ .ingredient-modal .modal-header {
    background: var(--gradient-secondary);
}

/* JavaScript ile eklenecek sınıflar */
.modal-header.zeorx-plus-header {
    background: var(--gradient-plus) !important;
}

.modal-header.zeorx-header {
    background: var(--gradient-secondary) !important;
}

/* Responsive Adjustments for Ingredients Section */
@media (max-width: 991px) {
    .ingredient-card {
        margin-bottom: 20px;
    }
    
    .ingredient-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .ingredient-image {
        height: 200px;
    }
    
    .ingredient-modal .modal-dialog {
        margin: 10px;
    }
}

@media (max-width: 575px) {
    .ingredients-section {
        padding: 60px 0;
    }
    
    .ingredient-info h3 {
        font-size: 18px;
    }
    
    .ingredient-modal .modal-body .row {
        flex-direction: column;
    }
    
    .ingredient-modal .modal-body .col-md-5 {
        margin-bottom: 20px;
    }
}

/* Ingredients Teaser Section */
.ingredients-teaser {
    padding: 70px 0;
    background-color: white;
    text-align: center;
    position: relative;
}

.teaser-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.teaser-text {
    font-size: 18px;
    color: var(--grey-color);
    max-width: 700px;
    margin: 0 auto 30px;
}

.teaser-buttons {
    margin-bottom: 40px;
}

.teaser-images {
    margin-top: 20px;
}

.teaser-image {
    text-align: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.teaser-image:hover {
    transform: translateY(-5px);
}

.teaser-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--primary-light);
    padding: 3px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.teaser-image:hover img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.teaser-image span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Responsive styles for Ingredients Teaser */
@media (max-width: 991px) {
    .teaser-image img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .ingredients-teaser {
        padding: 50px 0;
    }
    
    .teaser-title {
        font-size: 28px;
    }
    
    .teaser-text {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .teaser-image img {
        width: 70px;
        height: 70px;
    }
}

/* Product Ingredients Tabs */
.product-ingredients-tabs {
    margin-bottom: 40px;
}

.product-ingredients-tabs .nav-pills {
    margin-bottom: 2rem;
    border-radius: 50px;
    display: inline-flex;
    background-color: rgba(240, 240, 240, 0.6);
    padding: 5px;
}

.product-ingredients-tabs .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.product-ingredients-tabs .nav-link:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.product-ingredients-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* Zeor'X Plus vs Standard Tab Styles */
.product-ingredients-tabs .nav-link#zeorx-plus-tab.active {
    background: var(--gradient-plus);
}

.product-ingredients-tabs .nav-link#zeorx-tab.active {
    background: var(--gradient-secondary);
}

.product-ingredients-tabs .tab-content {
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.ingredients-overview {
    transition: all 0.5s ease;
}

.ingredients-overview h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ingredients-overview .lead {
    font-size: 18px;
    color: var(--grey-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Tab Content Animation */
.tab-pane.fade {
    transition: opacity 0.3s linear;
}

/* Responsive Adjustments for Ingredient Tabs */
@media (max-width: 768px) {
    .product-ingredients-tabs .nav-pills {
        flex-direction: row;
        width: 100%;
    }
    
    .product-ingredients-tabs .nav-link {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .ingredients-overview h3 {
        font-size: 24px;
    }
    
    .ingredients-overview .lead {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .product-ingredients-tabs .nav-pills {
        flex-wrap: wrap;
        background: none;
        padding: 0;
    }
    
    .product-ingredients-tabs .nav-link {
        margin-bottom: 10px;
    }
    
    .ingredients-overview img {
        max-height: 150px !important;
    }
}

/* ÇARKIFELEK TARZI YENİ BENEFITS SECTİON STYLES */
.benefits-layout {
    margin-top: 50px;
}

.wheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

.wheel-outer-border {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4338CA 0%, #3B82F6 50%, #10B981 100%);
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    overflow: hidden;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    left: 50%;
    transform-origin: bottom left;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
}

/* Segment renkleri ve açıları - Tüm segmentler için düzeltme */
.segment-1 { transform: rotate(0deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-1 .segment-bg { background: linear-gradient(135deg, #3498db, #2980b9); }

.segment-2 { transform: rotate(36deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-2 .segment-bg { background: linear-gradient(135deg, #e74c3c, #c0392b); }

.segment-3 { transform: rotate(72deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-3 .segment-bg { background: linear-gradient(135deg, #2ecc71, #27ae60); }

.segment-4 { transform: rotate(108deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-4 .segment-bg { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

.segment-5 { transform: rotate(144deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-5 .segment-bg { background: linear-gradient(135deg, #f1c40f, #f39c12); }

.segment-6 { transform: rotate(180deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-6 .segment-bg { background: linear-gradient(135deg, #1abc9c, #16a085); }

.segment-7 { transform: rotate(216deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-7 .segment-bg { background: linear-gradient(135deg, #e67e22, #d35400); }

.segment-8 { transform: rotate(252deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-8 .segment-bg { background: linear-gradient(135deg, #34495e, #2c3e50); }

.segment-9 { transform: rotate(288deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-9 .segment-bg { background: linear-gradient(135deg, #f39c12, #e67e22); }

.segment-10 { transform: rotate(324deg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.segment-10 .segment-bg { background: linear-gradient(135deg, #3498db, #2980b9); }

.wheel-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.wheel-segment:hover::before {
    opacity: 1;
}

.wheel-segment.clicking {
    animation: segment-click 0.3s forwards;
}

@keyframes segment-click {
    0% { transform: scale(1) rotate(var(--rotation)); }
    50% { transform: scale(0.95) rotate(var(--rotation)); }
    100% { transform: scale(1) rotate(var(--rotation)); }
}

.segment-1 { --rotation: 0deg; }
.segment-2 { --rotation: 36deg; }
.segment-3 { --rotation: 72deg; }
.segment-4 { --rotation: 108deg; }
.segment-5 { --rotation: 144deg; }
.segment-6 { --rotation: 180deg; }
.segment-7 { --rotation: 216deg; }
.segment-8 { --rotation: 252deg; }
.segment-9 { --rotation: 288deg; }
.segment-10 { --rotation: 324deg; }

.wheel-segment.active {
    z-index: 3;
}

.wheel-segment.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.4) inset;
    animation: pulse-active 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

@keyframes pulse-active {
    0% { box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.4) inset; }
    50% { box-shadow: 0 0 30px 8px rgba(255, 255, 255, 0.6) inset; }
    100% { box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.4) inset; }
}

.wheel-segment.active .segment-icon {
    transform: scale(1.3);
    text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.8);
    animation: icon-pulse 1.5s infinite;
}

@keyframes icon-pulse {
    0% { transform: scale(1.3); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1.3); }
}

.wheel-segment.active .segment-content {
    transform: translate(-50%, -50%) rotate(-18deg) scale(1.2);
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.7));
}

.segment-content {
    position: absolute;
    color: white;
    text-align: center;
    z-index: 5;
    transition: all 0.3s ease;
}

/* Her segment için özel içerik konumlandırması */
.segment-1 .segment-content {
    top: 15%;
    left: 15%;
    transform: translate(-50%, -50%) rotate(-18deg);
}

.segment-2 .segment-content {
    top: 15%;
    left: 20%;
    transform: translate(-50%, -50%) rotate(-54deg);
}

.segment-3 .segment-content {
    top: 20%;
    left: 22%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.segment-4 .segment-content {
    top: 25%;
    left: 20%;
    transform: translate(-50%, -50%) rotate(-126deg);
}

.segment-5 .segment-content {
    top: 25%;
    left: 15%;
    transform: translate(-50%, -50%) rotate(-162deg);
}

.segment-6 .segment-content {
    top: 20%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(-198deg);
}

.segment-7 .segment-content {
    top: 15%;
    left: 8%;
    transform: translate(-50%, -50%) rotate(-234deg);
}

.segment-8 .segment-content {
    top: 10%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(-270deg);
}

.segment-9 .segment-content {
    top: 10%;
    left: 15%;
    transform: translate(-50%, -50%) rotate(-306deg);
}

.segment-10 .segment-content {
    top: 10%;
    left: 20%;
    transform: translate(-50%, -50%) rotate(-342deg);
}

.segment-icon {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Spesifik ikonların boyutlarını ayarla */
.segment-1 .segment-icon i {
    font-size: 1.3rem;
}

.segment-3 .segment-icon i {
    font-size: 1.3rem;
}

.segment-10 .segment-icon i {
    font-size: 1.2rem;
}

.wheel-segment:hover .segment-icon {
    transform: scale(1.2);
}

.wheel-segment.active .segment-icon {
    transform: scale(1.3);
    text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.8);
    animation: icon-pulse 1.5s infinite;
}

@keyframes icon-pulse {
    0% { transform: scale(1.3); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1.3); }
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4338CA 0%, #3B82F6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.wheel-logo {
    width: 80%;
    height: auto;
    filter: brightness(0) invert(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.wheel-pointer {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: #4338CA;
    z-index: 20;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.wheel-pointer.top-pointer {
    top: -20px;
}

/* Hedef Kitle Kartları */
.audience-info {
    position: relative;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
    display: flex;
    align-items: center;
}

.benefits-layout .row {
    align-items: center;
}

.audience-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.audience-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.audience-content p {
    color: #666;
    margin-bottom: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.carousel-control-prev {
    left: -5px;
}

.carousel-control-next {
    right: -5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-color);
}

/* Carousel Styles */
.carousel {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.carousel-inner {
    border-radius: 10px;
}

.carousel-item {
    padding: 1rem;
}

.audience-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.audience-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.audience-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    min-height: 4rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.carousel-control-prev {
    left: -5px;
}

.carousel-control-next {
    right: -5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-color);
}

/* Carousel responsiveness */
@media (max-width: 768px) {
    .audience-card {
        margin-bottom: 1rem;
    }
}

/* Yatay Kart Düzeni */
.audience-card.d-flex {
    flex-direction: row;
    align-items: center;
}

.audience-card .audience-image {
    width: 40%;
    margin-right: 15px;
    margin-bottom: 0;
}

.audience-card .audience-content {
    width: 60%;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .audience-card.d-flex {
        flex-direction: column;
    }
    
    .audience-card .audience-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .audience-card .audience-content {
        width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    /* existing code */
    
    .audience-card.d-flex {
        flex-direction: column;
    }
    
    .audience-card .audience-image {
        width: 100% !important;
        margin-bottom: 15px;
    }
    
    .audience-card .audience-content {
        width: 100% !important;
    }
    
    /* existing code */
}

/* Mobil dil seçici stilleri */
@media (max-width: 991px) {
    .language-switcher .dropdown-menu {
        min-width: auto;
        padding: 8px 0;
    }
    
    .language-switcher .nav-link {
        padding: 6px 10px;
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 4px;
    }
}

/* Navbar'daki dil seçici konumu */
.navbar .d-flex.d-lg-none .language-switcher {
    margin-right: 5px;
}

/* Dil seçici dropdown */
.language-switcher .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 160px;
    border: none;
}

/* Dil seçici mobil görünüm ayarları */
@media (max-width: 991px) {
    .navbar-brand {
        flex: 1;
    }
    
    .d-flex.align-items-center {
        width: 100%;
        justify-content: space-between;
    }
    
    .language-switcher .nav-link {
        padding: 6px 10px;
        margin-right: 10px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 4px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Dil seçicinin stillerini düzenleme */
.language-switcher .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 160px;
    border: none;
}

.language-switcher .dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--dark-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-switcher .dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-switcher .dropdown-item.active {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
}

/* Dil switcher masaüstünde en sağda olacak */
@media (min-width: 992px) {
    .navbar-nav .language-switcher {
        margin-left: 15px;
    }
}

