:root {
    --primary-color: #0f6345;
    --secondary-color: #f8a100;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --primary-light: #1a7d59; /* Daha açık yeşil ton */
    --primary-dark: #084d35; /* Daha koyu yeşil ton */
    --primary-bg-light: rgba(15, 99, 69, 0.1); /* Transparan yeşil arka plan */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-brand img {
    height: 45px;
}

.navbar .nav-link {
    font-weight: 500;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-link:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar .nav-link:hover:before,
.navbar .nav-link.active:before {
    width: calc(100% - 30px);
}

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

.navbar-contact {
    display: flex;
    align-items: center;
}

.navbar-contact-item {
    display: flex;
    align-items: center;
}

.navbar-contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

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

.navbar-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.navbar-contact-link:hover .navbar-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.navbar-contact-label {
    display: block;
    font-size: 12px;
    color: #777;
    line-height: 1;
}

.navbar-contact-info {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.language-selector a {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.language-selector a.active,
.language-selector a:hover {
    opacity: 1;
}

.language-selector img {
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.language-selector a:hover img {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .navbar .nav-link:before {
        display: none;
    }
    
    .navbar .nav-link {
        padding: 12px 15px !important;
        border-radius: 5px;
    }
    
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background-color: var(--primary-bg-light);
    }
    
    .language-selector {
        margin-bottom: 15px;
    }
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
}

.hero-badge span {
    display: flex;
    align-items: center;
}

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

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

.hero-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
}

.hero-feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-hero-primary:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(15, 99, 69, 0.4);
}

.btn-hero-primary:hover:before {
    width: 100%;
}

.btn-hero-primary i {
    transition: all 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid #ddd;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: var(--dark-color);
    color: white;
    border-color: var(--dark-color);
    transform: translateY(-5px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-stat-item {
    position: relative;
    padding-right: 30px;
}

.hero-stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(15, 99, 69, 0.3), transparent);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.stat-plus {
    font-size: 24px;
    font-weight: 700;
    margin-left: 2px;
    color: var(--secondary-color);
    -webkit-text-fill-color: var(--secondary-color);
    position: relative;
    top: -5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.stat-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background-color: var(--secondary-color);
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(248, 161, 0, 0.4);
    animation: pulse 2s infinite;
}

.hero-image-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.badge-subtext {
    font-size: 10px;
    color: white;
    line-height: 1.2;
    max-width: 80px;
}

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

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-stats {
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    #hero {
        padding: 150px 0 80px;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features, .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-stat-item {
        padding-right: 0;
        width: auto;
        text-align: center;
    }
    
    .hero-stat-item:not(:last-child):after {
        display: none;
    }
    
    .stat-number {
        justify-content: center;
    }
    
    .stat-label {
        padding-left: 0;
    }
    
    .stat-label:before {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-plus {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* Services Section */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    font-size: 30px;
    background-color: var(--primary-bg-light);
    color: var(--primary-color);
}

/* Process Section */
.process-section {
    position: relative;
    background-color: #f9f9f9;
    overflow: hidden;
}

.process-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 99, 69, 0.03) 0%, rgba(248, 161, 0, 0.03) 100%);
    z-index: 0;
}

.section-title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 20px;
}

.process-card {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card-inner {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 40px 25px;
    border-radius: 15px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    z-index: 1;
}

.process-card:hover .process-card-inner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.process-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0;
    border-radius: 15px;
    z-index: -1;
    transition: all 0.4s ease;
}

.process-card:hover:before {
    opacity: 1;
}

.process-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.process-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.process-card:hover .process-icon i {
    color: white;
}

.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(248, 161, 0, 0.3);
}

.process-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.4s ease;
}

.process-card:hover .process-title {
    color: white;
}

.process-text {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
    transition: all 0.4s ease;
}

