/* Genel stil ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    text-align: center;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* HEADER - PROFESYONEL TASARIM */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #d32f2f 0%, #1976d2 100%);
    padding: 15px 30px;
    color: white;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.3);
    width: 100%;
    position: relative;
    z-index: 1000;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* LOGO STİLÜ */
.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 90px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(2px 2px 6px rgba(255, 255, 255, 0.4));
}

/* TELEFON BUTONU - PROFESYONEL */
.call-button {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    color: #d32f2f;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.call-button:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.call-button:hover::before {
    left: 100%;
}

.call-button:active {
    transform: translateY(0);
}

/* NAVİGASYON MENÜ (İleride eklenebilir) */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::after {
    width: 80%;
}

/* MOBİL MENÜ BUTONU (İleride eklenebilir) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE TASARIM */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 12px 20px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .call-button {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo img {
        height: 40px;
    }
    
    .call-button {
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    /* Mobil menü için temel stil */
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .navbar {
        padding: 8px 12px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .call-button {
        padding: 8px 15px;
        font-size: 13px;
        border-radius: 18px;
    }
}

/* ANİMASYONLAR */
.navbar {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.call-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(211, 47, 47, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    }
}

/* STİCKY HEADER (İsteğe bağlı) */
.navbar.sticky {
    position: fixed;
    top: 0;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* SCROLL DAVRANIŞI İÇİN BOŞLUK */
body.sticky-header {
    padding-top: 80px;
}

/* İKON STİLÜ */
.call-button::before {
    content: "📞";
    font-size: 18px;
}

/* GRADIENT BORDER */
.navbar {
    border-image: linear-gradient(135deg, #d32f2f, #1976d2) 1;
}

/* IŞIK EFECTLERİ */
.navbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}
/* H1 BAŞLIK STİLÜ - PROFESYONEL */
.professional-heading {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin: 40px auto 30px;
    padding: 30px 20px;
    line-height: 1.3;
    position: relative;
    max-width: 1800px;
    width: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, rgba(25, 118, 210, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #d32f2f, #1976d2) 1;
}

.heading-text {
    background: linear-gradient(135deg, #d32f2f 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    margin-bottom: 15px;
}

/* TELEFON LİNKİ */
.phone-link {
    color: #d32f2f;
    font-size: 2.8rem;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    padding: 18px 35px;
    border-radius: 50px;
    border: 3px solid #d32f2f;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
    transition: all 0.4s ease;
    display: inline-block;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    text-shadow: none;
}

.phone-icon {
    margin-right: 15px;
    font-size: 2.5rem;
    vertical-align: middle;
    animation: ring 2s infinite;
    display: inline-block;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.phone-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.phone-link:hover {
    color: #b71c1c;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.5);
    border-color: #b71c1c;
}

.phone-link:hover::after {
    left: 100%;
}

/* ALT METİN */
.sub-text {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1976d2;
    margin-top: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    background: rgba(25, 118, 210, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(25, 118, 210, 0.2);
}

/* ALT ÇİZGİ EFEKTİ */
.professional-heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #d32f2f, #1976d2);
    margin: 25px auto 0;
    border-radius: 3px;
    animation: widthPulse 3s infinite;
}

@keyframes widthPulse {
    0%, 100% { width: 100px; }
    50% { width: 150px; }
}

/* RESPONSIVE TASARIM */
@media (max-width: 1024px) {
    .professional-heading {
        font-size: 2.8rem;
        padding: 25px 15px;
    }
    
    .phone-link {
        font-size: 2.2rem;
        padding: 15px 30px;
    }
    
    .phone-icon {
        font-size: 2rem;
    }
    
    .sub-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .professional-heading {
        font-size: 2.2rem;
        padding: 20px 15px;
        margin: 25px auto;
    }
    
    .heading-text {
        margin-bottom: 10px;
    }
    
    .phone-link {
        font-size: 1.8rem;
        padding: 12px 25px;
        margin: 15px 0;
    }
    
    .phone-icon {
        font-size: 1.6rem;
        margin-right: 10px;
    }
    
    .sub-text {
        font-size: 1.1rem;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .professional-heading {
        font-size: 1.8rem;
        padding: 15px 10px;
        margin: 20px auto;
    }
    
    .phone-link {
        font-size: 1.5rem;
        padding: 10px 20px;
        margin: 12px 0;
    }
    
    .phone-icon {
        font-size: 1.3rem;
        margin-right: 8px;
    }
    
    .sub-text {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .professional-heading::after {
        width: 80px;
        height: 4px;
        margin: 20px auto 0;
    }
}

/* ANİMASYONLAR */
.professional-heading {
    animation: fadeInUp 1s ease-out;
}

.phone-link {
    animation: pulse 2s infinite 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(211, 47, 47, 0.5);
    }
}


/* Ana içerik alanı */
.yayin {
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    width: 100%;
    max-width: 1800px;
    box-sizing: border-box;
}

/* Sabit Görsel Konteyneri */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Görsel Stili - DÜZELTİLDİ */
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    max-width: 100%;
}

/* Blog Sayfası Özel Stiller */
.blog-tarih {
    color: #666;
    font-style: italic;
    margin: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

.blog-icerik {
    line-height: 1.8;
    margin: 30px 0;
    text-align: left;
}

.blog-icerik h2 {
    color: #d32f2f;
    margin: 30px 0 15px 0;
    font-size: 1.5em;
}

.blog-icerik h3 {
    color: #e74c3c;
    margin: 25px 0 12px 0;
    font-size: 1.3em;
}

.blog-icerik h4 {
    color: #c0392b;
    margin: 20px 0 10px 0;
    font-size: 1.1em;
}

.blog-icerik ul {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-icerik li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.blog-cta {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.blog-cta h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.blog-cta a {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
}

.blog-cta a:hover {
    text-decoration: underline;
}

#araButton {
    background: white;
    color: #ff4d6d;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
}

#araButton:hover {
    background: #ff4d6d;
    color: white;
    transform: scale(1.05);
}

/* WhatsApp Butonu */
a.whatsapp-button {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25D366 ;
    color: white ;
    width: 60px ;
    height: 60px ;
    border-radius: 50% ;
    text-align: center ;
    font-size: 30px ;
    line-height: 60px ;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) ;
    z-index: 10000 ;
    text-decoration: none ;
    display: block ;
    transition: all 0.3s ease ;
}

a.whatsapp-button:hover {
    background-color: #128C7E ;
    transform: scale(1.1) ;
}

a.whatsapp-button::before {
    content: "💬" ;
    font-size: 28px ;
}

/* MEDIA QUERIES - RESPONSIVE DÜZENLEMELER */

/* Tablet */
@media (max-width: 1024px) {
    .professional-heading {
        font-size: 22px;
    }
    
    .professional-heading a {
        font-size: 18px;
    }
    
    .navbar {
        padding: 12px 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .call-button {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .professional-heading {
        font-size: 20px;
        padding: 8px;
        margin: 15px auto;
    }
    
    .professional-heading a {
        font-size: 16px;
        padding: 4px 10px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .call-button {
        padding: 2px 8px;
        font-size: 14px;
    }
    
    .yayin {
        padding: 15px;
        margin: 10px auto;
    }
    
    .blog-icerik h2 {
        font-size: 1.3em;
    }
    
    .blog-icerik h3 {
        font-size: 1.1em;
    }
    
    .blog-icerik ul {
        padding: 15px;
    }
    
    .blog-cta {
        padding: 20px;
        margin: 30px 0;
    }
    
    a.whatsapp-button {
        width: 50px ;
        height: 50px ;
        line-height: 50px ;
        font-size: 24px ;
        bottom: 20px ;
        left: 20px ;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .professional-heading {
        font-size: 18px;
    }
    
    .professional-heading a {
        font-size: 14px;
    }
    
    .yayin {
        padding: 12px;
    }
    
    .blog-icerik {
        font-size: 14px;
    }
    
    .blog-icerik h2 {
        font-size: 1.2em;
    }
    
    .blog-icerik ul {
        padding: 12px;
    }
    
    #araButton {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* Modern Arşiv Konteyneri - Güncellenmiş */
.archive-container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1800px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    text-align: center;
    z-index: 100;
}

/* Buton - Güncellenmiş */
.archive-btn {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: bold;
}

.archive-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.archive-btn:active {
    transform: translateY(0);
}

/* Açılır İçerik - Güncellenmiş */
.archive-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 5px;
    border: 1px solid #e0e0e0;
    animation: fadeIn 0.3s ease;
    text-align: left;
    max-height: 400px;
    overflow-y: auto;
}

/* Animasyon */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Liste Stili */
.archive-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-content li {
    margin-bottom: 8px;
}

.archive-content li:last-child {
    margin-bottom: 0;
}

/* Linkler - Güncellenmiş */
.archive-content li a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #007BFF;
    font-size: 14px;
    border-radius: 5px;
    transition: background 0.2s ease;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

.archive-content li a:hover {
    background: #f0f8ff;
    color: #0056b3;
    border-color: #007BFF;
}

/* Scrollbar Stili */
.archive-content::-webkit-scrollbar {
    width: 6px;
}

.archive-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.archive-content::-webkit-scrollbar-thumb {
    background: #007BFF;
    border-radius: 3px;
}

.archive-content::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* MEDIA QUERIES - ARŞİV RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .archive-container {
        max-width: 1024px;
    }
    
    .archive-btn {
        padding: 10px 18px;
        font-size: 15px;
    }
    
    .archive-content {
        padding: 12px;
    }
    
    .archive-content li a {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .archive-container {
        width: 100%;
        max-width: 350px;
    }
    
    .archive-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .archive-content {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 350px;
        max-height: 300px;
    }
    
    .archive-content li a {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .archive-container {
        max-width: 480px;
    }
    
    .archive-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .archive-content {
        max-width: 300px;
        max-height: 250px;
        padding: 10px;
    }
    
    .archive-content li a {
        font-size: 12px;
        padding: 6px 8px;
    }
}

/* Arşiv açıkken arkaplan karartma */
.archive-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* JavaScript ile backdrop eklemek için */
.archive-container.active .archive-backdrop {
    display: block;
}

/* Mobilde arşiv açıkken body scroll'unu engelleme */
body.archive-open {
    overflow: hidden;
}
/* DİKKAT ÇEKİCİ INTRO BÖLÜMÜ */
.intro {
    background: linear-gradient(135deg, #fff8f8, #ffe6e6);
    border: 3px solid #ff4444;
    border-radius: 15px;
    padding: 25px;
    margin: 30px auto;
    max-width: 1800px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: "⚠️";
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(15deg);
    z-index: 0;
}

.intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 15px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.intro p strong {
    color: #d32f2f;
    font-weight: 700;
}

/* DİKKAT UYARI KUTUSU */
.intro .warning {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 2px solid #f44336;
    border-left: 6px solid #f44336;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0 0 0;
    font-size: 17px;
    font-weight: 600;
    color: #c62828;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.2);
    animation: pulseWarning 2s infinite;
    text-align: center;
}

@keyframes pulseWarning {
    0% { box-shadow: 0 4px 15px rgba(244, 67, 54, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(244, 67, 54, 0.4); }
    100% { box-shadow: 0 4px 15px rgba(244, 67, 54, 0.2); }
}

.intro .warning strong {
    color: #b71c1c;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* MEDIA QUERIES - INTRO RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .intro {
        padding: 20px;
        margin: 25px auto;
    }
    
    .intro p {
        font-size: 17px;
    }
    
    .intro .warning {
        font-size: 16px;
        padding: 18px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .intro {
        padding: 18px;
        margin: 20px auto;
        border-width: 2px;
    }
    
    .intro::before {
        font-size: 40px;
        top: -10px;
        right: -10px;
    }
    
    .intro p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .intro .warning {
        font-size: 15px;
        padding: 15px;
        border-left-width: 4px;
    }
    
    .intro .warning strong {
        font-size: 16px;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .intro {
        padding: 15px;
        margin: 15px auto;
        border-radius: 12px;
    }
    
    .intro::before {
        font-size: 30px;
        top: -8px;
        right: -8px;
    }
    
    .intro p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .intro .warning {
        font-size: 14px;
        padding: 12px;
    }
    
    .intro .warning strong {
        font-size: 15px;
    }
}
/* HİZMET VERİLEN İLÇELER BÖLÜMÜ */
.services {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 1800px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "📍";
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 80px;
    opacity: 0.05;
    z-index: 0;
}

.services h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.services h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    margin: 15px auto;
    border-radius: 2px;
}

.services p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin: 12px 0;
    position: relative;
    z-index: 1;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.services p:hover {
    transform: translateX(5px);
    color: #212529;
}

.services p strong {
    color: #007bff;
    font-weight: 700;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* İlçe işaretleri */
.services p::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #007bff;
}

/* ÖZEL VURGULU ALAN */
.services .highlights {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white !important;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0 0 0 !important;
    text-align: center;
    font-size: 20px !important;
    font-weight: 600;
    border: 2px solid #0056b3;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    animation: glow 3s infinite;
    padding-left: 20px !important;
}

.services .highlights::before {
    content: none !important;
}

@keyframes glow {
    0% { box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(0, 86, 179, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3); }
}

/* MEDIA QUERIES - HİZMETLER RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .services {
        padding: 25px;
        margin: 35px auto;
    }
    
    .services h2 {
        font-size: 24px;
    }
    
    .services p {
        font-size: 17px;
        padding-left: 25px;
    }
    
    .services .highlights {
        font-size: 18px !important;
        padding: 18px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .services {
        padding: 20px;
        margin: 30px auto;
        border-radius: 12px;
    }
    
    .services::before {
        font-size: 60px;
        top: -15px;
        left: -15px;
    }
    
    .services h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .services h2::after {
        width: 60px;
        height: 3px;
        margin: 12px auto;
    }
    
    .services p {
        font-size: 16px;
        padding-left: 22px;
        margin: 10px 0;
    }
    
    .services p::before {
        font-size: 18px;
    }
    
    .services .highlights {
        font-size: 16px !important;
        padding: 15px;
        margin: 20px 0 0 0 !important;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .services {
        padding: 15px;
        margin: 25px auto;
        border-radius: 10px;
    }
    
    .services h2 {
        font-size: 20px;
    }
    
    .services p {
        font-size: 15px;
        padding-left: 20px;
    }
    
    .services p::before {
        font-size: 16px;
    }
    
    .services .highlights {
        font-size: 15px !important;
        padding: 12px;
    }
}
/* ANA İÇERİK STİLLERİ */
.repair, .content-expansion {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 40px;
    margin: 30px auto;
    max-width: 1800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.repair::before, .content-expansion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 10px 10px 0 0;
}

/* BAŞLIK STİLLERİ */
.repair h1 {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.repair h2, .content-expansion h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 35px 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #4ecdc4;
    position: relative;
}

.repair h3, .content-expansion h3 {
    color: #34495e;
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #ff6b6b;
}

/* PARAGRAF STİLLERİ */
.repair p, .content-expansion p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0;
    text-align: justify;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #4ecdc4;
}

/* LİSTE STİLLERİ */
.repair ul, .content-expansion ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.repair li, .content-expansion li {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 18px 20px 18px 60px;
    margin: 12px 0;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.repair li:hover, .content-expansion li:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #4ecdc4;
}

.repair li::before, .content-expansion li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.repair li strong, .content-expansion li strong {
    color: #2c3e50;
    font-weight: 700;
}

/* FAQ BÖLÜMÜ */
.faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #dee2e6;
}

.faq h3, .faq h4 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    padding-left: 0;
    border-left: none;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.faq p {
    background: white;
    border-left: 4px solid #ff6b6b;
    padding: 20px;
    margin: 15px 0;
}

/* ÖZEL VURGULAR */
.repair strong, .content-expansion strong {
    color: #e74c3c;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 2px 4px;
    border-radius: 4px;
}

/* İKONLAR VE GÖRSELLER */
.repair h2::before, .content-expansion h2::before {
    content: "🔧";
    margin-right: 15px;
    font-size: 32px;
    vertical-align: middle;
}

/* GRADIENT ARKA PLANLAR */
.repair li:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
}

.repair li:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

/* ANİMASYONLAR */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.repair, .content-expansion {
    animation: fadeInUp 0.8s ease-out;
}

.repair li, .content-expansion li {
    animation: fadeInUp 0.6s ease-out;
}

/* MEDIA QUERIES - RESPONSIVE TASARIM */

/* Tablet */
@media (max-width: 1024px) {
    .repair, .content-expansion {
        padding: 30px;
        margin: 25px auto;
    }
    
    .repair h1 {
        font-size: 30px;
    }
    
    .repair h2, .content-expansion h2 {
        font-size: 24px;
    }
    
    .repair h3, .content-expansion h3 {
        font-size: 20px;
    }
    
    .repair p, .content-expansion p {
        font-size: 16px;
        padding: 12px;
    }
    
    .repair li, .content-expansion li {
        padding: 15px 15px 15px 50px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .repair, .content-expansion {
        padding: 20px;
        margin: 20px auto;
        border-radius: 15px;
    }
    
    .repair h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .repair h2, .content-expansion h2 {
        font-size: 22px;
        margin: 25px 0 15px 0;
    }
    
    .repair h3, .content-expansion h3 {
        font-size: 18px;
        margin: 20px 0 12px 0;
    }
    
    .repair p, .content-expansion p {
        font-size: 15px;
        padding: 10px;
        margin: 15px 0;
    }
    
    .repair li, .content-expansion li {
        padding: 12px 12px 12px 45px;
        margin: 10px 0;
    }
    
    .repair li::before, .content-expansion li::before {
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .faq {
        padding: 20px;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .repair, .content-expansion {
        padding: 15px;
        margin: 15px auto;
    }
    
    .repair h1 {
        font-size: 24px;
    }
    
    .repair h2, .content-expansion h2 {
        font-size: 20px;
    }
    
    .repair li, .content-expansion li {
        padding: 10px 10px 10px 40px;
    }
    
    .repair li::before, .content-expansion li::before {
        left: 10px;
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
}

/* ÖZEL EFEKTLER */
.repair li:hover::before, .content-expansion li:hover::before {
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
}

.repair h2:hover, .content-expansion h2:hover {
    color: #e74c3c;
    transition: color 0.3s ease;
}

/* SCROLL ANİMASYONU */
.repair, .content-expansion {
    scroll-margin-top: 20px;
}

/* SEÇİM RENGİ */
.repair ::selection, .content-expansion ::selection {
    background: #4ecdc4;
    color: white;
}
/* İLETİŞİM BÖLÜMÜ - PROFESYONEL TASARIM */
#iletisim {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    max-width: 1800px;
    margin: 50px auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#iletisim::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#iletisim h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#iletisim p {
    font-size: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#iletisim p strong {
    font-weight: 700;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#iletisim a {
    color: #ffd700;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

#iletisim a:hover {
    color: #ffffff;
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* ARA BUTONU - PROFESYONEL */
#araButton {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
}

#araButton::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: left 0.5s ease;
}

#araButton:hover {
    background: linear-gradient(135deg, #ee5a52 0%, #ff4757 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

#araButton:hover::before {
    left: 100%;
}

#araButton:active {
    transform: translateY(-1px) scale(1.02);
}

/* İLETİŞİM BÖLÜMÜ - KIRMIZI, MAVİ, BEYAZ TEMA */
#iletisim {
    background: linear-gradient(135deg, #d32f2f 0%, #1976d2 100%);
    color: white;
    text-align: center;
    padding: 60px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.3);
    max-width: 1800px;
    margin: 50px auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#iletisim::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#iletisim h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#iletisim p {
    font-size: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#iletisim p strong {
    font-weight: 700;
    color: #ffeb3b;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#iletisim a {
    color: #ffeb3b;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.3);
}

#iletisim a:hover {
    color: #ffffff;
    background: rgba(255, 235, 59, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
}

/* ARA BUTONU - KIRMIZI BEYAZ */
#araButton {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#araButton::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: left 0.5s ease;
}

#araButton:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.6);
}

#araButton:hover::before {
    left: 100%;
}

#araButton:active {
    transform: translateY(-1px) scale(1.02);
}

/* İKON STİLLERİ */
#iletisim p::before {
    font-size: 24px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* EK BİLGİ KUTUSU - MAVİ BEYAZ */
.contact-info {
    background: rgba(25, 118, 210, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 25px auto;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-info p {
    font-size: 16px;
    margin: 10px 0;
    color: #e3f2fd;
}

/* SOSYAL MEDYA BUTONLARI - BEYAZ */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* MEDIA QUERIES - RESPONSIVE İLETİŞİM */

/* Tablet */
@media (max-width: 1024px) {
    #iletisim {
        padding: 50px 25px;
        margin: 40px auto;
    }
    
    #iletisim h2 {
        font-size: 32px;
    }
    
    #iletisim p {
        font-size: 18px;
    }
    
    #araButton {
        padding: 16px 30px;
        font-size: 18px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    #iletisim {
        padding: 40px 20px;
        margin: 30px auto;
        border-radius: 20px;
    }
    
    #iletisim h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    #iletisim p {
        font-size: 16px;
        flex-direction: column;
        gap: 8px;
        margin: 15px 0;
    }
    
    #araButton {
        padding: 14px 25px;
        font-size: 16px;
        margin-top: 25px;
    }
    
    .social-media {
        gap: 10px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    #iletisim {
        padding: 30px 15px;
        margin: 25px auto;
    }
    
    #iletisim h2 {
        font-size: 24px;
    }
    
    #iletisim p {
        font-size: 15px;
    }
    
    #araButton {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ANİMASYONLAR */
#iletisim {
    animation: fadeInUp 1s ease-out;
}

#iletisim h2 {
    animation: slideInDown 0.8s ease-out;
}

#iletisim p {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

#araButton {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* IŞIK EFECTLERİ - MAVİ KIRMIZI */
#iletisim::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* GRADIENT KENARLIK */
#iletisim {
    border: 2px solid;
    border-image: linear-gradient(135deg, #d32f2f, #1976d2) 1;
}
