/* ============================================= */
/* TEMİZLİK ŞİRKETİ WEB SİTESİ STİLLERİ */
/* ============================================= */

:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --secondary: #6c757d;
    --success: #28a745;
    --light: #f8f9fa;
    --dark: #343a40;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}
.top-info span {
    margin-right: 20px;
}
.top-info span i {
    margin-right: 5px;
}
.social-icons a {
    color: white;
    margin-left: 15px;
    transition: 0.3s;
}
.social-icons a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 20px;
    transition: 0.3s;
}
.navbar-nav .nav-link:hover {
    color: var(--primary);
}
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    margin-top: 10px;
}
.navbar-nav .dropdown-item {
    padding: 10px 20px;
    transition: 0.3s;
}
.navbar-nav .dropdown-item:hover {
    background: var(--primary);
    color: white;
}
.btn-primary {
    background: var(--primary);
    border: none;
    padding: 10px 25px;
}
.btn-primary:hover {
    background: var(--primary-dark);
}

/* ============================================= */
/* HERO SLIDER - DÜZELTİLMİŞ VERSİYON */
/* ============================================= */

.hero-slider {
    width: 100%;
    position: relative;
    height: 100vh; /* Tam ekran yüksekliği */
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

/* Gradient overlay - sabit (her slider'da aynı) */
.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(30, 30, 50, 0.85) 0%,
        rgba(30, 30, 50, 0.60) 30%,
        rgba(30, 30, 50, 0.30) 60%,
        rgba(30, 30, 50, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* KART KONTEYNER - SABİT KONUM (sol orta) */
.hero-slider .slide-inner {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    padding-left: 10%;
    padding-right: 10%;
    pointer-events: none;
}

/* KART İÇERİĞİ */
.hero-slider .slider-content {
    pointer-events: auto;
    max-width: 560px;
    padding: 40px 48px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-label {
    display: inline-block;
    background: var(--tema, #007bff);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.hero-slider .slider-content h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-slider .slider-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Butonlar */
.slider-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.slider-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--tema, #007bff);
    color: var(--tema-metin, #fff);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn-primary:hover {
    background: var(--tema-koyu, #0056b3);
    transform: translateY(-2px);
    color: #fff;
}

.slider-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.slider-btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

/* Swiper Navigasyon */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--tema, #007bff);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 18px;
}

/* Pagination */
.hero-slider .swiper-pagination {
    bottom: 24px;
}

.hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 6px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--tema, #007bff);
    opacity: 1;
    width: 28px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-slider .slider-content { max-width: 520px; padding: 35px 40px; }
    .hero-slider .slider-content h2 { font-size: 40px; }
}

@media (max-width: 992px) {
    .hero-slider .slide-inner { padding-left: 6%; padding-right: 6%; }
    .hero-slider .slider-content { max-width: 480px; padding: 30px 36px; }
    .hero-slider .slider-content h2 { font-size: 34px; }
    .slider-btn-primary, .slider-btn-outline { font-size: 13px; padding: 10px 22px; }
}

@media (max-width: 768px) {
    .hero-slider { min-height: 500px; height: auto; }
    .hero-slider .swiper-slide { min-height: 500px; height: auto; }
    .hero-slider .slide-inner { padding-left: 5%; padding-right: 5%; }
    .hero-slider .slider-content { max-width: 95%; padding: 25px 30px; background: rgba(0, 0, 0, 0.7); }
    .hero-slider .slider-content h2 { font-size: 28px; }
    .hero-slider .slider-content p { font-size: 13px; margin-bottom: 20px; }
    .slider-label { font-size: 10px; padding: 4px 12px; }
    .slider-btn-primary, .slider-btn-outline { font-size: 12px; padding: 8px 18px; gap: 6px; }
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev { width: 34px; height: 34px; }
    .hero-slider .swiper-button-next:after,
    .hero-slider .swiper-button-prev:after { font-size: 14px; }
}

@media (max-width: 576px) {
    .hero-slider .slider-content { padding: 20px 24px; }
    .hero-slider .slider-content h2 { font-size: 24px; }
    .hero-slider .slider-content p { font-size: 12px; }
    .slider-btns { gap: 10px; }
    .slider-btn-primary, .slider-btn-outline { font-size: 11px; padding: 6px 14px; }
}


/* Bölüm Başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}
.section-title p {
    color: var(--secondary);
    font-size: 16px;
}

/* Hizmet Kartları */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    margin-bottom: 30px;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}
.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--secondary);
}

/* Ürün Kartları */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    margin-bottom: 30px;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image {
    height: 250px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-info {
    padding: 20px;
}
.product-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}
.product-code {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Referans Logo */
.referans-logo {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: 0.3s;
}
.referans-logo:hover {
    transform: scale(1.05);
}
.referans-logo img {
    max-height: 80px;
    width: auto;
}

/* Haber Kartları */
.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.news-image {
    height: 200px;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-content {
    padding: 20px;
}
.news-date {
    color: var(--primary);
    font-size: 12px;
    margin-bottom: 10px;
}
.news-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.news-content p {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* İstatistik Bölümü */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 48px;
    font-weight: 700;
}
.stat-label {
    font-size: 18px;
    margin-top: 10px;
}

/* Yorumlar */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}
.testimonial-text {
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 20px;
}
.testimonial-name {
    font-weight: 700;
    margin-bottom: 5px;
}
.testimonial-stars {
    color: #ffc107;
}

/* Kurumsal Sayfalar Kartları */
.corporate-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}
.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.corporate-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

/* Sayfa İçerik */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}
.page-header h1 {
    font-size: 42px;
    font-weight: 700;
}
.page-content {
    padding: 60px 0;
}
.page-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}
.page-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}
.page-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}
.page-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}
.page-content ul, .page-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}
.page-content li {
    margin-bottom: 5px;
}

/* İletişim Sayfası */
.contact-info .info-item {
    margin-bottom: 20px;
}
.contact-form h3, .contact-info h3 {
    margin-bottom: 25px;
}
.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 0;
}
.footer h5 {
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 30px;
}
.footer .social-icons {
    margin-top: 15px;
}
.footer .social-icons a {
    color: #aaa;
    margin-right: 15px;
    margin-left: 0;
}
.footer .social-icons a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .slider-content h2 { font-size: 28px; }
    .stat-number { font-size: 32px; }
    .section-title h2 { font-size: 28px; }
    .page-header h1 { font-size: 28px; }
    .page-header { padding: 40px 0; }
    .page-content { padding: 40px 0; }
}

@media (max-width: 576px) {
    .top-info span { display: block; margin-bottom: 5px; }
    .top-bar .text-end { text-align: left !important; margin-top: 10px; }
}