/* Genel Reset ve Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Üst Bilgi Çubuğu */
.top-bar {
    background-color: #1a958d;
    color: #fff;
    padding: 4px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.info-item i {
    font-size: 16px;
    display: inline-block;
    width: 18px;
    text-align: center;
    color: #fff;
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.social-media {
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon i {
    line-height: 1;
    font-size: 12px;
}

.phone-number {
    background-color: #1a958d;
    color: #fff;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
}

.phone-number:hover {
    background-color: #157a73;
    transform: translateY(-1px);
}

/* Ana Header */
.main-header {
    background-color: #1d5c58;
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Logo Bölümü */
.logo-section {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 54px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menü Butonu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Ana Menü */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Gosha Sans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-menu li a:hover {
    color: #FF6B35;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF6B35;
    transition: width 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Menü alt sayfa dropdown */
.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu li.has-dropdown .nav-parent i {
    font-size: 10px;
    margin-left: 4px;
}

.nav-menu .nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 280px;
    background: #12403d;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-55%) translateY(8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 100;
    /* 6 öğe sonra sağa yeni sütun */
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(6, auto);
    grid-auto-columns: minmax(220px, 250px);
    column-gap: 0;
}

.nav-menu li.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-55%) translateY(0);
}

.nav-menu .nav-dropdown li {
    margin: 0;
}

.nav-menu .nav-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    white-space: nowrap;
    font-family: 'Gosha Sans', sans-serif;
    font-size: 15px;
}

.nav-menu .nav-dropdown li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.nav-menu .nav-dropdown li a::after {
    display: none;
}

/* Dil Seçimi */
.language-selector {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.lang-flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lang-flag.active {
    background-color: rgba(135, 206, 250, 0.4);
    backdrop-filter: blur(5px);
}

.lang-flag:hover {
    background-color: rgba(135, 206, 250, 0.2);
}

/* Hero Slider - yumuşak fade (çapraz geçiş) animasyonu */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(-50px);
}

.hero-title {
    font-family: 'Heebo', sans-serif;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    color: #EFEFEF;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.hero-button {
    font-family: 'Heebo', sans-serif;
    display: inline-block;
    background-color: #FFFFFF;
    color: #333333;
    padding: 12px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    border-radius: 5px;
    border: 1px solid #DDDDDD;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.hero-button:hover {
    background-color: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Slider noktaları (dots) */
.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.hero-dot:hover,
.hero-dot.active {
    background: #fff;
}

/* Slider altı - 4 kart */
.slider-features {
    padding: 48px 24px;
    background-color: transparent;
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.slider-features .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.slider-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.slider-feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.slider-feature-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.slider-feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #1a958d;
}

.slider-feature-icon i {
    font-size: 42px;
}

.slider-feature-icon.service-icon-1 img,
.slider-feature-icon.service-icon-3 img,
.slider-feature-icon.service-icon-4 img,
.slider-feature-icon.service-icon-5 img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.slider-feature-title {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1d3b4b;
    margin-bottom: 10px;
    line-height: 1.35;
}

.slider-feature-desc {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.slider-feature-link {
    font-family: 'Heebo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1d3b4b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.slider-feature-link:hover {
    color: #1a958d;
}

.slider-feature-link i {
    font-size: 12px;
    color: #1a958d;
}

@media (max-width: 1024px) {
    .slider-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .slider-features {
        padding: 32px 16px;
    }
    .slider-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Welcome Section - 2 sütun */
.welcome-section {
    padding: 80px 0;
    background-color: #fff;
}

.welcome-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.welcome-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-content {
    max-width: 540px;
}

.welcome-heading {
    font-family: 'Heebo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1d3b4b;
    margin-bottom: 20px;
    line-height: 1.25;
}

.welcome-intro {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 32px;
}

.welcome-block {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.welcome-block:last-of-type {
    margin-bottom: 0;
}

.welcome-block-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a958d;
    font-size: 28px;
}

.welcome-block-text {
    flex: 1;
}

.welcome-block-title {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.3;
}

.welcome-block-desc {
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.55;
    margin: 0;
}

.welcome-media {
    position: relative;
}

.welcome-main-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    max-height: 420px;
}

.welcome-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .welcome-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .welcome-content {
        max-width: 100%;
    }
    .welcome-media {
        order: -1;
    }
}

@media (max-width: 600px) {
    .welcome-section {
        padding: 48px 0;
    }
    .welcome-heading {
        font-size: 28px;
    }
}

/* Alt sayfa (Hakkımızda vb.) - Ekibimiz sayfasıyla aynı container (max-width 1200px), resim solda yazı sağda */
.subpage-section {
    padding: 60px 0;
    background-color: #fff;
}

.subpage-title {
    font-family: 'Heebo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1d5c58;
    margin-bottom: 28px;
    line-height: 1.3;
}

.subpage-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 32px;
}

.subpage-left {
    flex: 0 0 380px;
    max-width: 45%;
}

.subpage-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.subpage-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    vertical-align: top;
    object-fit: cover;
}

.subpage-right {
    flex: 1;
    min-width: 0;
}

.subpage-content {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.subpage-content p {
    margin-bottom: 1em;
}

.subpage-content p:last-child {
    margin-bottom: 0;
}

/* Blog sayfası */
.blog-section {
    padding: 60px 0;
    background-color: #fff;
}

.blog-empty {
    color: #666;
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.blog-card-image-link {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 20px;
}

.blog-card-title {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1d5c58;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    text-decoration: underline;
}

.blog-card-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 500;
    color: #1d5c58;
    text-decoration: none;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.blog-single-section {
    padding: 60px 0;
}

.blog-single-title {
    margin-bottom: 8px;
}

.blog-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.blog-single-image {
    margin-bottom: 24px;
}

.blog-back-link {
    display: inline-block;
    margin-top: 32px;
    font-size: 14px;
    color: #1d5c58;
    text-decoration: none;
}

.blog-back-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-image {
        height: 200px;
    }
}

/* İletişim sayfası */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-page-title {
    font-family: 'Heebo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1d5c58;
    margin-bottom: 32px;
    line-height: 1.3;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-block h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1d5c58;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-block h3 i {
    font-size: 18px;
}

.contact-block p {
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.contact-block a {
    color: #1d5c58;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-form-wrap h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 8px;
}

.contact-form-success,
.appointment-success {
    color: #0d6b0d;
    font-family: 'Heebo', sans-serif;
    margin-bottom: 16px;
}

.contact-form-error,
.appointment-error {
    color: #c00;
    font-family: 'Heebo', sans-serif;
    margin-bottom: 16px;
}

.appointment-msg {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.appointment-msg.appointment-success {
    background: #e8f5e9;
}

.appointment-msg.appointment-error {
    background: #ffebee;
}

.contact-map {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .subpage-row {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .subpage-left {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}

/* Ekibimiz sayfası - doktor kartları */
.team-section {
    padding: 60px 0;
    background-color: #fff;
}

.team-page-title {
    font-family: 'Heebo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1d5c58;
    margin-bottom: 40px;
    line-height: 1.3;
}

.team-empty {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #666;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.team-card-image-wrap {
    flex-shrink: 0;
    width: 280px;
    min-height: 320px;
    overflow: hidden;
    background: #e8e8e8;
}

.team-card-image {
    width: 100%;
    /* height: 100%; */
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.team-card-body {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card-name {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1d5c58;
    margin-bottom: 6px;
    line-height: 1.3;
}

.team-card-title {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

.team-card-bio {
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.team-card-bio p {
    margin-bottom: 10px;
}

.team-card-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .team-section {
        padding: 40px 0;
    }
    .team-grid {
        gap: 24px;
    }
    .team-card {
        flex-direction: column;
    }
    .team-card-image-wrap {
        width: 100%;
        min-height: 280px;
    }
    .team-card-image {
        min-height: 280px;
    }
    .team-card-body {
        padding: 24px;
    }
}

/* Treatments Section */
.treatments-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #666;
    margin: 0;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .why-choose-content {
        gap: 20px;
        max-width: 100%;
    }
    
    .why-choose-center-circle {
        width: 220px;
        height: 220px;
    }
    
    .why-choose-item {
        max-width: 280px;
    }
    
    .why-choose-item-title {
        font-size: 16px;
    }
    
    .why-choose-item-desc {
        font-size: 13px;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.treatment-card {
    background-color: #F0F0F0;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease;
}

a.treatment-card {
    text-decoration: none;
    color: inherit;
}

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

.treatment-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-title {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1E3A8A;
    text-align: center;
    padding: 15px 10px;
    margin: 0;
    line-height: 1.4;
}

.title-line-1,
.title-line-2 {
    display: block;
    line-height: 1.2;
}

/* Neden Bizi Tercih Etmelisiniz / Diş Teşhisi */
.why-choose-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-title {
    font-family: 'Heebo', sans-serif;
    font-size: 38px;
    font-weight: bold;
    color: #1E3A8A;
    margin: 0 0 12px 0;
}

.why-choose-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-choose-left {
    text-align: right;
}

.why-choose-left .why-choose-item {
    flex-direction: row-reverse;
}

.why-choose-right .why-choose-item {
    flex-direction: row;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 320px;
}

.why-choose-left .why-choose-item {
    margin-left: auto;
}

.why-choose-item-text {
    flex: 1;
}

.why-choose-item-title {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
}

.why-choose-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.why-choose-item-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7eb8c9;
    border-radius: 50%;
    color: #5a9fb0;
    font-size: 22px;
}

.why-choose-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-center-circle {
    width: 280px;
    height: 280px;
    border: 2px dashed #7eb8c9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
}

.why-choose-center-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Online Randevu Section */
.appointment-section {
    padding: 80px 0;
    background-color: #f6f6f6;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sol Sütun: Bilgi */
.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
}

.info-icon i {
    font-size: 28px;
}

.info-title {
    font-family: 'Heebo', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #212529;
    margin: 0;
}

.info-text {
    line-height: 1.8;
}

.drop-cap {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #212529;
    margin: 0;
}

.drop-cap-letter {
    font-size: 64px;
    font-weight: bold;
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 8px;
    color: #212529;
}

/* FAQ Section */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    color: #212529;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    color: #5a0d81;
}

.faq-item i {
    font-size: 12px;
    color: #212529;
    transition: transform 0.3s ease;
}

.faq-item:hover i {
    transform: translateX(3px);
    color: #5a0d81;
}

/* Sağ Sütun: Form */
.appointment-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title {
    font-family: 'Heebo', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #212529;
    margin: 0;
}

.appointment-form-box {
    background-color: #ededed;
    border-radius: 8px;
    padding: 40px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    background-color: #fff;
    color: #212529;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1d5c58;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    background-color: #1d5c58;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #174a47;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background-color: #fff;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stat-icon i {
    font-size: 32px;
    color: #212529;
}

.stat-number {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    font-weight: bold;
    color: #1E3A8A;
    line-height: 1;
}

.stat-label {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1E3A8A;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 50px 0;
    background-color: #f0f0f0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #212529;
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

.cta-button {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
    background-color: #1d5c58;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    background-color: #174a47;
    transform: translateY(-2px);
}

/* Ana İçerik */
main {
    min-height: calc(100vh - 300px);
    padding: 40px 0;
}

/* Footer */
.main-footer {
    background-color: #e6e7e9;
    color: #212529;
    padding: 60px 0 0 0;
    /* margin-top: 50px; */
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo ve Sosyal Medya Bölümü */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
}

.footer-clinic-name {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.clinic-name-main {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #212529;
    line-height: 1.2;
}

.clinic-name-sub {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    color: #212529;
    line-height: 1.3;
}

.footer-social-media {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #212529;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-social-icon:hover {
    background-color: #1d5c58;
    transform: translateY(-2px);
}

.footer-social-icon i {
    font-size: 16px;
}

/* İletişim Bilgileri */
.footer-contact-item {
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-label {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-value {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    color: #212529;
    margin: 0;
    line-height: 1.6;
}

.footer-contact-value a {
    color: #212529;
    text-decoration: none;
}

.footer-contact-value a:hover {
    color: #212529;
    text-decoration: none;
}

/* Link Bölümleri */
.footer-section-title {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5a0d81;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 25px 20px;
    margin-top: 30px;
    background-color: #d4d5d8;
    font-size: 13px;
    color: #333;
    font-family: 'Heebo', sans-serif;
    box-sizing: border-box;
}

/* WhatsApp Sabit İkon */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float i,
.whatsapp-float svg {
    font-size: 28px;
    flex-shrink: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Top Bar Mobil */
    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .top-bar-left {
        display: none;
    }
    
    .top-bar-right {
        width: 100%;
        margin-top: 0;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
    }
    
    .social-media {
        justify-content: flex-start;
        gap: 8px;
        flex-shrink: 0;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .social-icon i {
        font-size: 11px;
    }
    
    .phone-number {
        flex-shrink: 0;
        text-align: center;
        padding: 6px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    /* Header Mobil */
    .main-header {
        padding: 12px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
        position: relative;
    }
    
    .logo-section {
        order: 1;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }
    
    .language-selector {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
        gap: 8px;
    }
    
    .lang-flag {
        width: 32px;
        height: 32px;
    }
    
    .main-nav {
        order: 4;
        width: 100%;
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        background-color: #021e1f;
        padding: 15px 0;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 12px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    /* Mobil: accordion alt menü - tıklanınca açılır, taşma yok */
    .nav-menu li.has-dropdown {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-menu li.has-dropdown .nav-parent {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .nav-menu li.has-dropdown .nav-dropdown {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0,0,0,0.25);
        grid-template-rows: unset;
        grid-auto-flow: unset;
        grid-auto-columns: unset;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-menu li.has-dropdown.open .nav-dropdown {
        display: block;
    }
    .nav-menu li.has-dropdown .nav-dropdown li a {
        padding: 10px 20px 10px 28px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 14px;
    }
    .nav-menu li.has-dropdown .nav-dropdown li:last-child a {
        border-bottom: none;
    }
    .nav-menu li.has-dropdown .nav-parent i.fa-chevron-down {
        transition: transform 0.2s ease;
    }
    .nav-menu li.has-dropdown.open .nav-parent i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Hero Slider Mobil */
    .hero-slider-wrapper {
        height: 400px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }
    
    .hero-button {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    /* Services Section Mobil */
    .services-section {
        padding: 40px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .service-icon {
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 36px;
    }
    
    .service-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    /* Treatments Section Mobil */
    .treatments-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .treatment-image {
        height: 120px;
    }
    
    .treatment-title {
        font-size: 14px;
        padding: 12px 8px;
    }
    
    /* Why Choose Section Mobil */
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .why-choose-title {
        font-size: 26px;
    }
    
    .why-choose-subtitle {
        font-size: 14px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-center {
        order: -1;
    }
    
    .why-choose-center-circle {
        width: 180px;
        height: 180px;
    }
    
    .why-choose-left .why-choose-item,
    .why-choose-right .why-choose-item {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .why-choose-left {
        text-align: left;
    }
    
    .why-choose-left .why-choose-item {
        flex-direction: row;
    }
    
    .why-choose-item {
        gap: 15px;
    }
    
    .why-choose-item-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    /* Online Randevu Section Mobil */
    .appointment-section {
        padding: 50px 0;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .info-title,
    .form-title {
        font-size: 24px;
    }
    
    .drop-cap-letter {
        font-size: 48px;
    }
    
    .appointment-form-box {
        padding: 25px 20px;
    }
    
    .appointment-form {
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .submit-btn {
        font-size: 15px;
        padding: 12px 25px;
    }
    
    /* Statistics Section Mobil */
    .statistics-section {
        padding: 50px 0;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* CTA Banner Section Mobil */
    .cta-banner-section {
        padding: 40px 0;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
        text-align: center;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 30px;
    }
    
    /* Footer Mobil */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .main-footer {
        padding: 40px 0 0 0;
    }
    
    .footer-logo-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .clinic-name-main {
        font-size: 18px;
    }
    
    .clinic-name-sub {
        font-size: 13px;
    }
    
    .footer-social-media {
        margin-top: 10px;
    }
    
    .footer-contact-item {
        margin-bottom: 15px;
    }
    
    .footer-section-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider-wrapper {
        height: 350px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .top-bar {
        font-size: 11px;
    }
    
    .info-item {
        font-size: 10px;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

