.btn-group-toggle .btn {
    border-radius: 20px;
    padding: 8px 20px;
}

.btn-group-toggle .btn.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.plan-title-group {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.plan-price-group {
    text-align: right;
    flex-shrink: 0;
    margin-left: 1rem;
    margin-right: 0.5rem; /* Fiyat ile ikon arasına boşluk ekle */
}

.plan-name {
    white-space: nowrap;
}

/* Landing Page CSS */

/* General Styles */
:root {
    --primary-color: #4A6FDC;
    --secondary-color: #3558B6;
    --success-color: #37C6AB;
    --danger-color: #FF5370;
    --warning-color: #FFB64D;
    --info-color: #4FC3F7;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 5px;
    transition: color 0.3s ease;
}

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

/* Gallery Section */
.gallery-section { background:#fff; padding-top:60px; padding-bottom:60px; }
.gallery-section .section-header { margin-bottom:30px; }
/* Gallery display (Mode 4 chosen: full image, auto height) */
.gallery-slide-img-wrapper { width:100%; height:auto; display:flex; align-items:center; justify-content:center; background:#ffffff; position:relative; }
.gallery-slide-img { width:100%; height:auto; object-fit:contain; image-rendering:auto; }
@media (max-width: 992px){ .gallery-slide-img-wrapper { height:400px; } }
@media (max-width: 768px){ .gallery-slide-img-wrapper { height:300px; } }
@media (max-width: 576px){ .gallery-slide-img-wrapper { height:240px; } }
.gallery-section .carousel-inner { border-radius:12px; }
.gallery-section .carousel-indicators [data-bs-target] { background-color:#4A6FDC; width:10px; height:10px; border-radius:50%; }
.gallery-section .carousel-control-prev-icon,
.gallery-section .carousel-control-next-icon { filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); }
.gallery-section .carousel-control-prev,
.gallery-section .carousel-control-next { width:8%; }
.gallery-nav-btn { background:rgba(0,0,0,0.45); color:#fff; width:48px; height:48px; display:flex; align-items:center; justify-content:center; border-radius:50%; font-size:20px; transition:background .25s, transform .25s; }
.gallery-nav-btn:hover { background:rgba(0,0,0,0.65); transform:scale(1.05); }
@media (max-width: 768px){ .gallery-nav-btn { width:40px; height:40px; font-size:16px; } }

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.hero-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features-section {
    background-color: #fff;
}

.feature-card {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
}

/* Pricing Section */
.pricing-section {
    background-color: #f9f9f9;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: #f5f5f5;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
    color: var(--success-color);
}

.pricing-features li.disabled {
    color: #999;
}

.pricing-features li.disabled i {
    color: #ccc;
}

.pricing-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-info p {
    color: #666;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: #fff;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    background-color: #fff;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    background-color: #fff;
}

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

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(74, 111, 220, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: #666;
    margin: 0;
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: none;
}

/* Footer Section */
.footer-section {
    background-color: #333;
    color: #fff;
    padding: 80px 0 20px;
}

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

.footer-logo h3 {
    margin: 0;
    font-size: 1.8rem;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 12px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom-links li {
    display: inline-block;
    margin-left: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .footer-section h4 {
        margin-top: 30px;
    }
    
    .footer-bottom-links li {
        margin-left: 10px;
    }
}

/* Pricing Accordion Section */
.pricing-accordion-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-accordion-section .accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-accordion-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    display: block !important;
}

.pricing-accordion-section .accordion-header {
    background: none;
}

.pricing-accordion-section .accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.pricing-accordion-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.pricing-accordion-section .accordion-button:not(.collapsed) .plan-price-group .text-primary {
    color: #fff !important;
}

.pricing-accordion-section .accordion-button:hover {
    background-color: #f8f9fa;
}

.pricing-accordion-section .accordion-button:not(.collapsed):hover {
    background-color: var(--secondary-color);
}

.pricing-accordion-section .accordion-button::after {
    margin-left: auto;
}

.pricing-accordion-section .accordion-button:focus {
    box-shadow: none;
}

.pricing-accordion-section .accordion-body {
    padding: 30px;
    background-color: #fff;
}

.pricing-accordion-section .pricing-box {
    padding: 20px;
}

.pricing-accordion-section .pricing-box h4 {
    margin-bottom: 20px;
}

.pricing-accordion-section .pricing-box .btn {
    margin-top: 20px;
}

.pricing-accordion-section .badge {
    font-size: 12px;
    padding: 5px 10px;
    font-weight: 500;
}

.pricing-accordion-section .list-unstyled li {
    padding: 5px 0;
}

.pricing-accordion-section .list-unstyled li i {
    width: 20px;
}

/* Accordion responsive styles */
@media (max-width: 767px) {
    .pricing-accordion-section .accordion-body {
        padding: 20px;
    }
    
    .pricing-accordion-section .pricing-box {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
}
