/* ============================================
   HOME PAGE HERO STYLES
   Kardelen Temizlik - Ana Sayfa Hero Stilleri
   ============================================ */

/* ============================================
   MOBİL HERO SECTION - FIX: HEADER HESABİ & HİZALAMA
   ============================================ */
.mobile-hero-section {
    position: relative;
    width: 100%;
    /* Header yüksekliği (yaklaşık 70-80px) düşüldü */
    height: calc(100vh - 75px);
    height: calc(100dvh - 75px);
    display: flex;
    /* İçeriği dikeyde ortala, çok aşağıya yapışmasın */
    align-items: center;
    justify-content: center;
    background: #0f172a;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Mobil Slider Container */
.mobile-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 6s ease;
}

.mobile-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.mobile-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Sinematik Overlay - Daha güçlü kontrast */
.mobile-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.7) 80%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

/* ============================================
   MOBİL SLIDER NAVİGASYONU - Halka Stil (Desktop ile Uyumlu)
   ============================================ */
.mobile-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 20;
    pointer-events: auto;
}

.mobile-slider-dot {
    /* Reset Button Styles */
    appearance: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;

    width: 6px !important;
    height: 6px !important;
    min-width: 6px !important;
    max-width: 6px !important;
    min-height: 6px !important;
    max-height: 6px !important;

    border-radius: 100% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.mobile-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2);
}

/* Active State: Thin Line Style */
.mobile-slider-dot.active {
    background: #fff !important;
    width: 30px !important;
    height: 3px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    min-height: 3px !important;
    max-height: 3px !important;
    border-radius: 2px !important;
    border: none !important;
    position: relative;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-slider-dot.active::after {
    display: none !important;
    content: none !important;
}
}

/* İçerik Alanı */
.mobile-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* İçeriği biraz aşağıya iterek görsel odak noktasını açık bırak */
    justify-content: flex-end;
    height: 100%;
    /* Alt kısımdan daha fazla boşluk bırakarak nav ve badge'ler için yer aç */
    padding-bottom: 120px;
}

.mobile-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-hero-title {
    font-size: 2rem;
    /* Başlık boyutu ideal */
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
}

.mobile-hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 500;
    max-width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.mobile-hero-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.mobile-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.mobile-btn-primary:active {
    transform: scale(0.96);
}

/* Trust Badges - En alta sabitle */
.mobile-trust-badges {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 350px;
    z-index: 20;
}

.mobile-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-trust-item i {
    font-size: 1.1rem;
    color: #4FC3F7;
}

.mobile-trust-item span {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
}

/* ============================================
   DESKTOP HERO SECTION STİLLERİ
   ============================================ */
.cleaning-hero-section {
    position: relative;
    min-height: 100vh;
    /* Mobile viewport bug fix */
    height: 100vh;
    height: 100dvh;
    width: 100%;
    max-width: 100%;
    /* 100vw bazen scrollbar ekler, % kullanmak daha güvenli */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4FC3F7 0%, #0084D4 100%);
    overflow: hidden !important;
    /* Kesin gizle */
    overflow-x: hidden !important;
    margin-bottom: 0;
    box-sizing: border-box;
    padding: 0;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease, transform 0.8s ease;
    transform: scale(1.1);
}

.hero-slide-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-bg-image,
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    display: none;
}

/* Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: -20%;
    left: -10%;
    right: -10%;
    bottom: -20%;
    background: linear-gradient(135deg, rgba(0, 132, 212, 0.5) 0%, rgba(79, 195, 247, 0.4) 100%);
    z-index: -1;
    border-radius: 30px;
    filter: blur(20px);
}

/* ============================================
   DESKTOP HERO SLIDER NAVİGASYONU
   Premium Minimalist Tasarım
   ============================================ */
.hero-slider-nav-full {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex !important;
    visibility: visible !important;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 0 40px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

.hero-slider-nav-full * {
    pointer-events: auto;
}

/* Text Buttons (Prev/Next) */
.nav-text-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.nav-text-btn:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.nav-text-btn i {
    font-size: 1.1rem;
}

/* Dots Container */
.nav-dots-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Dots Styling */
.nav-indicator {
    /* Reset Button Styles */
    appearance: none !important;
    -webkit-appearance: none !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
    background: rgba(255, 255, 255, 0.4) !important;
    cursor: pointer;
    transition: all 0.3s ease;

    /* Inactive State: Dot Shape */
    border-radius: 50% !important;
    width: 6px !important;
    height: 6px !important;
    min-width: 6px !important;
    max-width: 6px !important;
    min-height: 6px !important;
    max-height: 6px !important;
    box-sizing: border-box !important;
    flex-shrink: 0;
    line-height: 1 !important;
}

.nav-indicator:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2);
}

