
/* =========================================
   AESTHETIC OPTIMIZATIONS V2 (HERO & VISUALS)
   ========================================= */

/* Hero Section V2 */
.cinkes_hero_area_v2 {
    position: relative;
    padding-top: 280px;
    padding-bottom: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cinkes_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark blue/slate gradient with high opacity for readability */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.85) 50%, rgba(15, 23, 42, 0.95) 100%);
    z-index: -1;
}

/* Decorative Shapes */
.cinkes_hero_shape_1, .cinkes_hero_shape_2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}

.cinkes_hero_shape_1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #3B82F6;
}

.cinkes_hero_shape_2 {
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: #8B5CF6;
}

/* Hero Content Styling */
.cinkes_hero_badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #60A5FA;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.cinkes_breadcrumb_title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cinkes_breadcrumb_subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #E2E8F0;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Button Improvements */
.cinkes_btn {
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cinkes_btn.theme-btn {
    background: #3B82F6;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.cinkes_btn.theme-btn:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.5);
}

.cinkes_btn.theme-btn-2 {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.cinkes_btn.theme-btn-2:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .cinkes_breadcrumb_title {
        font-size: 42px;
    }
    .cinkes_hero_area_v2 {
        padding-top: 200px;
        padding-bottom: 100px;
    }
}

@media (max-width: 576px) {
    .cinkes_breadcrumb_title {
        font-size: 32px;
    }
    .cinkes_hero_btn_wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .cinkes_btn.theme-btn-2.ml-20 {
        margin-left: 0;
    }
}
