/* Renk Tanımlamaları ve Değişkenler: Tasarımın genelinde kullanılan renk paleti */
:root {
    --primary: #0f172a;
    /* Ana koyu renk */
    --primary-light: #1e293b;
    /* Açık ana renk */
    --accent: #fbbf24;
    /* Vurgu rengi (Sarı/Turuncu) */
    --accent-hover: #f59e0b;
    /* Vurgu rengi üzerine gelindiğinde */
    --text-main: #334155;
    /* Ana metin rengi */
    --text-dark: #0f172a;
    /* Koyu metin rengi */
    --white: #ffffff;
    /* Beyaz */
    --bg-light: #f8fafc;
    /* Açık arka plan rengi */
    --bg-alt: #f1f5f9;
    /* Alternatif açık arka plan */
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    /* Gölge efekti */
    --transition: all 0.3s ease;
    /* Geçiş animasyonu hızı */
}

/* Temel Sıfırlama: Tarayıcı varsayılanlarını temizler */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Genel Gövde Ayarları */
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Sayfa İçeriğini Ortalayan Kapsayıcı */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Vurgulu Kelimeler */
.highlight {
    color: var(--accent);
}

/* Üst Menü / Navigasyon Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    /* Yarı saydam arka plan */
    backdrop-filter: blur(10px);
    /* Arka planı bulanıklaştırma efekti */
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo ve Marka İsmi Ayarları */
.logo a,
.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

/* Logo Metni Ayarları */
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--accent);
}

/* Sayfa kaydırıldığında logo boyutu ve metin boyutu küçültme */
header.scrolled .logo img {
    height: 50px;
}

header.scrolled .logo-text {
    font-size: 20px;
}

.footer-brand .logo img {
    height: 65px;
    margin-bottom: 0px;
    /* footer-brand içindeki logo flex yapıldığı için margin-bottom'ı kaldırdık */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand .logo .logo-text {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Üst Menü Butonu (CTA) */
.cta-btn {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--accent);
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Giriş (Hero) Alanı Görsel ve Yerleşim Ayarları */
.hero {
    padding: 220px 0 140px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('assets/tesisat.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Arka planın sabit kalma efekti */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text .badge {
    background: var(--accent);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 22px;
    margin: 0 auto 45px;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.primary-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px -5px rgba(251, 191, 36, 0.4);
}

.primary-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

.secondary-btn {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
}

.stat-item .label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
}

#hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-box {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.stats-box .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.stats-box .label {
    font-size: 14px;
    font-weight: 600;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary);
}

.section-title p {
    font-size: 18px;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 30px auto 0;
    border-radius: 10px;
}

/* Hizmetler (Services) Alanı Styles */
.services {
    padding: 120px 0;
    background-color: var(--bg-light);
}

/* Hizmet Kartları ve Izgara Sistemi */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Hizmet Kartı Görünüm Ayarları */
.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-img-mini {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.service-img-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 70px -15px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.service-card:hover .icon {
    background: var(--primary);
    color: var(--white);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--primary);
    transition: color 0.4s ease;
}

.service-card p {
    margin-bottom: 25px;
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.6;
    transition: color 0.4s ease;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.service-card li {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    transition: color 0.4s ease;
}

.service-card li i {
    color: var(--accent);
    font-size: 16px;
}

.service-link {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    transition: color 0.4s ease;
}

.service-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: -1;
    transition: color 0.4s ease;
}

.service-card:hover .service-number {
    color: rgba(255, 255, 255, 0.05);
}

/* About Section */
.about {
    padding: 100px 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
    padding: 20px;
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-stack img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    transition: var(--transition);
}

.image-stack .main-img {
    width: 80%;
    height: 400px;
    object-fit: cover;
    z-index: 2;
    top: 0;
    left: 0;
}

.image-stack .sub-img {
    width: 70%;
    height: 350px;
    object-fit: cover;
    z-index: 1;
    bottom: 0;
    right: 0;
    border: 10px solid var(--white);
}

.about-image:hover .main-img {
    transform: translate(10px, -10px);
}

.about-image:hover .sub-img {
    transform: translate(-10px, 10px);
}

.about-text h2 span {
    color: var(--accent);
}

