

:root {
    --primary-color: var(--color-rank-1);
    --primary-dark: var(--color-rank-6);
    --secondary-color: var(--color-rank-8);
    --text-dark: var(--color-rank-2);
    --text-light: var(--color-rank-3);
    --bg-light: var(--color-rank-5);
    --bg-white: var(--color-rank-7);
    --text-white: var(--color-rank-7);
    --border-color: var(--color-rank-4);
    --shadow-sm: 0 2px 6px 0 var(--color-rank-26), 0 1.5px 4px 0 var(--color-rank-33);
    --shadow-md: 0 6px 16px 0 var(--color-rank-34), 0 2px 8px 0 var(--color-rank-35);
    --shadow-lg: 0 16px 32px 0 var(--color-rank-36), 0 4px 16px 0 var(--color-rank-37);
    --shadow-xl: 0 32px 48px 0 var(--color-rank-38), 0 8px 24px 0 var(--color-rank-22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-dark); 
}
.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}
.text-dark {
    color: var(--text-dark) !important;
}
.text-light {
    color: var(--text-light) !important;
}
.text-white {
    color: var(--text-white) !important;
}
.text-black {
    color: var(--text-black) !important;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 15px var(--color-rank-19);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-rank-27);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}



.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--color-rank-9) 0%, var(--color-rank-10) 50%, var(--color-rank-11) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50% 0 0 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-badge img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.25rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-main-image {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    border: 20px solid white;
    box-shadow: var(--shadow-xl);
}

.hero-floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
}

.hero-floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hero-card-content h6 {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.hero-card-content p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.hero-floating-card.top-left {
    top: 10%;
    left: -5%;
}

.hero-floating-card.bottom-right {
    bottom: 15%;
    right: -10%;
}

.stats-bar {
    background: white;
    padding: 3rem 0;
    box-shadow: var(--shadow-md);
    border-radius: 16px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.75rem;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.section-badge i {
    font-size: 0.875rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.tedavi-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tedavi-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.tedavi-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-rank-20) 0%, var(--color-rank-26) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tedavi-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tedavi-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tedavi-card h3 a {
    color: var(--text-dark);
}

.tedavi-card h3 a:hover {
    color: var(--primary-color);
}

.tedavi-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-image-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.about-image-badge p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.about-features li i {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.counter-section {
    background: linear-gradient(var(--color-rank-28), var(--color-rank-28));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
}

.counter-section .section-title,
.counter-section .section-description {
    color: white;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.125rem;
    color: var(--color-rank-39);
}

.doktor-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.doktor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.doktor-image-wrapper {
    position: relative;
    overflow: hidden;
}

.doktor-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.3s ease;
}

.doktor-card:hover .doktor-image {
    transform: scale(1.05);
}

.doktor-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.doktor-card:hover .doktor-social {
    bottom: 20px;
}

.doktor-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.doktor-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.doktor-info {
    padding: 1.5rem;
    text-align: center;
}

.doktor-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doktor-info h3 a {
    color: var(--text-dark);
}

.doktor-info h3 a:hover {
    color: var(--primary-color);
}

.doktor-specialty {
    color: var(--text-light);
    font-size: 0.95rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 0;
    height: 100%;
    display: inline-block;
    /* Kartın yüksekliğini (boyunu) sabit tutmak için min-height ve max-height ayarı ekleyip büyümesini engelle */
    /* Ayrıca transition kaldırıldı, hoverda boyut değişimi olmayacak. */
    min-height: 0;
    max-height: 100%;
    transition: none;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 16px;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-rank-40) 0%, var(--color-rank-41) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Overlay'in boyut değiştirmesini/kartı bozmasını engellemek için */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
}

/* Hoverda kartın veya wrapper'ın yüksekliği/artmaması için (ekstra garanti) */
.gallery-item,
.gallery-item:hover {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    box-sizing: border-box;
}


.certificate-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: var(--color-rank-7);
    box-shadow: 0 2px 12px var(--color-rank-42);
    transition: box-shadow 0.3s cubic-bezier(.4,2,.6,1);
    cursor: pointer;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.certificate-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.35s cubic-bezier(.4,2,.6,1), filter 0.25s;
    box-shadow: none;
}

.certificate-hover-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(135deg, var(--color-rank-43) 0%, var(--color-rank-44) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(.4,2,.6,1);
    z-index: 3;
}

.certificate-hover-overlay i {
    font-size: 2.4rem;
    color: var(--color-rank-7);
    text-shadow: 0 4px 18px var(--color-rank-45);
}

.certificate-item:hover {
    box-shadow: 0 6px 28px 0 var(--color-rank-46);
}

.certificate-item:hover img {
    transform: scale(1.07);
    filter: blur(1.5px) brightness(0.82);
}