.process-card:hover .process-text {
    color: rgba(255, 255, 255, 0.8);
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-card:hover .process-arrow {
    background-color: var(--secondary-color);
}

.process-arrow i {
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 25px;
    transition: all 0.4s ease;
}

.process-card:hover .process-arrow i {
    color: white;
}

.btn-process {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-process:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-process:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(15, 99, 69, 0.4);
}

.btn-process:hover:before {
    width: 100%;
}

.btn-process i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-process:hover i {
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    .process-arrow {
        display: none;
    }
    
    .process-card {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Testimonials */
.card {
    transition: all 0.3s ease;
}

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

/* CTA Section */
#cta {
    background: linear-gradient(to right, var(--primary-color), #084d35);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #a0a0a0;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light), var(--secondary-color));
}

.footer-top {
    padding: 80px 0 50px;
    background-size: cover;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 25px;
    text-align: center;
}

.footer-text {
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-widget-title {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: white;
}

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

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

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

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

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact-item p {
    margin: 0;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #777;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

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

.footer-bottom-links a {
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

@media (max-width: 767.98px) {
    .footer-widget-title {
        margin-top: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-bottom-links li {
        margin: 0 10px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Butonlar için */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    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, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* İkonlar için */
.feature-icon {
    background-color: var(--primary-bg-light);
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-gradient {
    background: linear-gradient(to right bottom, var(--primary-color), var(--primary-dark)) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Linkler için */
a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-dark);
}

/* Breadcrumb için */
.breadcrumb-item a {
    color: var(--primary-color);
}

/* Badge için */
.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Progress bar için */
.progress-bar {
    background-color: var(--primary-color);
}

/* Partner Cards */
.partner-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: white;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-card-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-height: 80px;
    max-width: 100%;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.partner-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #f8a100;
    font-size: 14px;
}

.partner-rating span {
    margin-left: 5px;
    color: #666;
    font-weight: 600;
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.partner-features span {
    font-size: 13px;
    color: #555;
    background-color: var(--primary-bg-light);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

.partner-features span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.partner-action {
    text-align: center;
}

.btn-partner {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-partner span {
    margin-right: 8px;
}

.btn-partner i {
    transition: all 0.3s ease;
}

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

.btn-partner:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .partner-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-bg-light);
}

.testimonial-user h5 {
    font-weight: 700;
    margin-bottom: 0;
    color: var(--dark-color);
    font-size: 16px;
}

.testimonial-user p {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 14px;
}

.testimonial-control {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    color: var(--primary-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.testimonial-control:hover {
    background: var(--primary-color);
    color: white;
}

.google-review-btn {
    background: white;
    color: #444;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.google-review-btn:hover {
    background: #f8f8f8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Testimonial Carousel Kontrolleri */
.testimonial-control {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    color: #555;
    transition: all 0.3s ease;
}

.testimonial-control:hover {
    background-color: #f8f9fa;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

#testimonialCarousel .carousel-control-prev {
    left: -20px;
}

#testimonialCarousel .carousel-control-next {
    right: -20px;
}

#testimonialCarousel .carousel-indicators {
    margin-bottom: 0;
}

#testimonialCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #ccc;
    opacity: 0.5;
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* Mobile Testimonial Carousel */
#testimonialCarouselMobile .testimonial-card {
    margin: 0 auto;
    max-width: 90%;
}

#testimonialCarouselMobile .carousel-indicators {
    margin-bottom: 0;
}

#testimonialCarouselMobile .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 3px;
}

#testimonialCarouselMobile .testimonial-control {
    width: 35px;
    height: 35px;
}

#testimonialCarouselMobile .carousel-control-prev {
    left: -10px;
}

#testimonialCarouselMobile .carousel-control-next {
    right: -10px;
}

/* Navbar Layout Fix */
.navbar .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.navbar-brand {
    flex-shrink: 0;
}

.navbar-contact {
    flex-shrink: 0;
    margin-left: 20px;
    margin-right: auto;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    flex-direction: row;
}

.navbar .nav-link {
    white-space: nowrap;
}

@media (max-width: 1720px) {
    .navbar-contact {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
    }
    
    .navbar-collapse {
        flex-grow: 1;
    }
}

/* Navbar Container Fluid Fix */
.navbar .container-fluid {
    max-width: 1920px;
    padding-left: 30px;
    padding-right: 30px;
}

.navbar-nav {
    gap: 5px;
}

.navbar-contact {
    margin-left: 40px;
}

.navbar-contact-item {
    margin-right: 30px;
}

.navbar-contact-item:last-child {
    margin-right: 0;
}

@media (max-width: 1399.98px) {
    .navbar .nav-link {
        padding: 10px 10px !important;
    }
    
    .navbar .nav-link:before {
        left: 10px;
    }
    
    .navbar .nav-link:hover:before,
    .navbar .nav-link.active:before {
        width: calc(100% - 20px);
    }
    
    .navbar-contact {
        margin-left: 20px;
    }
    
    .navbar-contact-item {
        margin-right: 20px;
    }
}

@media (max-width: 1199.98px) {
    .navbar .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Enhanced CTA Section */
.cta-container {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/image/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    filter: blur(5px);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: -1;
}

.cta-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    z-index: -1;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-icon i {
    font-size: 28px;
    color: white;
}

.cta-title {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 28px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.cta-features span {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.cta-features span i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.btn-cta {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta i {
    transition: all 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.cta-phone {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-phone:hover {
    color: var(--secondary-color);
}

@media (max-width: 991.98px) {
    .cta-box {
        padding: 30px;
        text-align: center;
    }
    
    .cta-icon {
        margin: 0 auto 20px;
    }
    
    .cta-features {
        justify-content: center;
    }
}

/* Service Cards */
.service-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 99, 69, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card-body {
    padding: 25px;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -30px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
}

.service-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.service-features span {
    font-size: 13px;
    color: #555;
    background-color: var(--primary-bg-light);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

.service-features span i {
    color: var(--primary-color);
    margin-right: 5px;
}

@media (max-width: 991.98px) {
    .service-card-img {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .service-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Discover Button */
.btn-discover {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
}

.btn-discover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-discover:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(15, 99, 69, 0.4);
}

.btn-discover:hover:before {
    width: 100%;
}

.btn-discover i {
    transition: all 0.3s ease;
}

.btn-discover:hover i {
    transform: translateX(5px);
}

/* Navbar CTA Button */
.btn-navbar-cta {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(15, 99, 69, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-navbar-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-navbar-cta:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(15, 99, 69, 0.35);
}

.btn-navbar-cta:hover:before {
    width: 100%;
}

.btn-navbar-cta i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-navbar-cta:hover i {
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    .btn-navbar-cta {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

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

.faq-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 99, 69, 0.03) 0%, rgba(248, 161, 0, 0.03) 100%);
    z-index: 0;
}

.faq-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.faq-image-container:hover .faq-image {
    transform: scale(1.05);
}

.faq-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
}

.faq-badge-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
    animation: pulse 2s infinite;
}

.faq-contact-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.faq-contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-contact-content h5 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-contact-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-faq-contact {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-faq-contact:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-faq-contact i {
    transition: all 0.3s ease;
}

.btn-faq-contact:hover i {
    transform: translateX(5px);
}

.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.faq-button {
    background: white;
    border-radius: 10px !important;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px rgba(15, 99, 69, 0.2);
}

.faq-button:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.faq-button:not(.collapsed):focus {
    box-shadow: 0 10px 20px rgba(15, 99, 69, 0.2);
}

.faq-question-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) .faq-question-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.faq-question-text {
    flex-grow: 1;
}

.faq-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f6345'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-answer {
    padding: 20px;
    background-color: white;
    border-radius: 0 0 10px 10px;
    color: #666;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer ul li {
    margin-bottom: 8px;
}

@media (max-width: 991.98px) {
    .faq-image-container {
        margin-bottom: 30px;
    }
    
    .faq-image {
        height: 300px;
    }
}

/* About Page Styles */
#about-hero {
    padding: 150px 0 80px;
    position: relative;
    background-color: #f9f9f9;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
}

.about-badge span {
    display: flex;
    align-items: center;
}

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

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

.about-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
}

.about-feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.about-experience {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(15, 99, 69, 0.3);
}

.experience-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 14px;
    margin-top: 5px;
}

/* Mission Cards */
.mission-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(15, 99, 69, 0.2);
}

.mission-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.mission-text {
    color: #666;
    font-size: 15px;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    background: rgba(15, 99, 69, 0.8);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

/* Why Choose Us */
.about-why-image {
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
}

.about-why-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
}

.why-badge-inner {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(248, 161, 0, 0.4);
    animation: pulse 2s infinite;
}

.badge-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 10px;
    line-height: 1.2;
    max-width: 80px;
    text-align: center;
    margin-top: 5px;
}

.why-item {
    display: flex;
    margin-bottom: 25px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.2);
}

.why-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.why-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    #about-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .about-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .about-image-container {
        margin-top: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-why-content {
        margin-top: 40px;
    }
}

/* Page Header */
.page-header {
    position: relative;
    padding: 158px 0 55px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../assets/image/pattern-bg.jpg');
    background-size: cover;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light), var(--secondary-color));
}

