/*
=========================================
WIZUTECH - INTEGRATED HOMEPAGE CSS
Homepage sections and interactive elements
Financing section with responsive design
Wizutech Development Team
=========================================
*/

/* ==========================================
   WIZUTECH - STATISTICS SECTION
   ========================================== */

/* Statistics section by Wizutech (ID: 51564bb) */
.elementor-section[data-id="51564bb"] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    padding: 80px 0 !important;
    position: relative;
}

.elementor-element-dd7b09f .pxl-counter,
.elementor-element-8b57e33 .pxl-counter,
.elementor-element-b356547 .pxl-counter {
    text-align: center !important;
    padding: 40px 20px !important;
    background: white;
    border-radius: 20px !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(25, 92, 156, 0.1)!important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.elementor-element-dd7b09f .pxl-counter:hover,
.elementor-element-8b57e33 .pxl-counter:hover,
.elementor-element-b356547 .pxl-counter:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(25, 92, 156, 0.2)!important;
}

/* Counter numbers - unified SED Solar blue */
.pxl-number--value {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    display: inline-block !important;
    color: #195c9c !important;
}

.elementor-element-dd7b09f .pxl-number--value,
.elementor-element-8b57e33 .pxl-number--value,
.elementor-element-b356547 .pxl-number--value {
    color: #195c9c !important;
}

.pxl-item--suffix,
.pxl-item--prefix {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #195c9c !important;
}

.pxl-item--title {
    font-family: Inter, system-ui, sans-serif!important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

.pxl-item--divider {
    width: 40px !important;
    height: 3px !important;
    background: linear-gradient(135deg, #195c9c, #FFB800) !important;
    margin: 10px auto 20px auto !important;
    border-radius: 2px !important;
    display: block !important;
}

/* Energy production counter - unified color */
.elementor-element-b356547 .pxl-item--number {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
}

.elementor-element-b356547 .pxl-item--prefix {
    font-size: 3.5rem !important;
    color: #195c9c !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.elementor-element-b356547 .pxl-item--suffix {
    font-size: 2rem !important;
    color: #195c9c !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

/* ==========================================
   WIZUTECH - MOBILE STATISTICS SECTION
   ========================================== */

/* Mobil optimized stats container */
.mobile-stats-container {
    display: none; /* Desktop'ta gizli */
    padding: 20px 20px; /* Üst blokla aynı kenarlık */
    background: transparent;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Stats grid - 3 cards side by side */
.mobile-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

/* Individual stat cards */
.mobile-stat-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 20px 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(25, 92, 156, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(25, 92, 156, 0.1);
}

/* Card top accent */
.mobile-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #195c9c, #4facfe);
    border-radius: 18px 18px 0 0;
}

/* Stat numbers */
.mobile-stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #195c9c;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Stat labels */
.mobile-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.15;
    margin: 0;
    padding: 0 2px;
    font-family: 'Inter', system-ui, sans-serif;
    word-wrap: break-word;
    hyphens: auto;
    text-align: center;
}

/* Divider between number and label */
.mobile-stat-divider {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #195c9c, #FFB800);
    margin: 6px auto 8px auto;
    border-radius: 1px;
}

/* ==========================================
   WIZUTECH - MOBILE FINANCING SECTION
   ========================================== */

/* Mobil financing container - desktop arkaplan stili */
.mobile-financing-container {
    display: none; /* Desktop'ta gizli */
    padding: 40px 20px 25px 20px;
    background: linear-gradient(135deg, #144a7a 0%, #195c9c 50%, #4a8cc8 100%) !important;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50% 50% / 0 0 100px 100px;
}

/* Pattern overlay - desktop stiline uygun */
.mobile-financing-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
}

/* Sol taraftaki metin container'ının pozisyonu düzeltildi */
.elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"],
.elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] {
    padding-left: 20px !important;
    padding-right: 30px !important;
}

.elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"] p,
.elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    margin-left: 0 !important;
    padding-left: 15px !important;
}

