/* Kadıköy İlaçlama Sayfa Stilleri */

/* Hero Section */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #28a745;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Content Layout */
.page-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.main-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-content h2 {
    color: #2c5aa0;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #28a745;
    padding-bottom: 10px;
}

.main-content h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.main-content h4 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
}

.main-content h5 {
    color: #333;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}

.main-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.main-content ul {
    margin: 1rem 0;
    padding-left: 20px;
}

.main-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Districts Grid */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.district-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.district-item h4 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.advantage-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.advantage-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-item {
    background: white;
    padding: 20px;
    margin: 1rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2rem 0;
    max-width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    min-height: 60px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #28a745;
    width: 30px;
    text-align: center;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.3rem;
}

.contact-item p, .contact-item div {
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.4;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.cta-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: white;
    margin-bottom: 1rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #28a745;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    color: #28a745;
    text-decoration: none;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2c5aa0;
    color: white !important;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-btn:hover {
    background: #1e3f6b;
    color: white !important;
    text-decoration: none;
}

.contact-btn i {
    color: white !important;
}

.sidebar-widget ul {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: #28a745 #f1f1f1;
}

.sidebar-widget ul::-webkit-scrollbar {
    width: 6px;
    background: #f1f1f1;
}
.sidebar-widget ul::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 4px;
}

.sidebar-widget li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget a:hover {
    color: #28a745;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .main-content {
        padding: 25px;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .districts-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }
    
    .contact-item i {
        align-self: flex-start;
        margin-top: 2px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .hero-btn,
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
} 