.page-header h1 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.breadcrumb {
    background: transparent;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: #666;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #999;
}

/* Partners Page Styles */
#partners-intro {
    padding: 80px 0;
    position: relative;
}

.partners-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
}

.partners-badge span {
    display: flex;
    align-items: center;
}

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

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

.partners-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.partners-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.partners-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.partners-stat-item {
    text-align: center;
}

.partners-stat-item .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partners-stat-item .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.partners-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partners-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.partners-image-container:hover .partners-image {
    transform: scale(1.05);
}

.partners-quality {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
}

.quality-inner {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(248, 161, 0, 0.4);
    animation: pulse 2s infinite;
}

.quality-inner i {
    font-size: 24px;
    margin-bottom: 5px;
}

/* Partner Cards */
.partner-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.partner-card:hover .partner-image img {
    transform: scale(1.1);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 99, 69, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-link {
    transform: translateY(0);
}

.partner-link:hover {
    background: var(--secondary-color);
    color: white;
}

.partner-info {
    padding: 25px;
    position: relative;
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -65px;
    right: 25px;
}

.partner-logo img {
    max-width: 60px;
    max-height: 60px;
}

.partner-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.partner-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.partner-features span {
    background: var(--primary-bg-light);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.partner-features span i {
    margin-right: 5px;
    font-size: 10px;
}

.btn-partner {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

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

.btn-partner i {
    transition: all 0.3s ease;
}

.btn-partner:hover i {
    transform: translateX(5px);
}

/* Hotel Cards */
.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hotel-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--secondary-color);
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hotel-info {
    padding: 20px;
}

.hotel-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-size: 18px;
}

.hotel-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hotel-features span {
    background: #f8f8f8;
    color: #666;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.hotel-features span i {
    margin-right: 5px;
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .partners-stats {
        justify-content: center;
    }
    
    .partners-image-container {
        margin-top: 40px;
    }
    
    .partner-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hotel-card {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .partners-title {
        font-size: 28px;
    }
    
    .partners-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer Top Border */
.footer {
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light), var(--secondary-color));
}

/* Contact Page Styles */
#contact-info {
    padding: 80px 0 50px;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(15, 99, 69, 0.2);
}