/* Glassmorphism containers by Wizutech */
.elementor-column[data-id="55cff1e"],
.elementor-column[data-id="79e1658"] {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 25px !important;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    padding: 50px 40px !important;
    margin: 30px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.elementor-column[data-id="55cff1e"]:hover,
.elementor-column[data-id="79e1658"]:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Heading subtexts */
.elementor-element-59ae293 .pxl-heading,
.elementor-element-9d3471e .pxl-heading {
    margin-bottom: 30px !important;
}

.elementor-element-59ae293 .pxl-item--subtitle,
.elementor-element-9d3471e .pxl-item--subtitle {
    color: #195c9c !important;
    font-weight: 600 !important;
    font-size: 18px !important;
}

.elementor-element-59ae293 .pxl-item--subtext,
.elementor-element-9d3471e .pxl-item--subtext {
    margin-left: 15px !important;
}

/* ==========================================
   WIZUTECH - SED CONTAINER COMPONENT
   ========================================== */

.sed-container {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    padding: 20px 0;
    margin: 0;
    width: 100%;
}

.sed-main-title {
    color: #2c5aa0;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    padding: 0 15px;
}

.sed-main-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #ffc107);
    margin: 10px auto 0;
    border-radius: 2px;
}

.sed-content-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
    text-align: left;
    padding: 0 15px;
}

.sed-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.sed-text strong {
    color: #333;
    font-weight: bold;
}

.sed-text:last-child {
    margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS - DESKTOP TO TABLET
   Progressive scaling for optimal viewing experience
   ========================================== */

/* Large desktop displays (1200px and below) */
@media (max-width: 1200px) {
    /* Left text container responsive adjustments */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"],
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] {
        padding-left: 15px !important;
        padding-right: 25px !important;
    }
    
    /* Left text typography scaling */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"] p,
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        padding: 20px 10px !important;
        margin-left: 0 !important;
    }
    
    /* Card grid optimization */
    .icons-container {
        gap: 25px !important;
        max-width: 1200px !important;
        padding: 0 10px !important;
    }
    
    /* Card dimensions and spacing */
    .financing-icon {
        padding: 40px 15px !important;
        min-height: 400px !important;
    }
    
    /* Icon symbol scaling */
    .icon-symbol {
        width: 85px !important;
        height: 85px !important;
        font-size: 2.6rem !important;
    }
    
    /* Typography hierarchy maintenance */
    .icon-title {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        min-height: 2.2rem !important;
    }
    
    .icon-desc {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        min-height: 3.5rem !important;
    }
}

/* Standard tablet devices (1024px and below) */
@media (max-width: 1024px) {
    /* Container margin adjustments for tablet viewing */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"],
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] {
        padding-left: 10px !important;
        padding-right: 20px !important;
    }
    
    /* Text content scaling for tablet readability */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"] p,
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        padding: 18px 8px !important;
        margin-left: 0 !important;
    }
    
    /* Grid spacing optimization for tablet */
    .icons-container {
        gap: 20px !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* Card size adjustments for tablet view */
    .financing-icon {
        padding: 35px 12px !important;
        min-height: 360px !important;
    }
    
    /* Icon size scaling for tablet */
    .icon-symbol {
        width: 75px !important;
        height: 75px !important;
        font-size: 2.3rem !important;
        margin-bottom: 18px !important;
    }
    
    /* Typography scaling for tablet readability */
    .icon-title {
        font-size: 1rem !important;
        margin-bottom: 16px !important;
        line-height: 1.1 !important;
        min-height: 2rem !important;
    }
    
    .icon-desc {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        min-height: 3rem !important;
    }
}

/* Small tablets and large phones (900px and below) */
@media (max-width: 900px) {
    /* Container spacing for smaller screens */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"],
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] {
        padding-left: 8px !important;
        padding-right: 15px !important;
    }
    
    /* Text content optimization for smaller screens */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"] p,
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] p {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        padding: 15px 5px !important;
        margin-left: 0 !important;
    }
    
    /* Grid compacting for smaller screens */
    .icons-container {
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    /* Card size reduction for space efficiency */
    .financing-icon {
        padding: 25px 8px !important;
        min-height: 320px !important;
        border-radius: 20px !important;
    }
    
    /* Icon size adjustment for smaller cards */
    .icon-symbol {
        width: 65px !important;
        height: 65px !important;
        font-size: 2rem !important;
        border-radius: 16px !important;
        margin-bottom: 15px !important;
    }
    
    /* Typography optimization for compact view */
    .icon-title {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
        line-height: 1.05 !important;
        min-height: 1.8rem !important;
        padding: 0 2px !important;
    }
    
    .icon-desc {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        min-height: 2.5rem !important;
        padding: 0 2px !important;
    }
}