/* Active Dot - Thin Line Style */
.nav-indicator.active {
    background: #fff !important;
    width: 30px !important;
    height: 3px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    min-height: 3px !important;
    max-height: 3px !important;
    border-radius: 2px !important;
    border: none !important;
    position: relative;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove previous ring style pseudo-element */
.nav-indicator.active::after {
    display: none !important;
    content: none !important;
}

transform: translate(-50%, -50%);
width: 4px !important;
height: 4px !important;
background: #fff !important;
border-radius: 50% !important;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    pointer-events: none;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-content-wrapper * {
    pointer-events: auto;
}

.hero-text-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.btn-cleaning-primary-large {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #0084D4;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.btn-cleaning-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #0066A3;
}

.btn-cleaning-outline-large {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.51);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.btn-cleaning-outline-large:hover {
    background: white;
    color: #0084D4;
    border-color: white;
}

.hero-trust-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.trust-badge i {
    font-size: 1.1rem;
    color: white;
    opacity: 0.95;
}

.trust-badge span {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-image-side {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: #0084D4;
}

.floating-card span {
    font-weight: 600;
    color: #333;
    font-size: 0.75rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.card-4 {
    top: 20%;
    right: 35%;
    animation-delay: 1.5s;
}

.card-5 {
    top: 75%;
    right: 30%;
    animation-delay: 2.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}



/* ============================================
   SERVICES GRID SECTION
   ============================================ */
.services-grid-section {
    padding: 5rem 0;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 132, 212, 0.1);
    color: #0084D4;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 132, 212, 0.15);
}

.service-image-modern {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-image-modern img {
    transform: scale(1.1);
}

.service-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 132, 212, 0.3));
}