.contact-info-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-info-text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    height: 55px;
    font-size: 15px;
    color: #555;
    box-shadow: none;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(15, 99, 69, 0.25);
}

.contact-form textarea.form-control {
    height: 150px;
    resize: none;
}

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

.contact-form .form-check-label a {
    color: var(--primary-color);
}

.contact-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 99, 69, 0.9), rgba(15, 99, 69, 0.7), transparent);
    padding: 30px;
    color: white;
    text-align: center;
}

.contact-social h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    z-index: 10;
}

.map-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.map-info p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.map-info p i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
}

/* Mobil görünümde harita bilgi kutusu düzeltmesi */
@media (max-width: 767.98px) {
    .map-container {
        height: 400px;
        margin-bottom: 0;
    }
    
    .map-info {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    
    /* FAQ bölümü ile çakışmayı önlemek için */
    #contact-faq {
        margin-top: 30px;
        position: relative;
        z-index: 1;
    }
    
    /* Accordion öğelerinin z-index değerini artır */
    .accordion-item {
        position: relative;
        z-index: 5;
        background-color: #fff;
    }
}

/* FAQ Section Styles */
.faq-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question {
    font-weight: 600;
    color: var(--dark-color);
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    box-shadow: none !important;
    background-color: white !important;
}

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

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f6345'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.accordion-body p {
    margin-bottom: 10px;
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body ul li {
    margin-bottom: 5px;
}

@media (max-width: 991.98px) {
    .contact-form-content {
        margin-bottom: 40px;
    }
    
    .map-info {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .contact-social {
        padding: 20px;
    }
}

/* Service Page Styles */
#fue-intro {
    padding: 80px 0;
    position: relative;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
}