/* ==========================================
   RESPONSIVE BREAKPOINTS - MOBILE TRANSITION
   Desktop to mobile switchover optimization
   ========================================== */

/* Mobile transition point - Hide desktop, show mobile version */
@media (max-width: 768px) {
    /* Hide desktop financing cards completely */
    .icons-container {
        display: none !important;
    }
    
    /* Adjust section padding for mobile */
    .elementor-section[data-id="004c62e"] {
        padding: 60px 0 !important;
    }
    
    /* Show mobile financing container */
    .mobile-financing-container {
        display: block !important;
    }
    
    /* Mobile responsive statistics */
    .elementor-section[data-id="51564bb"] {
        padding: 60px 0 !important;
    }
    
    .elementor-element-dd7b09f .pxl-counter,
    .elementor-element-8b57e33 .pxl-counter,
    .elementor-element-b356547 .pxl-counter {
        padding: 30px 0px !important;
        margin-bottom: 20px !important;
    }
    
    .pxl-number--value {
        font-size: 2.5rem !important;
        color: #195c9c !important;
    }
    
    .pxl-item--suffix,
    .pxl-item--prefix {
        font-size: 1.8rem !important;
        color: #195c9c !important;
    }
    
    .elementor-column[data-id="55cff1e"],
    .elementor-column[data-id="79e1658"] {
        margin: 30px 10px !important; 
        padding: 40px 25px !important; 
    }
    
    /* Show mobile stats */
    .mobile-stats-container {
        display: block !important;
        padding: 20px 25px; /* Tablet için daha geniş */
    }
    
    .mobile-financing-container::before {
        font-size: 1.2rem;
        top: 10px;
    }
    
    /* SED Container mobile styles */
    .sed-container {
        padding: 20px 0;
    }
    
    .sed-main-title {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .sed-content-title {
        font-size: 22px;
        padding: 0 15px;
    }
    
    .sed-text {
        font-size: 16px;
        padding: 0 15px;
    }
    
    /* Mobile responsive about us */
    .elementor-section[data-id="f7dd2c3"] .elementor-container,
    .elementor-section[data-id="f7dd2c3"] .elementor-element-8457188,
    .elementor-section[data-id="f7dd2c3"] .elementor-element-67c015d {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .elementor-element-67c015d h2 {
        font-size: 2rem !important;
    }
    
    .elementor-element-67c015d p {
        font-size: 1.1rem !important;
    }
}

/* ==========================================
   CRITICAL RESPONSIVE ZONE OPTIMIZATION
   Mid-range screen sizes (769px-1100px) special handling
   ========================================== */

/* Critical UX zone - Medium screens requiring special attention */
@media (min-width: 769px) and (max-width: 1100px) {
    /* Container spacing for critical zone */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"],
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] {
        padding-left: 5px !important;
        padding-right: 15px !important;
    }
    
    /* Text content micro-adjustments for critical zone */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"] p,
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        padding: 12px 4px !important;
        margin-left: 0 !important;
    }
    
    /* Grid ultra-compact mode for critical zone */
    .icons-container {
        gap: 12px !important;
        grid-template-columns: repeat(3, 1fr) !important;
        padding: 0 5px !important;
    }
    
    /* Card ultra-compact dimensions */
    .financing-icon {
        padding: 20px 6px !important;
        min-height: 280px !important;
    }
    
    /* Icon ultra-compact sizing */
    .icon-symbol {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.8rem !important;
        margin-bottom: 12px !important;
    }
    
    /* Typography ultra-compact with letter-spacing optimization */
    .icon-title {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
        line-height: 1 !important;
        min-height: 1.6rem !important;
        padding: 0 2px !important;
        letter-spacing: -0.2px !important;
    }
    
    .icon-desc {
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
        min-height: 2rem !important;
        padding: 0 2px !important;
        letter-spacing: -0.1px !important;
    }
}

