@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/sGilroy-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/sGilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/sGilroy-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/sGilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/sGilroy-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary: #e1000e;
    --secondary: #ffffff;
    --dark: #4c5473;
    --light: #f5f5fc;
    --gray: #666666;
    
    /* Blog arka plan renkleri - 20 farklı açık renk */
    --blog-color-1: #f8f9fa;
    --blog-color-2: #e9f5f8;
    --blog-color-3: #f3f8e6;
    --blog-color-4: #faf4f0;
    --blog-color-5: #f0f4fa;
    --blog-color-6: #f5f5f5;
    --blog-color-7: #f8e9e9;
    --blog-color-8: #e8f6f0;
    --blog-color-9: #f9f3f9;
    --blog-color-10: #f0f8ff;
    --blog-color-11: #f5f8e6;
    --blog-color-12: #fcf5e8;
    --blog-color-13: #edf7fa;
    --blog-color-14: #fbf3f2;
    --blog-color-15: #f1f8e9;
    --blog-color-16: #fef8e3;
    --blog-color-17: #edf2fb;
    --blog-color-18: #f7f0f7;
    --blog-color-19: #e6f7f2;
    --blog-color-20: #f9f9eb;
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', sans-serif;
    line-height: 1.2;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Menü Styles */
header {
    background: linear-gradient(118deg, #121726, #1b1f32);
    width: 100%;
    transition: all 0.3s ease;
  
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10px;
    max-width: 1350px;
    margin: 0 auto;
}

.logo a {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* Mobil Menü Stilleri */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-toggle .line {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: all 0.4s ease;
    position: relative;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #1e2130;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
        z-index: 1000;
        padding: 80px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .menu.active {
        right: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    body.menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .menu a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .menu.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-toggle.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active .line:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(118deg, #121726, #1b1f32);
    display: flex;
    align-items: center;
    position: relative;
    clip-path: ellipse(120% 100% at top center);
    z-index: 1;
    min-height: 70vh;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.dots-bg {
    position: absolute;
    left: -40px;
    top: 0px;
    width: 350px;
    height: 350px;
    transform: rotate(12deg);
    z-index: -1;
    user-select: none;
    opacity: 0.5;
}

.dots-bg img {
    width: 100%;
    height: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: floatAnimation 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-align: left;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin: 0 auto 30px;
    }
}

.hero-title span {
    color: var(--secondary);
    background: var(--primary);
    padding: 0 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .dots-bg {
        display: none;
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary);
}

.swiper-pagination-bullet {
    background: var(--secondary);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #25D366;
    color: var(--secondary);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button i {
    font-size: 24px;
}

.whatsapp-button span {
    font-size: 14px;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
    }
    
    .whatsapp-button span {
        display: none;
    }
    .hero-section {
        padding-top: 75px;
        clip-path: ellipse(170% 100% at top center);
    }
}

/* Contact Page Responsive Fixes */
.contact-hero-section {
    padding: 100px 20px 60px; /* Üst padding artırıldı header'ın altında kalmaması için */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-panel {
        order: 2;
    }
    
    .contact-map-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-section {
        padding: 120px 20px 60px; /* Mobile'da header'ın altında kalmaması için padding artırıldı */
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-info-item {
        padding: 15px;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-panel {
        padding: 20px;
    }
    .services-hero-content h1, .about-hero-content h1, .contact-hero-content h1 {
        font-size:2rem !important;
    }
    .services-hero-content p, .about-hero-content p, .contact-hero-content p {
        font-size:1rem !important;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .info-icon {
        font-size: 1.5rem;
    }
    
    .info-details h3 {
        font-size: 1.1rem;
    }
}

/* Blog Styles */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.blog-card {
    display: flex;
    background: var(--secondary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 200px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-image {
    flex: 0 0 300px;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark);
}

.blog-excerpt {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.5;
    flex: 1;
}

.blog-date {
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date i {
    color: var(--primary);
}

.btn-read-more {
    align-self: flex-start;
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-read-more:hover {
    background-color: #e60000;
    transform: translateY(-3px);
}

/* Blog renklerini uygula - mod operatörü kullanarak sonsuz döngü sağla */
.blog-card:nth-child(20n+1), .blog-card:nth-child(20n+21), .blog-card:nth-child(20n+41) { background-color: var(--blog-color-1); }
.blog-card:nth-child(20n+2), .blog-card:nth-child(20n+22), .blog-card:nth-child(20n+42) { background-color: var(--blog-color-2); }
.blog-card:nth-child(20n+3), .blog-card:nth-child(20n+23), .blog-card:nth-child(20n+43) { background-color: var(--blog-color-3); }
.blog-card:nth-child(20n+4), .blog-card:nth-child(20n+24), .blog-card:nth-child(20n+44) { background-color: var(--blog-color-4); }
.blog-card:nth-child(20n+5), .blog-card:nth-child(20n+25), .blog-card:nth-child(20n+45) { background-color: var(--blog-color-5); }
.blog-card:nth-child(20n+6), .blog-card:nth-child(20n+26), .blog-card:nth-child(20n+46) { background-color: var(--blog-color-6); }
.blog-card:nth-child(20n+7), .blog-card:nth-child(20n+27), .blog-card:nth-child(20n+47) { background-color: var(--blog-color-7); }
.blog-card:nth-child(20n+8), .blog-card:nth-child(20n+28), .blog-card:nth-child(20n+48) { background-color: var(--blog-color-8); }
.blog-card:nth-child(20n+9), .blog-card:nth-child(20n+29), .blog-card:nth-child(20n+49) { background-color: var(--blog-color-9); }
.blog-card:nth-child(20n+10), .blog-card:nth-child(20n+30), .blog-card:nth-child(20n+50) { background-color: var(--blog-color-10); }
.blog-card:nth-child(20n+11), .blog-card:nth-child(20n+31), .blog-card:nth-child(20n+51) { background-color: var(--blog-color-11); }
.blog-card:nth-child(20n+12), .blog-card:nth-child(20n+32), .blog-card:nth-child(20n+52) { background-color: var(--blog-color-12); }
.blog-card:nth-child(20n+13), .blog-card:nth-child(20n+33), .blog-card:nth-child(20n+53) { background-color: var(--blog-color-13); }
.blog-card:nth-child(20n+14), .blog-card:nth-child(20n+34), .blog-card:nth-child(20n+54) { background-color: var(--blog-color-14); }
.blog-card:nth-child(20n+15), .blog-card:nth-child(20n+35), .blog-card:nth-child(20n+55) { background-color: var(--blog-color-15); }
.blog-card:nth-child(20n+16), .blog-card:nth-child(20n+36), .blog-card:nth-child(20n+56) { background-color: var(--blog-color-16); }
.blog-card:nth-child(20n+17), .blog-card:nth-child(20n+37), .blog-card:nth-child(20n+57) { background-color: var(--blog-color-17); }
.blog-card:nth-child(20n+18), .blog-card:nth-child(20n+38), .blog-card:nth-child(20n+58) { background-color: var(--blog-color-18); }
.blog-card:nth-child(20n+19), .blog-card:nth-child(20n+39), .blog-card:nth-child(20n+59) { background-color: var(--blog-color-19); }
.blog-card:nth-child(20n+20), .blog-card:nth-child(20n+40), .blog-card:nth-child(20n+60) { background-color: var(--blog-color-20); }

/* Home Page Latest Blogs Section */
.latest-blogs-section {
    padding: 80px 0;
    background-color: var(--light);
}

.latest-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.home-blog-card {
    display: flex;
    flex-direction: column;
    background: var(--secondary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.home-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.home-blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.1);
}

.home-blog-content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.home-blog-title {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.home-blog-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
    flex: 1;
}

.home-blog-date {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.home-blog-date i {
    color: var(--primary);
}

.home-blog-button {
    margin-top: auto;
}

/* Son eklenen blogların arka planı için rastgele renkler */
.home-blog-card:nth-child(3n+1) { background-color: var(--blog-color-1); }
.home-blog-card:nth-child(3n+2) { background-color: var(--blog-color-8); }
.home-blog-card:nth-child(3n+3) { background-color: var(--blog-color-15); }

/* Responsive tasarım için medya sorguları */
@media (max-width: 992px) {
    .latest-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .latest-blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .home-blog-image {
        height: 200px;
    }
    
    .home-blog-content {
        padding: 20px;
    }
    
    .home-blog-title {
        font-size: 1.2rem;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pagination-link:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.pagination-link.active {
    background-color: var(--primary);
    color: var(--secondary);
}

/* Blog Detail Styles */
.blog-detail-section {
    padding: 80px 0;
}

.blog-detail-header {
    margin-bottom: 40px;
}

.blog-detail-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
    line-height: 1.2;
}

/* Blog meta bilgisi için stil */
.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 0.95rem;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 20px;
}

.blog-meta i {
    color: var(--primary);
}

.blog-detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-detail-content {
    background-color: var(--secondary);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    color: var(--dark);
    line-height: 1.6;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content h2, 
.blog-detail-content h3, 
.blog-detail-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.blog-detail-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.blog-detail-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Services Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--secondary);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Services Page Styles */
.services-section {
    display: none; /* Eski hizmetler sectionunu gizle */
}

.services-hero-section,
.about-hero-section,
.contact-hero-section {
    background: linear-gradient(118deg, #121726, #1b1f32);
    color: var(--secondary);
    padding: 120px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.services-hero-content,
.about-hero-content,
.contact-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.services-hero-content h1,
.about-hero-content h1,
.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
}

.services-hero-content p,
.about-hero-content p,
.contact-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light);
}

.services-intro-section {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.services-intro-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 0, 0, 0.03);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
}

.services-intro-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 0, 0, 0.02);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--secondary);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover .service-icon {
    background: rgba(255, 0, 0, 0.1);
    transform: scale(1.05);
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.service-info p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

.service-cta-section {
    padding: 100px 0;
    background-color: var(--secondary);
}

.service-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-info {
    padding-right: 30px;
}

.cta-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.cta-info p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.service-cta-content:hover .cta-image img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-hero-content h1 {
        font-size: 3rem;
    }
    
    .services-intro h2 {
        font-size: 2.4rem;
    }
    
    .service-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-info {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-hero-section {
        padding: 100px 0;
    }
    
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1.1rem;
    }
    
    .services-intro h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-info h3 {
        font-size: 1.3rem;
    }
}

/* Ana Sayfa Hizmetler Stil Override */
.home-services .service-card {
    flex-direction: row;
    text-align: left;
    padding: 20px;
    gap: 20px;
}

.home-services .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
}

/* Home Services Preview Styles */
.services-preview {
    padding: 80px 0;
    background: var(--light);
}

.services-preview .services-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
}

.services-preview .service-card {
    background: var(--secondary);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.services-preview .service-icon {
    width: 50px;
    height: 50px;
    margin: 0;
}

.services-preview .service-info {
    flex: 1;
}

.services-preview .service-info h3 {
    margin: 0;
    font-size: 1.1rem;
}

.services-cta {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .services-preview .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 20px;
    }
}

/* Home Services Grid */
.home-services-section {
    padding: 80px 0;
    background: var(--light);
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.home-service-card {
    background: var(--primary);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.home-service-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: rotate(2deg);
    background: #1e2130;
    z-index: -1;
    border-radius: 10px;
}

.home-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.service-content p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
}

.section-title {
    font-size: 25px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--gray);
}

.section-title .services-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--secondary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.section-title .services-arrow:hover {
    background: #e60000;
    transform: translateX(5px);
}

.section-title .services-arrow i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .section-title p {
        flex-direction: column;
        gap: 5px;
    }
}

.service-action {
    text-align: center;
    margin-top: 40px;
}

.service-action .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    background: var(--primary);
    color: var(--secondary);
    transition: all 0.3s ease;
}

.service-action .btn-primary:hover {
    background: #e60000;
}

.home-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.home-services .service-card {
    background: var(--secondary);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.home-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-service {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .featured-service-content h3 {
        font-size: 1.5rem;
    }
    
    .home-service-card .service-icon {
        height: 70px;
        width: 70px;
        margin-top: -35px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .home-service-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .home-services-section {
        padding: 70px 0;
    }
    
    .featured-service-icon {
        flex: 0 0 90px;
        height: 90px;
    }
    
    .home-service-card .service-icon {
        height: 60px;
        width: 60px;
        margin-top: -30px;
        padding: 8px;
    }
}

/* Eski home-services class'ları ile çakışmayı önlemek için */
.home-services {
    display: none;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light);
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: var(--secondary);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-box .icon {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-box p {
    color: var(--gray);
    line-height: 1.5;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    color: var(--secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #1e2130;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light);
}

/* Footer Styles */
.footer {
    background: #1e2130;
    color: var(--secondary);
}

.footerTop {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.05);
}

.footerTop .dataList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footerTop .dataList .item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.footerTop .dataList .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 15px;
}

.footerTop .dataList .text span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.footerBody {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footerBody .detail p {
    margin-top: 10px;
    color: #fff;
}

.footerBody .actions .links ul {
    list-style: none;
    padding: 0;
}

.footerBody .actions .links ul li {
    color: var(--white-color);
    font-size: 18px;
    background: #ffffff05;
    margin-bottom: 10px;
    padding: 12px 20px;
    padding-left: 35px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.footerBody .actions .links ul li a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerBody .actions .links ul li a:hover {
    color: var(--primary);
}

.footerEnd {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footerEnd .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

@media (max-width: 768px) {
    .footerTop .dataList {
        grid-template-columns: 1fr 1fr;
    }

    .footerBody {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footerBody .actions .links ul li {
        font-size: 16px;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        background: #1e2130;
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .menu.active {
        display: flex;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        flex: 0 0 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        margin-bottom: 15px;
        font-size: 0.95rem;
    }
    
    .blog-date {
        margin-bottom: 10px;
    }
    
    .btn-read-more {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-content {
        padding: 25px;
    }
    
    .blog-meta {
        margin-bottom: 20px;
    }
    
    .blog-meta span {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
    }
    
    .blog-image {
        flex: 0 0 180px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .pagination-link {
        width: 35px;
        height: 35px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sıkça Sorulan Sorular Bölümü Stilleri */
.faq-section {
    padding: 100px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 0, 0, 0.03);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 0, 0, 0.02);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.faq-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--light);
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: #fff;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    padding-right: 30px;
    transition: all 0.3s ease;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background-color: #fff;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    padding-bottom: 20px;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
}

.faq-item.active .faq-toggle i {
    color: var(--secondary);
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background-color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px;
}

.testimonial-faq {
    margin: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonials, .faq {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials .comment p {
    font-style: italic;
    color: var(--dark);
}

.faq .accordion .item {
    margin-bottom: 10px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq .accordion .item .head {
    padding: 15px;
    background: var(--primary);
    color: var(--secondary);
    cursor: pointer;
}

.faq .accordion .item .body {
    padding: 15px;
    display: none;
    background: var(--light);
    color: var(--dark);
}

.faq .accordion .item.active .body {
    display: block;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-toggle {
        width: 25px;
        height: 25px;
        right: 20px;
    }
    
    .faq-toggle i {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
}

/* -------------------------- MainSMM -------------------------- */
section.mainSMM {
    margin-top: 200px;
    padding: 0 0 100px;
    position: relative;
}

section.mainSMM::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.mainSMM .smmUsers {
    margin: 0 auto;
    max-width: 500px;
    display: grid;
    grid-template-columns: auto 30% 30% auto;
    grid-gap: 10px;
    align-items: center;
    transform: translateY(-50%);
    margin-bottom: -20px;
    position: relative;
}

.mainSMM .smmUsers img {
    width: 100%;
    border-radius: 100%;
    border: 7px solid var(--secondary);
    object-fit: cover;
    aspect-ratio: 1/1;
    margin: 0 auto;
}

.mainSMM .heading {
    position: relative;
    z-index: 1;
}

.mainSMM .heading span {
    color: var(--secondary);
    font-size: var(--fs25);
    display: block;
}

.mainSMM .heading h2 {
    font-size: var(--fs40);
    color: var(--white-color);
    margin-bottom: 10px;
}

.mainSMM .heading p {
    font-size: 18px;
    color: var(--light);
}

.mainSMM .heading .image {
    position: absolute;
    right: 30px;
    bottom: -5px;
    transform: rotate(5deg);
}

.mainSMM .heading .image img {
    width: 150px;
}

.mainServiceList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    margin-top: 30px;
}

.mainServiceList .item {
    color: #fff;
    font-weight: 600;
    background: #50556a;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    font-size: 20px;
    letter-spacing: 0.7px;
    border-radius: 2px;
}

.mainServiceList .item.surgery {
    background: #e95858;
}

.mainServiceList .item.vaccination {
    background: #4dc6e5;
}

.mainServiceList .item.grooming {
    background: #ec468e;
}

.mainServiceList .item.diagnostics {
    background: #8d64ee;
}

.mainServiceList .item.microchip {
    background: #52c752;
}

.mainServiceList .item.emergency {
    background: #353a6b;
}

.mainServiceList .item.dental {
    background: #4fa9d6;
}

.mainServiceList .item.nutrition {
    background: #4867cd;
}

.mainServiceList .item i {
    font-size: 28px;
    margin-right: 10px;
}

.mainSMM .mainServiceAction {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainSMM .mainServiceAction .icons {
    display: flex;
    align-items: center;
    background: #ffffff10;
    padding: 15px 20px;
    border-radius: 5px;
}

.mainSMM .mainServiceAction .icons i {
    font-size: 23px;
    color: #fff;
    margin: 0 10px;
}

.mainSMM .mainServiceAction .target a {
    color: var(--secondary);
    background: var(--primary);
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.mainSMM .mainServiceAction .target a:hover {
    background: #e60000;
}
/* General Styles */
.contact-hero-section {
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #f5f5f5;
}

.contact-main-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-panel {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.info-icon {
    font-size: 2rem;
    color: #e1000e;
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #212121;
}

.info-details p {
    color: #666666;
}

.contact-hours {
    margin-top: 30px;
}

.hours-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #212121;
    margin-bottom: 15px;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-social-section {
    padding: 80px 20px;
    background: #ffffff;
}

.social-connect-panel {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #212121;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: #e1000e;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
/* General Styles */
.about-hero-section {
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #f5f5f5;
}

.about-intro-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #212121;
}

.about-text p {
    margin-bottom: 20px;
    color: #666666;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e1000e;
}

.stat-text {
    font-size: 1rem;
    color: #666666;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #e1000e;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.our-values-section {
    padding: 80px 20px;
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2rem;
    color: #e1000e;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #212121;
}

.value-card p {
    color: #666666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Müşteri Yorumları Stili */
.reviews-section {
    position: relative;
    background: #1e2130;
    padding-bottom: 80px;
}

.reviews-section::after {
    content: "";
    position: absolute;
    left: calc(50% - 20px);
    bottom: -14px;
    width: 40px;
    height: 15px;
    background: #1e2130;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 2;
}

.reviewTop {
    background: var(--primary);
    padding: 30px 0;
    margin-bottom: 50px;
}

.reviewTop .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewTop .detail {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviewTop .detail .icon i {
    font-size: 48px;
    color: #fff;
}

.reviewTop .detail .text h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.topDetail {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
}

.topDetail .info span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.topDetail .average {
    text-align: center;
}

.topDetail .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.topDetail .average strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.reviewsArea {
    position: relative;
    padding: 20px 0;
}

.reviewsList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review {
    background: #272b3c;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.review .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review .name {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.review .rate {
    color: #FFD700;
}

.review .text {
    color: #aeb5cd;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .reviewsList {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviewTop .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .reviewTop .detail {
        flex-direction: column;
        gap: 10px;
    }

    .reviewTop .detail .icon {
        display: none; /* Mobilde iconu gizle */
    }

    .reviewTop .detail .text h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .topDetail {
        flex-direction: row; /* Yan yana getir */
        justify-content: center;
        gap: 40px;
    }
    
    .reviewsList {
        grid-template-columns: 1fr;
    }
    
    .topDetail {
        flex-direction: column;
        gap: 20px;
    }
    
    .review {
        padding: 20px;
    }
}

/* Section titles with arrow button */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.arrow-wrapper {
    width: 35px;
    height: 35px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-wrapper i {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary);
}

.view-all-link:hover .arrow-wrapper {
    transform: scale(1.1);
}

.view-all-link:hover .arrow-wrapper i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .section-view-all {
        flex-direction: column;
        gap: 10px;
    }
    
    .view-all-link {
        font-size: 1rem;
    }
}

/* Yüzen Rozetler Stilleri */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge i {
    margin-right: 8px;
    font-size: 16px;
    color: var(--primary);
}

.floating-badge:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-badge:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Modern Çağrı-Eylem Düğmeleri */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 51, 102, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.btn-outline-modern i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-outline-modern:hover i {
    transform: translateX(5px);
}

/* Hızlı Randevu Bölümü Stilleri */
.quick-appointment-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}



.appointment-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.appointment-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.appointment-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.appointment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.appointment-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}


.feature-text p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
}

.appointment-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.appointment-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.appointment-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    font-family: 'Gilroy', sans-serif;
}


/* Hastalık Bilgi Sekmesi Stilleri */
.disease-tabs-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.tabs-container {
    margin-top: 50px;
}

.tabs-navigation {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #eee;
}

.tabs-navigation::-webkit-scrollbar {
    height: 6px;
}

.tabs-navigation::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 3px;
}

.tabs-navigation::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 3px;
}

.tab-button {
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    margin-right: 15px;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 140px;
}

.tab-button:hover {
    background: rgba(255, 51, 102, 0.05);
    border-color: rgba(255, 51, 102, 0.1);
}

.tab-button.active {
    background: #fff9fa;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.1);
}

.tab-button i {
    margin-right: 8px;
    font-size: 20px;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.diseases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.disease-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.disease-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.disease-header {
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.disease-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.disease-card:hover .disease-header::after {
    width: 100px;
}

.disease-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.disease-category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 51, 102, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.disease-body {
    padding: 25px;
}

.disease-info {
    margin-bottom: 20px;
}

.disease-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.disease-info p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.disease-symptoms {
    margin-bottom: 20px;
}

.disease-symptoms h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.disease-symptoms h4 i {
    color: var(--primary);
    margin-right: 8px;
}

.symptoms-list {
    list-style: none;
}

.symptoms-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.symptoms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.disease-treatment {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.disease-treatment h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.disease-treatment h4 i {
    color: var(--primary);
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .appointment-container {
        gap: 30px;
    }
    
    .appointment-content h2 {
        font-size: 32px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .diseases-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-badges {
        flex-wrap: wrap;
    }
    
    .floating-badge {
        font-size: 13px;
        padding: 7px 14px;
    }
    
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .appointment-features {
        grid-template-columns: 1fr;
    }
    
    .appointment-form {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .appointment-content h2 {
        font-size: 28px;
    }
    
    .appointment-content p {
        font-size: 16px;
    }
    
    .diseases-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-badges {
        margin-bottom: 20px;
    }
    
    .floating-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .floating-badge i {
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-outline-modern {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .quick-appointment-section {
        padding: 60px 0;
    }
    
    .appointment-content h2 {
        font-size: 26px;
    }
    
    .appointment-form {
        padding: 25px;
    }
    
    .appointment-form h3 {
        font-size: 22px;
    }
    
    .form-control {
        padding: 12px;
    }
    
    .tab-button {
        padding: 10px 18px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .tab-button i {
        font-size: 16px;
    }
    
    .diseases-grid {
        grid-template-columns: 1fr;
    }
    
    .disease-header {
        padding: 20px;
    }
    
    .disease-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .quick-appointment-section {
        padding: 40px 0;
    }
    
    .appointment-content h2 {
        font-size: 24px;
    }
    
    .appointment-content p {
        font-size: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .feature-text h4 {
        font-size: 15px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
    
    .appointment-form {
        padding: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-control {
        font-size: 14px;
    }
    
    .submit-btn {
        font-size: 16px;
    }
    
    .disease-name {
        font-size: 18px;
    }
    
    .disease-info p, .disease-treatment p {
        font-size: 14px;
    }
    
    .symptoms-list li {
        font-size: 14px;
    }
}
/* Yüzen Rozetler Stilleri - Görsel etrafında */
.hero-image {
    position: relative;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-top-left {
    top: 10%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.badge-top-right {
    top: 20%;
    right: -5%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.badge-bottom-left {
    bottom: 15%;
    left: -8%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.floating-badge i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 18px;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Modernize Edilmiş Randevu Bölümü (Arka plan kaldırıldı) */
.quick-appointment-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.appointment-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.appointment-content {
    color: #333;
}

.appointment-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: #333;
}

.appointment-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.appointment-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.appointment-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.appointment-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(255, 51, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.appointment-feature:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

.appointment-form-wrapper {
    position: relative;
}

.appointment-form {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-header i {
    font-size: 30px;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

#appointmentForm {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225, 0, 14, 0.1);
    outline: none;
    background-color: white;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(225, 0, 14, 0.2);
    font-family: 'Gilroy', sans-serif;
}

.submit-btn:hover {
    background: #ff1a4f;
    box-shadow: 0 12px 25px rgba(225, 0, 14, 0.3);
    transform: translateY(-3px);
}

.submit-btn i {
    font-size: 20px;
}

/* Modern 4'lü Hizmetler Grid */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-modern-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-modern-card .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 51, 102, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-modern-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(10deg);
}

.service-modern-card .service-icon img {
    width: 40px;
    height: auto;
    transition: all 0.3s ease;
}

.service-modern-card:hover .service-icon img {
    filter: brightness(10);
}

.service-modern-card .service-content {
    flex: 1;
}

.service-modern-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    transition: all 0.3s ease;
}

.service-modern-card:hover h3 {
    color: var(--primary);
}

.service-modern-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobil cihazlarda Daha Fazla Hizmet Göster butonu */
.mobile-more-services-btn {
    display: none;
    margin: 30px auto 0;
    text-align: center;
}

.mobile-more-services-btn button {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-more-services-btn button:hover {
    background: var(--primary);
    color: white;
}

.mobile-more-services-btn i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.mobile-more-services-btn.expanded button {
    background: var(--primary);
    color: white;
}

.mobile-more-services-btn.expanded i {
    transform: rotate(180deg);
}

.mobile-more-services-btn .less-text {
    display: none;
}

.mobile-more-services-btn.expanded .more-text {
    display: none;
}

.mobile-more-services-btn.expanded .less-text {
    display: inline;
}

/* Geliştirilmiş Hastalık Bilgi Bölümü */
.disease-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.disease-tabs {
    margin-top: 40px;
}

.tab-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-bottom: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #eee;
}

.tab-navigation::-webkit-scrollbar {
    height: 6px;
}

.tab-navigation::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 3px;
}

.tab-navigation::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 3px;
}

.disease-tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: auto;
    flex-shrink: 0;
}

.disease-tab-button:hover {
    background: rgba(225, 0, 14, 0.05);
    border-color: rgba(225, 0, 14, 0.1);
}

.disease-tab-button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(225, 0, 14, 0.2);
}

.disease-tab-button i {
    font-size: 20px;
}

.disease-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.disease-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.diseases-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.disease-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.disease-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.disease-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.disease-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.disease-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(225, 0, 14, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.disease-info {
    padding: 20px;
}

.disease-info p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #666;
}

.disease-symptoms {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark);
}

.disease-symptoms span {
    font-weight: 600;
    color: var(--primary);
    margin-right: 5px;
}

.disease-notice {
    margin-top: 50px;
    background: rgba(225, 0, 14, 0.05);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.disease-notice i {
    font-size: 24px;
    color: var(--primary);
}

.disease-notice p {
    margin: 0;
    font-size: 14px;
    color: var(--dark);
}

/* Blog Bölümü Stil Düzenlemeleri */
.latest-blogs-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.latest-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.home-blog-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home-blog-image {
    height: 200px;
    overflow: hidden;
}

.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.1);
}

.home-blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    transition: all 0.3s ease;
}

.home-blog-card:hover .home-blog-title {
    color: var(--primary);
}

.home-blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.home-blog-date i {
    color: var(--primary);
}

.home-blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.home-blog-button {
    margin-top: auto;
}

.home-blog-button .btn-outline {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-blog-button .btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.no-blogs-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
    color: #666;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .floating-badge {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .floating-badge i {
        font-size: 16px;
    }
    
    .badge-top-left {
        left: -2%;
    }
    
    .badge-top-right {
        right: -2%;
    }
    
    .badge-bottom-left {
        left: -4%;
    }
    
    .appointment-container {
        gap: 30px;
    }
    
    .appointment-content h2 {
        font-size: 28px;
    }
    
    .services-modern-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .diseases-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .latest-blogs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .diseases-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .latest-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .floating-badge i {
        font-size: 14px;
    }
    
    .badge-top-left {
        top: 5%;
        left: 5%;
    }
    
    .badge-top-right {
        top: 5%;
        right: 5%;
    }
    
    .badge-bottom-left {
        bottom: 5%;
        left: 5%;
    }
    
    .appointment-content h2 {
        font-size: 26px;
    }
    
    .appointment-content p {
        font-size: 16px;
    }
    
    .appointment-form {
        max-width: 100%;
    }
    
    .form-header {
        padding: 20px;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    #appointmentForm {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Mobil cihazlarda ilk 3 hizmet gösterilir, diğerleri gizlenir */
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mobile-hidden {
        display: none;
    }
    
    .mobile-hidden.show-mobile {
        display: block;
        animation: fadeIn 0.5s ease forwards;
    }
    
    .mobile-more-services-btn {
        display: block;
    }
    
    .disease-tab-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .disease-tab-button i {
        font-size: 16px;
    }
    
    .diseases-list {
        grid-template-columns: 1fr;
    }
    
    .disease-header {
        padding: 15px;
    }
    
    .disease-info {
        padding: 15px;
    }
    
    .latest-blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .floating-badge {
        display: none;
    }
    
    .appointment-content h2 {
        font-size: 24px;
    }
    
    .appointment-content p {
        font-size: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 13px;
    }

    .appointment-form {
        padding: 15px;
    }
    
    .mobile-more-services-btn button {
        width: 100%;
    }
    
    .disease-header h3 {
        font-size: 16px;
    }
    
    .disease-tag {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .disease-symptoms {
        padding: 10px;
        font-size: 13px;
    }
    
    .disease-notice {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: center;
    }
    
    .disease-notice i {
        margin: 0 auto;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Randevu Formu - Feedback ve Modal Stilleri */
.form-alerts {
    margin-bottom: 15px;
}

.form-alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

.form-alert i {
    margin-right: 10px;
    font-size: 18px;
}

.form-alert-error {
    background-color: #fee2e2;
    color: #b91c1c;
    border-left: 4px solid #ef4444;
}

.form-alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Randevu başarı modalı */
.appointment-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 20px;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
    box-shadow: 0 10px 20px rgba(225, 0, 14, 0.2);
    animation: successIconPulse 2s infinite;
}

@keyframes successIconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 0, 14, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(225, 0, 14, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 0, 14, 0);
    }
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.close-modal-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(225, 0, 14, 0.2);
}

.close-modal-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(225, 0, 14, 0.3);
}

/* Loading spinner for submit button */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s infinite linear;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sıkça Sorulan Sorular Bölümü Stilleri */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: linear-gradient(to right, #fcfcfc, #f9f9f9);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question h3,
.faq-question:hover h3 {
    color: var(--primary);
}

.faq-toggle {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 51, 102, 0.1);
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
}

.faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .faq-toggle {
        min-width: 24px;
        height: 24px;
    }
    
    .faq-toggle i {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        max-width: 85%;
    }
    
    .faq-item.active .faq-answer {
        padding: 12px 15px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .modal-content h3 {
        font-size: 20px;
    }
    
    .modal-content p {
        font-size: 14px;
    }
}