.certificate-item:hover .certificate-hover-overlay {
    opacity: 1;
    pointer-events: all;
}


.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-dark);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}


.certificates-slider {
    padding: 60px 0;
    background: var(--bg-light);
}

.certificate-item {
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 1rem;
}

.certificate-item:hover {
    opacity: 1;
}

.certificate-item img {
    aspect-ratio: 4/3;
    width: auto;
    margin: 0 auto;
    display: block;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.certificate-item:hover img {
    filter: grayscale(0%);
}

.footer {
    background: var(--text-dark);
}

.footer h3,
.footer h5 {
    color: white;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-rank-47);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-rank-29);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-rank-29);
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.page-banner {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: left;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-rank-48) 0%, var(--color-rank-49) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: var(--color-rank-30);
}

.breadcrumb-item a {
    color: white;
}

.breadcrumb-item a:hover {
    color: var(--color-rank-30);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-rank-50);
}

.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 0;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 0.75rem;
}

.widget ul li a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.search-form input:focus {
    border-color: var(--primary-color);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.editor-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.editor-content p {
    margin-bottom: 1.5rem;
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.editor-content h1 {
    font-size: 2.5rem;
}

.editor-content h2 {
    font-size: 2rem;
}

.editor-content h3 {
    font-size: 1.75rem;
}

.editor-content h4 {
    font-size: 1.5rem;
}

.editor-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.editor-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.editor-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2.2em;
    color: var(--text-light);
}

.editor-content ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 1.6em;
    height: 1.6em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--color-rank-7);
    border-radius: 50%;
    font-size: 1em;
    line-height: 1.6em;
}

.editor-content ol li {
    margin-bottom: 0.5rem;
}


.editor-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

.editor-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-info-icon i {
    font-size: 1.75rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin: 0;
}

.form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--color-rank-20);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 500;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
}

.pagination {
    gap: 0.5rem;
}

.page-link {
    border-radius: 8px;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.make-sticky {
    position: sticky;
    top: 120px;
}

.social-links.for-light .social-link {
    color: var(--primary-color); 
    background: white;
    border: 1px solid var(--primary-color);
}

.social-links.for-light .social-link:hover {
    color: white; 
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.mb-widget {
    margin-bottom: 2rem;
}

.map-section {
    background: var(--color-rank-12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px 0 var(--color-rank-51);
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(100%) contrast(1.08) brightness(0.95);
    display: block;
}
.aspect-ratio-1-1 {
    aspect-ratio: 1/1;
}
.aspect-ratio-4-3 {
    aspect-ratio: 4/3;
}   

    
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .hero-floating-card {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-link.active::after {
        display: none;
    }

    .language-dropdown .dropdown-menu-end[data-bs-popper]{
        left: 0 !important;
        right: auto;
    }

    .additional-links-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .hero-main-image {
        margin: 30px 0 15px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
}


/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 45px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 45px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-52);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-13);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-22);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary-color);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary-color);

    color: var(--text-white);

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: all 0.3s ease-in-out;
}

.cookie-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-14);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-7);
    background-color: var(--primary-color);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-7);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




.navbar-brand img, footer .footer-logo img{
  object-position: left;
  object-fit: contain;
  width: 150px;
  height: auto;
}

.f-link {
  color: var(--text-white);
  transition: all 0.3s ease;
}

.f-link:hover {
  color: var(--primary-color);
}



.tedavi-icon img {
    object-fit: contain;
    object-position: center;
    width: 32px;
    height: auto;
  transition: all 0.3s ease;
}

.tedavi-icon img:hover {
  transform: scale(1.1);
}


.cta-section {
    background: var(--bg-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-rank-53) 0%, var(--color-rank-31) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-text {
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-section .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px var(--color-rank-23);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-rank-54);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.cta-section .btn-outline-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.cta-section .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-rank-23);
}

.cta-section .btn i {
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 300px;
    }
}


/* Language Dropdown - Modern Minimalist */
.language-dropdown {
    position: relative;
}

.language-dropdown__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.language-dropdown__button:hover,
.language-dropdown__button:focus,
.language-dropdown__button.show {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.language-dropdown__button::after {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.language-dropdown__button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.language-dropdown__icon {
    font-size: 0.875rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.language-dropdown__button:hover .language-dropdown__icon,
.language-dropdown__button.show .language-dropdown__icon {
    transform: rotate(15deg);
}

.language-dropdown__text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-dropdown__menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.75rem;
    min-width: 140px;
    background: white;
}

.language-dropdown__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
}

.language-dropdown__item:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateX(3px);
    padding-left: 1.25rem;
}

.language-dropdown__item.active {
    background: linear-gradient(135deg, var(--color-rank-24) 0%, var(--color-rank-21) 100%);
    color: var(--primary-color);
    font-weight: 600;
}