/* Çok geniş ekranlar için */
@media (min-width: 1600px) {
    .icons-container {
        max-width: 1600px !important;
        gap: 60px !important;
    }
    
    .financing-icon {
        padding: 70px 20px !important;
        min-height: 520px !important;
    }
    
    .icon-symbol {
        width: 140px !important;
        height: 140px !important;
        font-size: 4rem !important;
        margin-bottom: 35px !important;
    }
    
    .icon-title {
        font-size: 1.6rem !important;
        margin-bottom: 30px !important;
    }
    
    .icon-desc {
        font-size: 1.4rem !important;
        line-height: 1.8 !important;
    }
}

/* ==========================================
   LANDSCAPE TABLET OPTIMIZATION
   Special handling for landscape orientation
   ========================================== */

/* Landscape tablet special case handling */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* Container spacing for landscape tablets */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"],
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] {
        padding-left: 5px !important;
        padding-right: 12px !important;
    }
    
    /* Text content adjustment for landscape view */
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"] p,
    .elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] p {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        padding: 10px 3px !important;
        margin-left: 0 !important;
    }
    
    /* Card dimensions for landscape tablet */
    .financing-icon {
        min-height: 280px !important;
        padding: 20px 4px !important;
    }
    
    /* Icon sizing for landscape tablet */
    .icon-symbol {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    
    /* Typography optimization for landscape */
    .icon-title {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
        line-height: 1 !important;
        min-height: 1.6rem !important;
        padding: 0 2px !important;
    }
    
    .icon-desc {
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
        min-height: 2rem !important;
        padding: 0 2px !important;
    }
}

/* Smaller tablets and large phones */
@media (max-width: 600px) {
    .mobile-stats-container {
        padding: 20px 20px; /* Standard mobil padding */
    }
    
    .mobile-financing-container {
        padding: 35px 20px 20px 20px;
        border-radius: 0 0 50% 50% / 0 0 80px 80px;
    }
    
    .mobile-financing-container::before {
        font-size: 1rem;
        top: 8px;
    }
}

/* Very small mobile optimization */
@media (max-width: 480px) {
    .elementor-column[data-id="55cff1e"],
    .elementor-column[data-id="79e1658"] {
        margin: 30px 5px !important; 
        padding: 30px 15px !important; 
    }
    
    /* Mobile stats optimization */
    .mobile-stats-container {
        padding: 20px 15px; /* Kenarlık artırıldı */
    }
    
    .mobile-stats-grid {
        gap: 8px;
    }
    
    .mobile-stat-card {
        padding: 16px 6px;
        border-radius: 15px;
        min-height: 120px;
    }
    
    .mobile-stat-number {
        font-size: 1.6rem;
    }
    
    .mobile-stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }
    
    .mobile-stat-divider {
        width: 16px;
        margin: 4px auto 6px auto;
    }
    
    /* Mobile financing optimization */
    .mobile-financing-container {
        padding: 30px 15px 18px 15px;
        border-radius: 0 0 50% 50% / 0 0 60px 60px;
    }
    
    .mobile-financing-container::before {
        font-size: 0.9rem;
        top: 6px;
        line-height: 1;
    }
    
    .mobile-financing-grid {
        gap: 8px;
        margin-top: 12px;
    }
    
    .mobile-financing-card {
        padding: 14px 6px;
        border-radius: 14px;
        min-height: 110px;
    }
    
    .mobile-financing-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    
    .mobile-financing-title {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }
    
    .mobile-financing-desc {
        font-size: 0.5rem;
        line-height: 1.2;
    }
    
    /* SED Container 480px styles */
    .sed-container {
        padding: 15px 10px;
    }
    
    .sed-main-title {
        font-size: 24px;
    }
    
    .sed-content-title {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .sed-text {
        font-size: 15px;
        padding: 0 15px;
        margin-bottom: 18px;
    }
    
    /* Mobile financing section ultra-compact optimization */
    .mobile-financing-container {
        padding: 25px 10px 15px 10px !important;
    }
    
    .mobile-financing-container::before {
        font-size: 0.85rem !important;
        top: 4px !important;
    }
    
    .mobile-financing-grid {
        gap: 6px !important;
    }
    
    .mobile-financing-card {
        min-height: 95px !important;
        padding: 10px 4px !important;
    }
    
    .mobile-financing-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
    }
    
    .mobile-financing-title {
        font-size: 0.55rem !important;
        margin-bottom: 4px !important;
    }
    
    .mobile-financing-desc {
        font-size: 0.4rem !important;
        line-height: 1.1 !important;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    /* Mobile stats extra small */
    .mobile-stats-container {
        padding: 15px 15px; /* Minimum kenarlık korundu */
    }
    
    .mobile-stats-grid {
        gap: 6px;
    }
    
    .mobile-stat-card {
        padding: 14px 4px;
        border-radius: 12px;
        min-height: 110px;
    }
    
    .mobile-stat-number {
        font-size: 1.4rem;
    }
    
    .mobile-stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.1px;
    }
    
    /* Mobile financing extra small */
    .mobile-financing-container {
        padding: 28px 15px 16px 15px;
        border-radius: 0 0 50% 50% / 0 0 50px 50px;
    }
    
    .mobile-financing-container::before {
        font-size: 0.8rem;
        top: 5px;
        letter-spacing: -0.3px;
    }
    
    .mobile-financing-grid {
        gap: 6px;
        margin-top: 10px;
    }
    
    .mobile-financing-card {
        padding: 12px 5px;
        border-radius: 12px;
        min-height: 100px;
    }
    
    .mobile-financing-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .mobile-financing-title {
        font-size: 0.6rem;
        margin-bottom: 5px;
        letter-spacing: 0.2px;
    }
    
    .mobile-financing-desc {
        font-size: 0.45rem;
        line-height: 1.15;
    }
}

