﻿/* Global Styles */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --accent-color: #FF9800;
    --text-color: #333333;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

    a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-darker {
    background-color: #212529;
}
.navbar-flower-bg {
    background-image: url('/images/flowers-bg.jpg'); /* Görselin yolunu buraya yazın */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

    .nav-link.active {
        color: var(--primary-color) !important;
    }


/* Hero Section with Carousel */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

#heroCarousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .carousel-item:nth-child(1) {
        background-image: url('/images/image-1.jpg');
    }

    .carousel-item:nth-child(2) {
        background-image: url('/images/image-2.jpg');
    }

    .carousel-item:nth-child(3) {
        background-image: url('/images/image-3.jpg');
    }

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 90%;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 1rem;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

.carousel-indicators {
    z-index: 3;
}

.carousel-control-prev, .carousel-control-next {
    z-index: 3;
    width: 10%;
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Check List */
.check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

    .check-list li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 0.5rem;
    }

        .check-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }

/* Cards */
.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    height: 100%;
}

.card-title {
    color: var(--text-color);
    font-weight: 600;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--light-bg);
}

.testimonial-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

    .testimonial-author img {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }

    .testimonial-author h5 {
        margin-bottom: 0;
        font-weight: 600;
    }

    .testimonial-author small {
        color: var(--text-muted);
    }

/* CTA Section */
.cta-section {
    background-color: var(--primary-light);
}

/* Footer */
.footer {
    background-color: #343a40;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        background-color: var(--primary-color);
        color: white !important;
        text-decoration: none;
    }

/* About Page */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50px;
        width: 2px;
        background-color: var(--primary-color);
    }

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 2rem;
}

.timeline-number {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    z-index: 1;
}

.certification-logos img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

    .certification-logos img:hover {
        filter: grayscale(0);
        opacity: 1;
    }

/* Services Page */
.service-card {
    display: flex;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
}

.service-icon {
    flex: 0 0 80px;
    margin-right: 2rem;
}

.service-content {
    flex: 1;
}

.pricing-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-10px);
    }

    .pricing-card.featured {
        border: 2px solid var(--primary-color);
        transform: scale(1.05);
    }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pricing-features ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

    .pricing-features li:last-child {
        border-bottom: none;
    }

.pricing-footer {
    text-align: center;
}

/* Testimonials Page */
.testimonial-card-large {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid var(--primary-light);
}

.testimonial-info h3 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.rating {
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.testimonial-results {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.video-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

    .video-placeholder img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .play-button i {
        color: var(--primary-color);
        font-size: 1.5rem;
    }

    .play-button:hover {
        background-color: white;
    }

.video-info {
    padding: 1.5rem;
}

/* Contact Page */
.contact-info {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
}

.contact-method {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    flex: 0 0 50px;
    margin-right: 1rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-media h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background-color: var(--primary-color);
        color: white;
        text-decoration: none;
    }

.contact-form-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Appointment Page */
.appointment-info {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
}

.appointment-step {
    display: flex;
    margin-bottom: 2rem;
}

.step-number {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.appointment-form-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
}

.option-badges .badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
}

.insurance-list {
    list-style: none;
    padding-left: 0;
}

    .insurance-list li {
        margin-bottom: 0.5rem;
    }

/* Confirmation Pages */
.confirmation-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.confirmation-icon {
    margin-bottom: 2rem;
}

.confirmation-steps {
    max-width: 500px;
    margin: 0 auto;
}

    .confirmation-steps li {
        padding: 0.5rem 0;
        position: relative;
    }

/* Carousel Animation */
.carousel-item {
    transition: transform 1.2s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity;
}

    .carousel-fade .carousel-item.active,
    .carousel-fade .carousel-item-next.carousel-item-start,
    .carousel-fade .carousel-item-prev.carousel-item-end {
        opacity: 1;
    }

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .testimonial-results {
        flex-direction: column;
    }

    .result-item {
        margin-bottom: 1rem;
    }
}
/* Blog Styles */
.blog-header {
    background-color: var(--primary-light);
    padding: 3rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--primary-color);
    }

.blog-card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-5px);
    }

    .blog-card .card-img-top {
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
        height: 200px;
        object-fit: cover;
    }

.blog-meta {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 1rem;
}

.blog-date {
    color: var(--text-muted);
}

.blog-post-item {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

    .blog-post-item h3 {
        margin: 0.5rem 0;
    }

        .blog-post-item h3 a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .blog-post-item h3 a:hover {
                color: var(--primary-color);
            }

.blog-author {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

    .sidebar-widget h4 {
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

        .sidebar-widget h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

    .sidebar-widget ul li {
        margin-bottom: 0.75rem;
    }

        .sidebar-widget ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .sidebar-widget ul li a:hover {
                color: var(--primary-color);
            }

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .tag:hover {
        background-color: var(--primary-color);
        color: white;
        text-decoration: none;
    }

/* Single Blog Post */
.blog-single-header {
    background-color: var(--primary-light);
    padding: 3rem 0;
}

    .blog-single-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.blog-featured-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.blog-content {
    line-height: 1.8;
}

    .blog-content h3 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .blog-content p {
        margin-bottom: 1.5rem;
    }

    .blog-content ul, .blog-content ol {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .blog-content li {
        margin-bottom: 0.5rem;
    }

.blog-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-share {
    display: flex;
}

    .social-share .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--light-bg);
        color: var(--text-color);
        border-radius: 50%;
        margin-right: 0.75rem;
        transition: all 0.3s ease;
    }

        .social-share .social-icon:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }

.blog-author-bio {
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
}

.blog-comments {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.comment-form {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-single-header h1 {
        font-size: 2rem;
    }

    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