.service-badge span {
    display: flex;
    align-items: center;
}

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

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

.service-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.service-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    background: var(--primary-bg-light);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-feature-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.service-feature-item i {
    margin-right: 10px;
    font-size: 16px;
}

.service-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.service-image-container:hover .service-image {
    transform: scale(1.05);
}

.service-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(248, 161, 0, 0.4);
    animation: pulse 2s infinite;
}

.experience-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

/* Process Cards */
.process-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(15, 99, 69, 0.2);
}

.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(248, 161, 0, 0.3);
}

.process-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Benefits Section */
.benefit-card {
    display: flex;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 18px;
}

.benefit-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Before After Section */
.before-after-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.before-after-image {
    width: 100%;
    height: auto;
    display: block;
}

.before-after-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.before-after-month {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    box-shadow: 0 5px 15px rgba(248, 161, 0, 0.3);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(15, 99, 69, 0.3);
}

.section-badge span {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .service-title {
        font-size: 30px;
    }
    
    .service-image-container {
        margin-top: 40px;
    }
    
    .process-card {
        margin-bottom: 30px;
    }
    
    .benefit-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .service-title {
        font-size: 26px;
    }
    
    .service-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Dropdown Menu Styles */
.navbar .dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(20px);
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-item {
    padding: 10px 25px;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: var(--primary-bg-light);
    color: var(--primary-color);
    padding-left: 30px;
}

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

.navbar .dropdown-item:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    opacity: 0;
}

.navbar .dropdown-item:hover:before {
    width: 8px;
    opacity: 1;
}

.navbar .dropdown-divider {
    margin: 8px 15px;
    border-color: #f0f0f0;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: 0.15em;
    transition: all 0.3s ease;
}

.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar .dropdown-toggle.active {
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: transparent;
    }
    
    .navbar .dropdown-item {
        padding: 8px 15px;
    }
    
    .navbar .dropdown-item:hover {
        background-color: transparent;
    }
    
    .navbar .dropdown-divider {
        display: none;
    }
    
    .navbar .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }
    
    .navbar .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
}

/* FUE Advantages Styles */
.advantage-item {
    display: flex;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.advantage-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.advantage-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        margin: 0 auto 15px;
    }
}

/* Comparison Table Styles */
.comparison-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-top-left-radius: 15px;
}

.comparison-table th:last-child {
    border-top-right-radius: 15px;
}

.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

.comparison-table tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

.comparison-note {
    font-style: italic;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .comparison-table th,
    .comparison-table td {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* FUE Results Styles */
.result-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.result-image-container {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
}

.result-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.result-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-top-left-radius: 15px;
    font-size: 14px;
    font-weight: 600;
}

.result-info {
    padding: 20px;
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.result-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .result-image-container {
        padding-bottom: 66.67%; /* 3:2 aspect ratio for mobile */
    }
}
/* Mobil Görünüm Düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Mobil cihazlarda taşma sorunlarını önlemek için */
@media (max-width: 767.98px) {
    /* Temel taşma kontrolü */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }
    
    /* Container düzeltmeleri */
    .container, .container-fluid {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    /* Row düzeltmeleri */
    .row {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: visible !important;
    }
    
    /* Kolon düzeltmeleri */
    [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: visible !important;
    }
    
    /* Section düzeltmeleri */
    section {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
    }
    
    /* Görsel içerik düzeltmeleri */
    img, video, iframe, .embed-responsive, .card {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Servis kartları düzeltmesi */
    .service-card {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
}

/* Tüm ekran boyutları için geçerli düzeltmeler */
.overflow-hidden, .overflow-x-hidden {
    overflow: visible !important;
}

/* Servis kartları için özel düzeltme */
.service-card {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: #167553;
    border-color: #177653;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-consent-btn-accept {
    background-color: var(--primary-color);
    color: #fff;
}

.cookie-consent-btn-accept:hover {
    background-color: var(--primary-dark);
}

.cookie-consent-btn-decline {
    background-color: #f0f0f0;
    color: #333;
}

.cookie-consent-btn-decline:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-btn {
        flex: 1;
        min-width: 120px;
    }
}