/* ==========================================
   ADVANCED TEXT HANDLING & ACCESSIBILITY
   Multilingual support and accessibility features
   ========================================== */

/* Advanced text handling for left-side content */
.elementor-section[data-id="004c62e"] .elementor-column[data-id="55cff1e"] p,
.elementor-section[data-id="004c62e"] .elementor-column[data-id="79e1658"] p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    -moz-hyphens: auto !important;
    -ms-hyphens: auto !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    position: relative !important;
}

/* German language specific hyphenation rules */
.icon-title:lang(de) {
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    -moz-hyphens: auto !important;
    -ms-hyphens: auto !important;
    hyphenate-limit-chars: 6 2 2 !important;
    hyphenate-limit-lines: 2 !important;
    hyphenate-limit-last: always !important;
    hyphenate-limit-zone: 8% !important;
}

/* ==========================================
   INTERACTION & ACCESSIBILITY ENHANCEMENTS
   Hover effects, touch optimization, and accessibility
   ========================================== */

/* Responsive hover effects optimization */
@media (max-width: 1024px) {
    .financing-icon:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }
    
    .financing-icon:hover .icon-symbol {
        transform: scale(1.05) rotate(3deg) !important;
    }
}

/* Touch device optimization - disable inappropriate hover effects */
@media (hover: none) {
    .financing-icon:hover {
        transform: none !important;
    }
    
    .financing-icon:hover .icon-symbol {
        transform: none !important;
    }
    
    /* Add touch-friendly active state */
    .financing-icon:active {
        transform: translateY(-4px) scale(0.98) !important;
    }
}

/* High DPI display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .financing-icon {
        border-width: 0.5px !important;
    }
    
    .financing-icon::before {
        height: 3px !important;
    }
}

/* ==========================================
   WIZUTECH - HOMEPAGE ANIMATIONS
   ========================================== */

/* Animation on scroll in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-stat-card {
    animation: fadeInUp 0.6s ease-out;
}

.mobile-stat-card:nth-child(1) { animation-delay: 0.1s; }
.mobile-stat-card:nth-child(2) { animation-delay: 0.2s; }
.mobile-stat-card:nth-child(3) { animation-delay: 0.3s; }

/* Apply animations */
.financing-icon {
    animation: fadeInUp 0.6s ease-out;
    will-change: transform;
    backface-visibility: hidden;
}

.financing-icon:nth-child(1) { animation-delay: 0.2s; }
.financing-icon:nth-child(2) { animation-delay: 0.4s; }
.financing-icon:nth-child(3) { animation-delay: 0.6s; }

.mobile-financing-card {
    animation: fadeInUp 0.5s ease-out;
}