.about-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.about-list i {
    color: var(--accent);
    font-size: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.small-stat {
    display: flex;
    flex-direction: column;
}

.small-stat strong {
    font-size: 32px;
    color: var(--primary);
}

.small-stat span {
    font-size: 14px;
    color: var(--text-main);
    text-transform: uppercase;
}

/* Neden Biz (Why Us) Bölümü Styles */
.why-us {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.why-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-header h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-header p {
    font-size: 18px;
    color: var(--text-main);
    line-height: 1.6;
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.simple-item {
    padding: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: #fafafa;
    transition: background 0.3s ease;
}

.simple-item:hover {
    background: #fdfdfd;
    border-color: var(--accent);
}

.simple-item i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.simple-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.simple-item p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .why-header h2 {
        font-size: 32px;
    }
}


/* İletişim (Contact) Bölümü Styles */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.contact-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.contact-card a {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    padding: 10px 20px;
    background: var(--bg-alt);
    border-radius: 12px;
}

.contact-card a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Alt Bilgi (Footer) Alanı Styles */
footer {
    background: #0a0f1d;
    padding: 100px 0 40px;
    color: #94a3b8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo img {
    height: 55px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-grid h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 35px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul,
.footer-seo-grid ul {
    display: flex;
    flex-direction: column;
    gap: 15px !important;
}

.footer-links a,
.footer-seo-grid a {
    font-size: 14px;
    transition: var(--transition);
    color: #94a3b8;
    display: inline-block;
}

.footer-links a:hover,
.footer-seo-grid a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

/* Telif Hakkı Metni */
.footer-bottom p {
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-seo {
        grid-column: span 2;
    }
}

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

    .footer-seo {
        grid-column: span 1;
    }

    .footer-seo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsive Final Polish */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.6s;
    }

    .nav-links a {
        font-size: 24px;
        color: var(--primary);
    }

    .mobile-menu {
        display: block;
        z-index: 1002;
        position: relative;
    }

    .hero-content {
        text-align: center;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 18px;
        margin: 0 auto 30px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .image-stack {
        height: 400px;
        margin-bottom: 40px;
    }

    .about-list li {
        justify-content: center;
    }

    .about-stats {
        justify-content: center;
    }

    .wide-card {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Global Section Spacing */
    section {
        padding: 60px 0 !important;
    }

    /* Hero Section Compact */
    .hero {
        padding: 140px 0 80px !important;
        background-attachment: scroll;
        /* Performance boost for mobile */
    }

    .hero-text h1 {
        font-size: 32px !important;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 16px !important;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 30px;
        margin-top: 40px;
        flex-direction: row;
        justify-content: center;
    }

    .stat-item .number {
        font-size: 24px;
    }

    /* Section Typography */
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 28px !important;
    }

    /* Service Cards Compact */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-img-mini {
        height: 160px;
        margin-bottom: 20px;
    }

    /* Why Us Section */
    .simple-grid {
        gap: 20px;
    }

    .simple-item {
        padding: 25px;
    }

    /* Locations Section */
    .locations-map-container {
        height: 300px !important;
        border-radius: 20px;
    }

    .location-item {
        padding: 12px 15px;
        gap: 15px;
    }

    .location-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .location-item h3 {
        font-size: 14px;
    }

    /* Footer Spacing */
    footer {
        padding: 60px 0 30px !important;
    }

    .footer-grid {
        gap: 40px;
        padding-bottom: 40px;
    }
}

/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-float,
.phone-float {
    width: 65px;
    height: 65px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* WhatsApp Yüzen Buton Ayarları */
.whatsapp-float {
    background-color: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Telefon Yüzen Buton Ayarları */
.phone-float {
    background-color: var(--primary);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
}

.whatsapp-float:hover,
.phone-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.phone-float:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.whatsapp-float .tooltip,
.phone-float .tooltip {
    position: absolute;
    right: 80px;
    background: #0f172a;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .tooltip,
.phone-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 38px;
    }

    .floating-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .whatsapp-float,
    .phone-float {
        width: 55px;
        height: 55px;
        font-size: 25px;
    }

    .whatsapp-float .tooltip,
    .phone-float .tooltip {
        display: none;
    }
}

/* Hizmet Bölgeleri (Locations) Alanı Styles */
.locations {
    padding: 120px 0;
    background: var(--bg-alt);
}

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

.locations-map-container {
    background: var(--white);
    padding: 10px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    height: 650px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#serviceMap {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
}

/* Harita Üzerindeki Hareketli İşaretçi (Marker) Efekti */
.custom-pulse-icon {
    background: #2563eb;
    /* Canlı mavi */
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.8);
    border: 2px solid #fff;
}

.custom-pulse-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 14px;
    height: 14px;
    border: 2px solid #f97316;
    /* Turuncu pulse halkası */
    border-radius: 50%;
    animation: point-pulse 1.5s infinite;
}

@keyframes point-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.map-popup-custom .leaflet-popup-content-wrapper {
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    padding: 5px;
}

.map-popup-custom .leaflet-popup-tip {
    background: var(--primary);
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.location-item h3 {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--primary);
}

.location-item:hover h3 {
    color: var(--accent);
}

.location-item i {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.location-item h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.location-item p {
    font-size: 14px;
    color: var(--text-main);
}

.location-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.location-item:hover i {
    background: var(--accent);
    color: var(--white);
}

/* Footer Bölgesi SEO Link Alanı */
.footer-seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-seo-grid ul {
    gap: 10px !important;
}

.footer-seo h4 {
    color: var(--white);
    margin-bottom: 25px;
}

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

@media (max-width: 992px) {
    .locations-content {
        grid-template-columns: 1fr;
    }

    .locations-map-container {
        height: 350px;
    }
}