.service-image-modern.no-image {
    background: linear-gradient(135deg, #4FC3F7, #0084D4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-modern {
    font-size: 4rem;
    color: white;
}

.service-content-modern {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title-modern {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-title-modern a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title-modern a:hover {
    color: #0084D4;
}

.service-excerpt-modern {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link-modern {
    color: #0084D4;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link-modern:hover {
    color: #0066A3;
    transform: translateX(5px);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    background: white;
}

.features-list-modern {
    margin-top: 2rem;
}

.feature-item-modern {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-modern {
    width: 50px;
    height: 50px;
    background: rgba(0, 132, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-modern i {
    font-size: 1.5rem;
    color: #0084D4;
}

.feature-text-modern h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-text-modern p {
    color: #666;
    margin: 0;
}

.why-us-image-wrapper {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #4FC3F7, #0084D4);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-overlay {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0084D4;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section-modern {
    background: linear-gradient(135deg, #0084D4, #0066A3);
}

.stat-item-modern {
    padding: 2rem;
}

.stat-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label-modern {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section-modern-new {
    background: #f8f9fa;
}

.blog-card-modern-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card-modern-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 132, 212, 0.15);
}

.blog-image-modern-new {
    height: 200px;
    overflow: hidden;
}

.blog-image-modern-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-modern-new:hover .blog-image-modern-new img {
    transform: scale(1.1);
}

.blog-content-modern-new {
    padding: 1.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title-modern-new {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-title-modern-new a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title-modern-new a:hover {
    color: #0084D4;
}

.blog-read-more {
    color: #0084D4;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #0066A3;
    transform: translateX(5px);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section-modern {
    background: linear-gradient(135deg, #4FC3F7, #0084D4);
}

.cta-wrapper-modern {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-title-modern {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-text-modern {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET (991px)
   ============================================ */
@media (max-width: 991px) {

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    .cleaning-hero-section {
        min-height: auto;
        height: auto;
        padding: 100px 0 120px 0;
        width: 100%;
        max-width: 100vw;
    }

    .hero-content-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-image-side {
        display: none;
    }

    .hero-content-wrapper .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-text-content {
        text-align: center;
        padding: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-main-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-cleaning-primary-large,
    .btn-cleaning-outline-large {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .trust-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .trust-badge i {
        font-size: 0.9rem;
    }

    .hero-slider-nav-simple {
        display: none !important;
        bottom: 1.5rem;
        gap: 0.5rem;
    }

    .nav-indicator {
        width: 5px;
        height: 5px;
    }

    .nav-indicator.active {
        width: 28px;
        height: 3.5px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (576px)
   ============================================ */
@media (max-width: 576px) {
    .cleaning-hero-section {
        padding: 80px 0 100px 0;
    }

    .hero-text-content {
        padding: 1rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .btn-cleaning-primary-large,
    .btn-cleaning-outline-large {
        max-width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .trust-badge {
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .trust-badge:last-child {
        grid-column: span 2;
    }

    .trust-badge i {
        font-size: 0.85rem;
    }

    .hero-slider-nav-simple {
        display: none !important;
        bottom: 1.25rem;
        gap: 0.45rem;
    }

    .nav-indicator {
        width: 4px;
        height: 4px;
    }

    .nav-indicator.active {
        width: 24px;
        height: 3px;
    }
}

/* MOBILE SCROLL FIX & DESIGN OPTIMIZATION */
@media (max-width: 991px) {
    .cleaning-hero-section {
        height: calc(100vh - 80px) !important;
        /* Header payını düş */
        height: calc(100dvh - 80px) !important;
        min-height: calc(100dvh - 80px) !important;
        overflow: hidden !important;
        padding-top: 20px !important;
        /* İçerik için daha fazla alan */
        padding-bottom: 0 !important;
        align-items: center !important;
        display: flex !important;
    }

    .hero-content-wrapper {
        height: 100% !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        /* İçeriği tam ortala */
        padding: 0 !important;
    }

    .hero-text-content {
        margin-bottom: 0;
        padding: 0 1rem !important;
        text-align: center;
        width: 100%;
        /* İçerik çoksa scale et veya flex-shrink kullan */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    /* Badge: Çok yer kaplamasın */
    .hero-badge {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
        margin-bottom: 10px !important;
        margin-top: -20px;
        /* Biraz yukarı çek */
    }

    .hero-main-title {
        font-size: 1.6rem !important;
        /* Daha küçük başlık */
        margin-bottom: 0.5rem !important;
        line-height: 1.1 !important;
    }

    .hero-description {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* Max 3 satır */
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 95%;
    }

    /* Butonlar: Sıkı yerleşim */
    .hero-actions {
        justify-content: center;
        gap: 8px !important;
        width: 100%;
        flex-direction: row !important;
        flex-wrap: wrap;
        margin-bottom: 10px !important;
    }

    .btn-cleaning-primary-large,
    .btn-cleaning-outline-large {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        height: 40px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto !important;
        min-width: 120px;
        flex: 0 1 auto;
    }

    /* Trust Badge'ler: En alta, küçük */
    .hero-trust-badges {
        justify-content: center;
        gap: 5px !important;
        margin-top: 0.5rem !important;
        flex-wrap: wrap;
    }

    .trust-badge {
        padding: 4px 10px !important;
        font-size: 0.65rem !important;
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(5px);
    }

    .trust-badge i {
        font-size: 0.9rem !important;
    }

    /* Navigasyon: En altta sabit */
    .hero-slider-nav-full {
        position: absolute !important;
        bottom: 20px !important;
        left: 0 !important;
        width: 100% !important;
        padding: 0 !important;
        z-index: 100;
        background: transparent !important;
        /* Arka plan yok */
        height: auto !important;
    }

    /* Navigasyon Okları Mobilde Gizli */
    .nav-text-btn {
        display: none !important;
    }
}

/* FORCE VISUAL STYLES - CRITICAL OVERRIDE */
button.nav-indicator,
.nav-indicator,
.mobile-slider-dot {
    display: block !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    background: rgba(255, 255, 255, 0.4) !important;
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    max-width: 10px !important;
    min-height: 10px !important;
    max-height: 10px !important;
    border-radius: 50% !important;
    box-sizing: border-box !important;
}

button.nav-indicator:hover,
.nav-indicator:hover,
.mobile-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2);
}

button.nav-indicator.active,
.nav-indicator.active,
.mobile-slider-dot.active {
    background: #fff !important;
    width: 40px !important;
    height: 5px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    min-height: 5px !important;
    max-height: 5px !important;
    border-radius: 3px !important;
    border: none !important;
    position: relative;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

button.nav-indicator.active::after,
.nav-indicator.active::after,
.mobile-slider-dot.active::after {
    display: none !important;
    content: none !important;
}