/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #f8f6f2;
    color: #333;
    line-height: 1.6;
}

/* Header ve navigasyon */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #f8f6f2;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #8a9a8e;
    font-size: 1.2rem;
    font-weight: 600;
}

.logo img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.1);
}

.logo-subtext {
    font-size: 0.9rem;
    color: #666;
    margin-top: -5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: #8a9a8e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #738277;
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 5%;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Genel section stili */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    position: relative;
}

/* Hero bölümü */
.hero {
    background-color: #f8f6f2;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 0;
    position: relative;
    height: 100%;
}

.hero-text {
    flex: 0 1 40%;
    padding: 4rem 5%;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 0 1 60%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-image img {
    width: auto;
    height: 85%;
    object-fit: contain;
    object-position: right bottom;
    margin: 0;
    border-radius: 0;
    max-width: none;
    transform: scale(1);
}

@media (max-width: 768px) {
    .hero-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Retina ekranlar için */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image img {
        image-rendering: -webkit-optimize-contrast;
    }
}

.title-group {
    margin-bottom: 2rem;
}

.title-group h1 {
    color: #8a9a8e;
    font-size: 3rem;
    margin: 0;
    line-height: 1.2;
    font-weight: 600;
}

.title-group h2 {
    display: none;
}

.hero-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: 2px solid #8a9a8e;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    background-color: transparent;
    color: #8a9a8e;
}

.btn-primary:hover, .btn-secondary:hover {
    color: white;
    background-color: #738277;
    border-color: #738277;
}

.btn-secondary, .zl-url {
    background-color: transparent !important;
    border: 2px solid #8a9a8e !important;
    color: #8a9a8e !important;
    padding: 1rem 2rem !important;
    border-radius: 5px !important;
    font-size: 1rem !important;
    text-decoration: none !important;
}

.btn-secondary:hover, .zl-url:hover {
    color: white !important;
    background-color: #738277 !important;
    border-color: #738277 !important;
}

