/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Renk Paleti ve Değişkenler */
:root {
    --primary-color: #4FA3A5;
    /* Logonuzdaki ana renk */
    --secondary-color: #72C3C5;
    /* Logonuzdaki açık renk */
    --light-bg: #F0F8F8;
    /* Çok açık nane yeşili/mavi */
    --dark-text: #2c3e50;
    /* Koyu metin rengi */
    --body-text: #555;
    --white-color: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

/* Genel Body Stilleri */
body {
    font-family: var(--font-family);
    color: var(--body-text);
    background-color: var(--white-color);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--dark-text);
}

/* Üst Bilgi Barı */
.top-bar {
    background-color: var(--light-bg);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .slogan {
    color: var(--primary-color);
    font-weight: 500;
}

.top-bar .social-icon {
    color: var(--primary-color);
    margin-left: 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.top-bar .social-icon:hover {
    color: var(--secondary-color);
}

/* Navbar (Ana Menü) */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand .logo {
    max-height: 65px;
    /* Logonuzun boyutunu buradan ayarlayabilirsiniz */
}

.nav-link {
    color: var(--dark-text);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero (Ana Karşılama Alanı) */
.hero-section {
    background: linear-gradient(rgba(240, 248, 248, 0.8), rgba(240, 248, 248, 0.8)), url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: var(--dark-text);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section .lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto;
}


/* ===================================
   YENİ FOOTER STİLLERİ (KOYU TASARIM)
   =================================== */

.footer-dark {
    background-color: #2c3e50;
    /* Koyu Mavi-Gri Renk */
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    max-height: 65px;
    filter: brightness(0) invert(1);
    /* Logoyu beyaz yapar */
    opacity: 0.8;
}

.footer-title {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-info i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact-info a,
.footer-contact-info span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-contact-info a:hover {
    color: var(--white-color);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-icon-footer {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}


/* Sabit İletişim İkonları */
.floating-buttons-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    /* İkonları dikey hizala */
    gap: 15px;
    /* İkonlar arası boşluk */
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 1.8rem;
    /* İkon boyutu */
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Arama Butonu Rengi (Ana tema rengi) */
.phone-btn {
    background-color: var(--primary-color);
}

/* WhatsApp Butonu Rengi */
.whatsapp-btn {
    background-color: #25D366;
}


/* ===================================
   YENİ EKLENEN BÖLÜMLER İÇİN STİLLER
   =================================== */

/* Genel Bölüm Stilleri */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

/* Başlık Altı Çizgisi */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-light {
    background-color: var(--light-bg) !important;
}


/* Hizmet Kartları Stili */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eef;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}


/* Nasıl Çalışıyoruz (Süreç) Adımları */
.process-step .step-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}


/* SSS (Akordiyon) Stilleri */
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px !important;
    margin-bottom: 15px;
    overflow: hidden;
    /* Border-radius'un düzgün görünmesi için */
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-text);
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-body {
    background-color: #fdfdfd;
}




.testimonial-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-style: italic;
    color: var(--body-text);
    margin-bottom: 20px;
    flex-grow: 1;
    /* Metnin alanı doldurmasını sağlar */
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h6 {
    font-weight: 600;
    color: var(--dark-text);
}

.stars {
    color: #f9a825;
    /* Yıldız rengi */
}

/* Swiper Slider Stilleri */
.testimonials-slider {
    padding-bottom: 50px !important;
    /* Pagination (noktalar) için altta boşluk */
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}












/* ===================================
   İÇ SAYFA STİLLERİ
   =================================== */

/* Sayfa Başlığı (Page Header) */
.page-header {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--primary-color);
    font-weight: 700;
}

.breadcrumb {
    justify-content: center;
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--dark-text);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--body-text);
}

/* Hakkımızda Sayfası Başlık Altı Çizgisi */
.about-content .section-title::after,
.text-start.section-title::after {
    left: 0;
    transform: translateX(0);
}

/* Navigasyon - Açılır Menü (Dropdown) */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-item {
    font-weight: 500;
    color: var(--dark-text);
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}


/* ===================================
   TEKLİF AL (ARAMA) SAYFASI STİLLERİ
   =================================== */

.call-action-box {
    background-color: #f8f9fa;
    /* Bootstrap'in hafif gri rengi */
    border: 1px solid #dee2e6;
}

.call-action-box .btn-lg {
    font-size: 1.5rem;
    padding: 15px 30px;
    font-weight: 600;
}

.btn-success {
    background-color: #25D366;
    /* WhatsApp Rengi */
    border-color: #25D366;
}

.btn-success:hover {
    background-color: #1DA851;
    border-color: #1DA851;
}



/* ===================================
   İLETİŞİM SAYFASI STİLLERİ
   =================================== */

.contact-info-box .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-box .info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    margin-top: 5px;
}

.contact-info-box .info-item strong {
    font-size: 1.1rem;
    color: var(--dark-text);
    display: block;
}

.contact-info-box .info-item p {
    margin-bottom: 0;
}

.contact-info-box .info-item a {
    text-decoration: none;
    color: var(--body-text);
    transition: color 0.3s ease;
}

.contact-info-box .info-item a:hover {
    color: var(--primary-color);
}

.map-container {
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
    /* iframe altındaki boşluğu kaldırır */
}






/* ===================================
   HİZMET DETAY SAYFASI STİLLERİ (YENİ TASARIM)
   =================================== */

/* Yeni Aşamalar Listesi Stili */
.step-list .step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.step-list .step-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.step-list .step-item p {
    margin-bottom: 0;
    flex: 1;
    /* Yazının ikonla aynı hizada kalmasını sağlar */
}

/* --- YAN MENÜ (SIDEBAR) --- */
.sidebar .widget {
    margin-bottom: 30px;
}

/* Yan Hizmetler Menüsü */
.service-list.list-group {
    border-radius: 10px;
    overflow: hidden;
    /* Köşelerin düzgün görünmesi için */
}

.service-list .list-group-item {
    padding: 1rem 1.25rem;
    border-right: none;
    border-left: none;
}

.service-list .list-group-item:first-child {
    border-top: none;
}

.service-list .list-group-item:last-child {
    border-bottom: none;
}


.service-list a {
    text-decoration: none;
    color: var(--dark-text);
    display: block;
    font-weight: 500;
    transition: all 0.2s ease;
}

.service-list .list-group-item:not(.active):hover {
    background-color: var(--light-bg);
}

.service-list .list-group-item:not(.active):hover a {
    color: var(--primary-color);
}

.service-list .list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.service-list .list-group-item.active a {
    color: var(--white-color);
}

/* Yan Teklif Alma Kutusu */
.widget-quote-box {
    background-color: var(--primary-color);
    background-image: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

/* Butonlara "hap" görünümü */
.btn-pill {
    border-radius: 50px;
    font-weight: 500;
}



/* Footer Kredi Linki */
.credit-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: var(--white-color);
}