.language-dropdown__item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--primary-color);
    border-radius: 0 3px 3px 0;
}

.language-dropdown__check {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-left: 0.5rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.language-dropdown__item.active .language-dropdown__check {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 991.98px) {
    .language-dropdown .dropdown-menu-end[data-bs-popper] {
        left: 0 !important;
        right: auto;
    }
    
    .language-dropdown__menu {
        margin-top: 0.5rem;
    }
}


/* Blog Sidebar - Modern Minimalist */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar__widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-sidebar__widget:hover {
    box-shadow: var(--shadow-lg);
}

.blog-sidebar__widget--search {
    padding: 1.5rem;
}

/* Search Form */
.blog-sidebar__search-form {
    position: relative;
}

.blog-sidebar__search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-sidebar__search-input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background: var(--bg-light);
    color: var(--text-dark);
}

.blog-sidebar__search-input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px var(--color-rank-20);
}

.blog-sidebar__search-input::placeholder {
    color: var(--text-light);
}

.blog-sidebar__search-button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--color-rank-25);
}

.blog-sidebar__search-button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px var(--color-rank-19);
}

.blog-sidebar__search-button i {
    font-size: 0.875rem;
}

/* Widget Title */
.blog-sidebar__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.75rem;
}

.blog-sidebar__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

/* Category List */
.blog-sidebar__category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar__category-item {
    margin-bottom: 0.5rem;
}

.blog-sidebar__category-item:last-child {
    margin-bottom: 0;
}

.blog-sidebar__category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background: var(--bg-light);
}

.blog-sidebar__category-link:hover {

    transform: translateX(5px);
}

.blog-sidebar__category-link.active {
    background: linear-gradient(135deg, var(--color-rank-24) 0%, var(--color-rank-21) 100%);
    color: var(--primary-color);
    font-weight: 600;
}

.blog-sidebar__category-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--primary-color);
    border-radius: 0 3px 3px 0;
}

.blog-sidebar__category-icon {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.blog-sidebar__category-link:hover .blog-sidebar__category-icon {
    transform: scale(1.1);
}

.blog-sidebar__category-text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-sidebar__category-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 28px;
    text-align: center;
    box-shadow: 0 2px 6px var(--color-rank-25);
}

.blog-sidebar__category-link.active .blog-sidebar__category-badge {
    box-shadow: 0 2px 8px var(--color-rank-19);
}

/* Latest Posts List */
.blog-sidebar__latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar__latest-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-sidebar__latest-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-sidebar__latest-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-sidebar__latest-link:hover {
    transform: translateX(3px);
}

.blog-sidebar__latest-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.blog-sidebar__latest-link:hover .blog-sidebar__latest-title {
    color: var(--primary-color);
}

.blog-sidebar__latest-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-sidebar__latest-meta i {
    font-size: 0.75rem;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991.98px) {
    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .blog-sidebar__widget {
        margin-bottom: 1.5rem;
    }
}


.aspect-ratio-4-3 {
    aspect-ratio: 4/3;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1/1;
}

.object-fit-cover {
    object-fit: cover;
}


/* Blog Detail Meta - Modern Minimalist */
.blog-detail__meta {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.blog-detail__meta-item {
    margin-bottom: 0;
}

.blog-detail__meta-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail__meta-icon {
    font-size: 0.875rem;
    color: var(--primary-color);
}

/* Tags */
.blog-detail__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-detail__tag-item {
    margin: 0;
}

.blog-detail__tag-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.blog-detail__tag-link:hover {
    background: linear-gradient(135deg, var(--color-rank-20) 0%, var(--color-rank-21) 100%);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px var(--color-rank-55);
}

/* Share Buttons */
.blog-detail__share-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.blog-detail__share-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.blog-detail__share-item {
    margin: 0;
}

.blog-detail__share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.blog-detail__share-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.blog-detail__share-link--facebook:hover {
    background: var(--color-rank-15);
    color: white;
}

.blog-detail__share-link--twitter:hover {
    background: var(--color-rank-16);
    color: white;
}

.blog-detail__share-link--linkedin:hover {
    background: var(--color-rank-17);
    color: white;
}

.blog-detail__share-link--whatsapp:hover {
    background: var(--color-rank-18);
    color: white;
}

/* Date */
.blog-detail__date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-detail__date-icon {
    color: var(--primary-color);
    font-size: 1rem;
}


.blog-detail__meta-item.blog-detail__meta-item--share h4{
    display: flex;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 767.98px) {
    .blog-detail__meta {
        padding: 1.5rem;
    }
    
    .blog-detail__meta-item {
        margin-bottom: 1.5rem;
    }
    
    .blog-detail__meta-item:last-child {
        margin-bottom: 0;
    }
    
    .blog-detail__meta-title.text-md-end {
        text-align: left !important;
    }
    
    .blog-detail__share-wrapper {
        justify-content: flex-start;
    }
    
    .blog-detail__date {
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .blog-detail__meta-item.blog-detail__meta-item--share h4{
        display: flex;
        justify-content: flex-start;
    }
}


.accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--border-color);
}


