/* === GENEL STİLLER === */
:root {
    --primary-color: #007bff; /* Ana Mavi */
    --secondary-color: #ffc107; /* Vurgu Sarısı */
    --dark-color: #343a40; /* Koyu Gri */
    --light-color: #f8f9fa; /* Açık Gri */
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    padding-bottom: 60px; /* Sabit eylem çubuğunun yüksekliği kadar boşluk */
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

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

/* === HEADER & NAVİGASYON === */
.navbar {
    background: var(--dark-color);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.navbar .logo span {
    color: var(--secondary-color);
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li a {
    color: #fff;
    padding: 0.75rem;
    margin: 0 0.25rem;
    transition: color 0.3s ease;
}

.navbar .nav-links li a:hover,
.navbar .nav-links li a.active {
    color: var(--secondary-color);
}

/* Mobil Menü için Hamburger İkonu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}


/* === HERO BÖLÜMÜ (ANASAYFA) === */
.hero {
    /* BU SATIRI KENDİ RESMİNİZLE GÜNCELLEYİN */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 80vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ffca2c;
}

/* === SAYFA BAŞLIĞI === */
.page-header {
    background: var(--light-color);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* === GENEL SAYFA İÇERİĞİ === */
.page-content {
    padding: 4rem 0;
}

.page-content p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* === HİZMETLERİMİZ BÖLÜMÜ === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* === HİZMET BÖLGELERİ === */
.regions-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.regions-list li {
    background: var(--primary-color);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
}

/* === GALERİ === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* === HARİTA === */
.map-container {
    margin-top: 3rem;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* === İSTATİSTİKLER VE MÜŞTERİ YORUMLARI === */
.stats-bar {
    background-color: #1a4d5a;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-item .counter {
    font-size: 2.8rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.stat-item p {
    font-size: 1rem;
    margin: 0;
}

.testimonials-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #eee;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.rating-stars {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    min-height: 100px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* === İLETİŞİM SAYFASI YENİ DÜZEN === */
.contact-info-simple {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.contact-info-simple h2 {
    font-size: 2rem;
}

.contact-buttons {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-buttons .btn {
    width: 100%;
    max-width: 350px;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-buttons .btn i {
    margin-right: 12px;
    font-size: 1.5rem;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-call {
    background-color: var(--primary-color);
}

.address-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.address-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.address-info p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.contact-grid {
    display: block;
}

/* === FOOTER === */
.footer {
    background: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer p {
    margin: 0;
}


/* === SABİT EYLEM ÇUBUĞU (WHATSAPP & ARA & KONUM) === */
.floating-action-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    pointer-events: none;
}

.floating-action-bar {
    display: flex;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    pointer-events: auto;
}

.floating-action-bar a {
    flex: 1; 
    padding: 1rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-action-bar a:hover {
    opacity: 0.9;
}

.cta-location {
    position: absolute;
    left: 30px;      /* Kenardan biraz daha uzak */
    bottom: 95px;    /* Ana barın daha da üstünde */
    width: 140px;    /* Genişliği artırdık */
    height: 140px;   /* Yüksekliği artırdık */
    background: #e62134; 
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35), 
                inset 0 3px 4px rgba(255, 255, 255, 0.4),
                inset 0 -4px 5px rgba(0, 0, 0, 0.3);
    border: 4px solid #d41f2f; /* Çerçeveyi kalınlaştırdık */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem; /* Yazı boyutunu hafif büyüttük */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-location:hover {
    background: #ff3b4e;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4),
                inset 0 3px 4px rgba(255, 255, 255, 0.5),
                inset 0 -4px 5px rgba(0, 0, 0, 0.3);
}

.cta-location i {
    font-size: 3.5rem; /* İkonu daha da büyüttük */
    margin: 0 0 8px 0; /* İkon ile yazı arasına biraz daha boşluk */
}

.floating-action-bar .cta-whatsapp {
    background-color: #25D366;
}

.floating-action-bar .cta-call {
    background-color: var(--primary-color);
}

.floating-action-bar i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}


/* === RESPONSIVE (MOBİL UYUMLULUK) === */
@media(max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links li {
        width: 100%;
    }

    .navbar .nav-links li a {
        padding: 1rem;
        display: block;
        border-top: 1px solid #444;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 1.25rem;
        right: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-text {
        min-height: auto;
    }
}

@media(max-width: 480px) {
    .floating-action-bar .btn-text {
        display: none;
    }

    .floating-action-bar i {
        margin-right: 0;
        font-size: 1.5rem;
    }
    
    /* Konum gönderme butonu mobilde de yazıyı gösterecek şekilde ayarlandı */
    .cta-location {
        width: 110px;
        height: 110px;
        left: 15px;
        bottom: 85px;
        /* Yazıyı ve ikonu dikey olarak ortalamak için flex ayarları */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Konum gönderme butonundaki yazı için mobil font boyutu */
    .cta-location .btn-text {
        font-size: 0.9rem; /* Yazının butona sığması için boyutunu ayarladık */
        line-height: 1.2;
    }
    
    .cta-location i {
        font-size: 2.8rem;
        margin: 0 0 5px 0; /* İkon ve yazı arasına boşluk verdik */
    }
}