.mobile-financing-card:nth-child(1) { animation-delay: 0.1s; }
.mobile-financing-card:nth-child(2) { animation-delay: 0.2s; }
.mobile-financing-card:nth-child(3) { animation-delay: 0.3s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .mobile-stat-card,
    .mobile-stat-card:hover,
    .mobile-financing-card,
    .mobile-financing-card:hover,
    .financing-icon,
    .financing-icon:hover {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* Focus states for accessibility */
.mobile-stat-card:focus-within {
    outline: 2px solid #195c9c;
    outline-offset: 2px;
}

.mobile-financing-card:focus-within {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

/* 
=========================================
END OF INTEGRATED HOMEPAGE & FINANCING CSS
All sections optimized for maximum UX
Desktop, tablet, and mobile responsive
Statistics, financing, locations, about, contact
Wizutech Development Team - 2024
=========================================
*/25%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
    pointer-events: none;
}

/* Title section - desktop stiline uygun */
.mobile-financing-container::before {
    content: 'FINANZIERUNG LEICHT GEMACHT';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    text-align: center;
    width: 90%;
    line-height: 1.1;
    letter-spacing: -0.5px;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-family: 'Inter', system-ui, sans-serif;
}

/* Financing grid - 3 cards side by side, very compact */
.mobile-financing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 15px;
}

/* Individual financing cards - minimal height */
.mobile-financing-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-financing-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Card top accent line */
.mobile-financing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
}

/* Icon containers - smaller for mobile */
.mobile-financing-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px auto;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Card titles - compact */
.mobile-financing-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Card descriptions - very small */
.mobile-financing-desc {
    font-size: 0.55rem;
    line-height: 1.3;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    text-align: center;
}

/* Individual card colors and accents */
.mobile-financing-card:nth-child(1)::before {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}
.mobile-financing-card:nth-child(1) .mobile-financing-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.mobile-financing-card:nth-child(2)::before {
    background: linear-gradient(90deg, #43e97b, #38f9d7);
}
.mobile-financing-card:nth-child(2) .mobile-financing-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.mobile-financing-card:nth-child(3)::before {
    background: linear-gradient(90deg, #fa709a, #fee140);
}
.mobile-financing-card:nth-child(3) .mobile-financing-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* ==========================================
   WIZUTECH - FINANCING SECTION CORE STYLES
   ========================================== */

/* Premium card grid by Wizutech */
.icons-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 45px !important;
    margin-top: 0 !important;
    width: 100% !important;
    max-width: 1400px !important;
}

/* Premium financing cards */
.financing-icon {
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)) !important;
    backdrop-filter: blur(25px) !important;
    border-radius: 32px !important;
    padding: 60px 15px !important;
    text-align: center !important;
    position: relative !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    overflow: hidden !important;
    min-height: 480px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.financing-icon:hover {
    transform: translateY(-12px) scale(1.03);
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08)) !important;
    border-color: rgba(255,255,255,0.25) !important;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

.financing-icon::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700) !important;
    border-radius: 24px 24px 0 0 !important;
}