/* Service Gallery Slider - Modern Minimalist */
.service-gallery-slider {
    margin-bottom: 2rem;
}

.service-gallery-slider__main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    margin-bottom: 1rem;
}

.service-gallery-slider__item {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-light);
}

.service-gallery-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-gallery-slider__item:hover .service-gallery-slider__image {
    transform: scale(1.05);
}

.service-gallery-slider__popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--color-rank-32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px var(--color-rank-56);
    backdrop-filter: blur(10px);
}

.service-gallery-slider__item:hover .service-gallery-slider__popup {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.service-gallery-slider__popup:hover {
    background: var(--primary-color);
    color: white;
    transform: translate(-50%, -50%) scale(1.15);
}

.service-gallery-slider__icon {
    font-size: 1.25rem;
}

/* Navigation Buttons */
.service-gallery-slider__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.service-gallery-slider__button {
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--color-rank-32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px var(--color-rank-22);
    pointer-events: all;
    backdrop-filter: blur(10px);
    border: none;
    margin: 0;
}

.service-gallery-slider__button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 16px var(--color-rank-19);
}

.service-gallery-slider__button--prev {
    left: 1rem;
}

.service-gallery-slider__button--next {
    right: 1rem;
}

.service-gallery-slider__button i {
    font-size: 0.875rem;
}

.service-gallery-slider__button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Pagination */
.service-gallery-slider__pagination {
    position: absolute;
    bottom: 1.5rem !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
}

.service-gallery-slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-rank-57);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-gallery-slider__pagination .swiper-pagination-bullet-active {
    background: white;
    width: 24px;
    border-radius: 5px;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px var(--color-rank-27);
}


/* Responsive */
@media (max-width: 991.98px) {
    .service-gallery-slider__button {
        width: 40px;
        height: 40px;
    }
    
    .service-gallery-slider__button--prev {
        left: 0.5rem;
    }
    
    .service-gallery-slider__button--next {
        right: 0.5rem;
    }
    
    .service-gallery-slider__popup {
        width: 48px;
        height: 48px;
    }
    
    .service-gallery-slider__icon {
        font-size: 1rem;
    }
}


/* Service Sidebar - Modern Minimalist */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar__widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-sidebar__widget:hover {
    box-shadow: var(--shadow-lg);
}

.service-sidebar__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}



.service-sidebar__title-icon {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.service-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar__item {
    margin-bottom: 0.5rem;
}

.service-sidebar__item:last-child {
    margin-bottom: 0;
}

.service-sidebar__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background: var(--bg-light);
    border: 1px solid transparent;
}

.service-sidebar__link:hover {
    background: linear-gradient(135deg, var(--color-rank-58) 0%, var(--color-rank-31) 100%);
    color: var(--primary-color);
    transform: translateX(5px);
    border-color: var(--primary-color);
    padding-left: 1.25rem;
}

.service-sidebar__link.active {
    background: linear-gradient(135deg, var(--color-rank-24) 0%, var(--color-rank-21) 100%);
    color: var(--primary-color);
    font-weight: 600;
    border-color: var(--primary-color);
}



.service-sidebar__icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px var(--color-rank-59);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-sidebar__link:hover .service-sidebar__icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 12px var(--color-rank-25);
}

.service-sidebar__link.active .service-sidebar__icon-wrapper {
    box-shadow: 0 4px 12px var(--color-rank-23);
}

.service-sidebar__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-sidebar__link:hover .service-sidebar__icon {
    transform: scale(1.1);
}

.service-sidebar__text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.service-sidebar__arrow {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.service-sidebar__link:hover .service-sidebar__arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-color);
}

.service-sidebar__link.active .service-sidebar__arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991.98px) {
    .service-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .service-sidebar__widget {
        margin-bottom: 1.5rem;
    }
}


/* Contact Form Header - Modern Minimalist */
.contact-form__header {
    margin-bottom: 2.5rem;
}

.contact-form__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.contact-form__description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .contact-form__title {
        font-size: 1.75rem;
    }
    
    .contact-form__description {
        font-size: 0.95rem;
    }
    
    .contact-form__header {
        margin-bottom: 2rem;
    }
}


.custom-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  margin: 0 auto;
  display: block;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}


.service-sidebar__icon.custom-icon {
  width: 24px;
  height: 24px;
}