@media (max-width: 1024px) {
    .social-links {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        flex: none;
        width: 100%;
        text-align: center;
        padding: 2rem 5%;
    }

    .hero-image {
        flex: none;
        width: 100%;
        height: 60vh;
        overflow: hidden;
        align-items: flex-end;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        transform: scale(1.1);
    }

    .title-group h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Hakkımda section */
.about {
    background-color: white;
    min-height: 100vh;
    padding: 4rem 5%;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 6rem;
}

.about h2 {
    color: #8a9a8e;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.about-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.about-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-section {
    padding: 2rem;
    background-color: #f8f6f2;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
}

.about-section h3 {
    color: #8a9a8e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-section p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        flex: 0 0 250px;
    }

    .about-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .about-text {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero {
        padding-top: 6rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-image {
        flex: 1;
        width: 100%;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img {
        max-width: 500px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        padding: 2rem 5% 0;
        text-align: center;
        margin-top: 0;
    }

    .hero-text {
        width: 100%;
        padding: 0 1rem;
    }

    .hero-image {
        width: 100%;
        margin-top: 2rem;
        margin-bottom: -4px;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .title-group {
        margin-bottom: 1rem;
    }

    .title-group h1 {
        font-size: 2rem;
    }

    .title-group h2 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        max-width: 100%;
    }

    .title-group h1 {
        font-size: 1.8rem;
    }

    .title-group h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

/* Blog Önizleme Bölümü */
.blog-preview {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.blog-preview .section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4A6FDC;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 0.85rem;
}

.blog-date {
    color: #888;
}

.blog-date i {
    margin-right: 5px;
}

.read-more {
    color: #4A6FDC;
    font-weight: 500;
    transition: color 0.3s;
}

.read-more i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.blog-card:hover .read-more i {
    transform: translateX(3px);
}

.view-all-container {
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .blog-cards {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .blog-cards {
        grid-template-columns: 1fr;
    }
}

/* Hizmetler section */
.services {
    background-color: #f8f6f2;
    min-height: 100vh;
    padding: 4rem 5%;
}

.services h2 {
    color: #8a9a8e;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: #8a9a8e;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #444;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Hizmet Detay Sayfası */
.service-detail {
    padding: 4rem 0;
    background: #f9f9f9;
}

.service-detail .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-content {
    background: #fff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-description {
    color: #444;
}

.service-description h1 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.service-image {
    margin: 2rem auto 3rem;
    max-width: 600px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.service-description h2 {
    color: #333;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.service-description p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-description ul,
.service-description ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cta-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section .btn-primary {
    margin-top: 1.5rem;
}

/* Hizmetler Sayfası */
.services-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-page h1 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.services-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #8a9a8e;
}

.services-page .services-grid {
    margin-top: 30px;
}

/* İletişim section */
.contact {
    background-color: white;
    padding: 4rem 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
    display: flex;
}

.contact-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* İletişim formu */
.contact-form {
    background-color: #f8f6f2;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-desc {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8a9a8e;
}

.submit-btn {
    background-color: #8a9a8e;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.submit-btn:hover {
    background-color: #738277;
}

/* İletişim bilgileri */
.contact-info {
    background-color: #f8f6f2;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    color: #8a9a8e;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item p {
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8a9a8e;
}

/* Harita */
.contact-map {
    flex-grow: 1;
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
}

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

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        flex: none;
        width: 100%;
    }

    .contact-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-item {
        padding: 0.5rem;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-map {
        min-height: 250px;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 2rem 5% 0;
        text-align: center;
    }
}

/* Mobil görünümü iyileştirme */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        flex-direction: column;
        height: auto;
    }

    .hero-text {
        flex: none;
        width: 100%;
        text-align: center;
        padding: 3rem 5% 2rem;
    }

    .hero-image {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 70vh;
        margin-top: -2rem;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 10%;
        transform: scale(1.1);
    }

    .title-group h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .title-group {
        margin-bottom: 1rem;
    }

    .title-group h1 {
        font-size: 2rem;
    }

    .title-group h2 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 2rem 5% 1.5rem;
    }

    .hero-image {
        min-height: 60vh;
    }

    .title-group h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        margin: 0;
    }
}

/* WhatsApp ikonu */
.whatsapp-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-icon i {
    font-size: 2rem;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    background-color: #25D366;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* WhatsApp sabit ikonu - standardize edilmiş versiyon */
.whatsapp-fixed-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-fixed-icon i {
    font-size: 2rem;
}

.whatsapp-fixed-icon:hover {
    transform: scale(1.1);
    background-color: #25D366;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-fixed-icon {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-fixed-icon i {
        font-size: 1.7rem;
    }
}

/* Scroll bar özelleştirme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8f6f2;
}

::-webkit-scrollbar-thumb {
    background: #8a9a8e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7a8a7e;
}

/* Firefox için scroll bar özelleştirme */
* {
    scrollbar-width: thin;
    scrollbar-color: #8a9a8e #f8f6f2;
}

html {
    scroll-behavior: smooth;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Sosyal medya linkleri */
.social-links {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 100;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #666; 
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: #444; 
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-links a.instagram-icon {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-links a.instagram-icon:hover {
    background: linear-gradient(45deg, #304AD0, #4740C5, #7229A3, #B02473, #D01F5B, #EC0C0C);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-links a.linkedin-icon {
    background-color: #0077B5;
}

.social-links a.linkedin-icon:hover {
    background-color: #005F92;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-links a.whatsapp-icon {
    background-color: #25D366;
}

.social-links a.whatsapp-icon:hover {
    background-color: #25D366;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .social-links {
        display: none;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

.social-links, .service-content .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a, .service-content .social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #666; /* Changed to neutral gray */
}

.social-links a:hover, .service-content .social-links a:hover {
    background-color: #444; /* Changed to darker gray */
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-links a.instagram-icon, .service-content .social-links a.instagram-icon {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-links a.instagram-icon:hover, .service-content .social-links a.instagram-icon:hover {
    background: linear-gradient(45deg, #304AD0, #4740C5, #7229A3, #B02473, #D01F5B, #EC0C0C);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-links a.linkedin-icon, .service-content .social-links a.linkedin-icon {
    background-color: #0077B5;
}

.social-links a.linkedin-icon:hover, .service-content .social-links a.linkedin-icon:hover {
    background-color: #005F92;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-links a.whatsapp-icon, .service-content .social-links a.whatsapp-icon {
    background-color: #25D366;
}

.social-links a.whatsapp-icon:hover, .service-content .social-links a.whatsapp-icon:hover {
    background-color: #25D366;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    flex-direction: row;
    position: static;
    transform: none;
    margin-top: 1rem;
}

.footer-section .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Sosyal medya ikonları için özel renkler */
.social-links a.instagram-icon {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-links a.instagram-icon:hover {
    background: linear-gradient(45deg, #304AD0, #4740C5, #7229A3, #B02473, #D01F5B, #EC0C0C);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-links a.linkedin-icon {
    background-color: #0077B5;
}

.social-links a.linkedin-icon:hover {
    background-color: #005F92;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-links a.whatsapp-icon {
    background-color: #25D366;
}

.social-links a.whatsapp-icon:hover {
    background-color: #25D366;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Font yükleme kontrolü */
.fonts-loaded {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Footer Stilleri */
.footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f6f2;
    color: #8a9a8e;
    font-size: 0.9rem;
    border-top: 1px solid #e5e5e5;
    margin-top: 2rem;
}

.footer a {
    color: #8a9a8e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #738277;
}

footer {
    background-color: #f8f6f2;
    color: #333;
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #8a9a8e;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #8a9a8e;
}

.footer-section p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-section i {
    margin-right: 10px;
    color: #8a9a8e;
}

.footer-section a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8a9a8e;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.footer-links {
    list-style: none;
}

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

.footer-links li a {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    background-color: #efe9e0;
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.privacy-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #8a9a8e;
}

.mt-3 {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Randevu al butonu için özel stiller */
#zl-url,
.zl-url,
a#zl-url,
a.zl-url,
.hero-buttons .zl-url,
.hero-buttons a.zl-url {
    background-color: transparent !important;
    border: 2px solid #8a9a8e !important;
    color: #8a9a8e !important;
    padding: 1rem 2rem !important;
    border-radius: 5px !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: normal !important;
    text-align: center !important;
    margin: 0 !important;
    box-shadow: none !important;
}

#zl-url:hover,
.zl-url:hover,
a#zl-url:hover,
a.zl-url:hover,
.hero-buttons .zl-url:hover,
.hero-buttons a.zl-url:hover {
    color: white !important;
    background-color: #738277 !important;
    border-color: #738277 !important;
    text-decoration: none !important;
}

/* Doktortakvimi widget stillerini override et */
[data-zlw-doctor="ramazan-ozdemir-4"] {
    background-color: transparent !important;
    border: 2px solid #8a9a8e !important;
    color: #8a9a8e !important;
}

[data-zlw-doctor="ramazan-ozdemir-4"]:hover {
    color: white !important;
    background-color: #738277 !important;
    border-color: #738277 !important;
}