/* Icon symbols with gradients */
.icon-symbol {
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto 30px !important;
    border-radius: 28px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.financing-icon:nth-child(1) .icon-symbol {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}
.financing-icon:nth-child(2) .icon-symbol {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
}
.financing-icon:nth-child(3) .icon-symbol {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
}

/* Kart içeriklerinin UX odaklı optimizasyonu */
.icon-title {
    flex-shrink: 0 !important;
    margin-bottom: auto !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 25px !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    min-height: 2.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.icon-desc {
    flex-grow: 1 !important;
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: auto !important;
    font-size: 1.25rem !important;
    line-height: 1.7 !important;
    color: rgba(255,255,255,0.95) !important;
    margin: 0 !important;
    min-height: 4rem !important;
}

/* Premium interactive effects */
.financing-icon:hover .icon-symbol {
    transform: scale(1.1) rotate(5deg) !important;
}

.financing-icon .icon-symbol {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    transform-origin: center !important;
    backface-visibility: hidden !important;
}

/* ==========================================
   UNIVERSAL TEXT WRAPPING & HYPHENATION RULES
   Advanced word-breaking for multilingual content
   ========================================== */

/* Universal text wrapping rules for all card text elements */
.icon-title,
.icon-desc {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    -moz-hyphens: auto !important;
    -ms-hyphens: auto !important;
    max-width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
}

/* Enhanced word-breaking for long compound words */
.icon-title {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
}

/* Card description text handling with improved readability */
.icon-desc {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    font-size: 1rem !important; /* Improved readability based on user testing */
}

/* ==========================================
   WIZUTECH - LOCATIONS SECTION STYLES
   ========================================== */

/* Locations section (ID: ab804ba) */
.elementor-section[data-id="ab804ba"]::before {
    content: 'REGIONAL UND BUNDESWEIT - IHR ZUVERLÄSSIGER PARTNER' !important;
    position: absolute !important;
    top: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    color: #195c9c !important;
    text-align: center !important;
    width: 90% !important;
    max-width: 800px !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
    z-index: 999 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    font-family: Inter, system-ui, sans-serif !important;
}

.elementor-section[data-id="ab804ba"] {
    padding: 80px 0 !important;
    background: #ffffff !important;
    position: relative !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.elementor-section[data-id="ab804ba"] .elementor-container {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 100px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-top: 200px !important;
    background: transparent !important;
}

/* Left content area (ID: 714001f) */
.elementor-section[data-id="ab804ba"] .elementor-column[data-id="714001f"] {
    flex: 1.2 !important;
    margin-top: 0 !important;
    padding-right: 50px !important;
    background: none !important;
}

.elementor-section[data-id="ab804ba"] .elementor-column[data-id="714001f"] .elementor-widget-container p,
.elementor-section[data-id="ab804ba"] .elementor-column[data-id="714001f"] p {
    font-size: 1.25rem !important;
    line-height: 1.8 !important;
    color: #475569 !important;
    margin: 0 !important;
    text-align: left !important;
    font-weight: 400 !important;
    position: relative !important;
    padding: 30px !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6)) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 25px !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
    font-family: Inter, system-ui, sans-serif !important;
}

/* Right map area (ID: 45f83ab) */
.elementor-section[data-id="ab804ba"] .elementor-column[data-id="45f83ab"] {
    flex: 1 !important;
    margin-top: 0 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    position: static !important;
}

/* Map container */
.map-container {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85)) !important;
    backdrop-filter: blur(25px) !important;
    border-radius: 35px !important;
    padding: 60px 40px !important;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    position: relative !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    font-family: Arial, sans-serif;
}

.map-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #195c9c, #4facfe, #195c9c) !important;
    border-radius: 35px 35px 0 0 !important;
}

.map-container:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 
        0 35px 80px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.5),
        inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

/* Germany map container */
.germany-svg-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 450px;
    margin: auto;
    transform-style: preserve-3d;
}

.germany-svg-container img {
    width: 100%;
    height: auto;
    max-width: 420px;
    border-radius: 15px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.map-title {
    text-align: center;
    margin-top: 15px;
    color: #475569;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ==========================================
   WIZUTECH - ABOUT US SECTION
   ========================================== */

/* About us section by Wizutech (ID: f7dd2c3) */
.elementor-section[data-id="f7dd2c3"] {
    background: #ffffff !important;
    padding: 80px 0 !important;
    position: relative !important;
    width: 100% !important;
}

.elementor-section[data-id="f7dd2c3"] .elementor-container {
    max-width: none !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin: 0 auto !important;
}

.elementor-section[data-id="f7dd2c3"] 
.elementor-column.elementor-col-100.elementor-element-8457188 {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

.elementor-element-67c015d {
    text-align: center !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
}

.elementor-element-67c015d h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #195c9c !important;
    margin-bottom: 30px !important;
    position: relative !important;
    display: inline-block !important;
}

.elementor-element-67c015d h2:after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 4px !important;
    background: linear-gradient(135deg, #195c9c, #FFB800) !important;
    border-radius: 2px !important;
}

.elementor-element-67c015d p {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    color: #4b5563 !important;
    font-weight: 400 !important;
    margin: 0 !important;
}

/* ==========================================
   WIZUTECH - FORM SECTION (CONTACT)
   ========================================== */

/* Form section by Wizutech (ID: 004c62e) */
.elementor-section[data-id="004c62e"] {
    background: linear-gradient(135deg, #144a7a 0%, #195c9c 50%, #4a8cc8 100%) !important;
    padding: 80px 0 !important; 
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50% 50% / 0 0 200px 200px !important;
}

.elementor-section[data-id="004c62e"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25%