/*
=================================================================
TimingIO - Premium UI Enhancement Styles
=================================================================
Advanced styling for a professional financial education platform
*/

:root {
    --premium-primary: #0F172A;
    --premium-accent: #3B82F6;
    --premium-accent-light: #60A5FA;
    --premium-accent-glow: rgba(59, 130, 246, 0.4);
    --premium-purple: #8B5CF6;
    --premium-purple-light: #A78BFA;
    --premium-teal: #14B8A6;
    --premium-white: #FFFFFF;
    --premium-gray-50: #F8FAFC;
    --premium-gray-100: #F1F5F9;
    --premium-gray-200: #E2E8F0;
    --premium-gray-400: #94A3B8;
    --premium-gray-600: #475569;
    --premium-gray-800: #1E293B;
    --premium-gray-900: #0F172A;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   1. ENHANCED HERO SECTION
   ============================================ */

.cinkes_hero_area_v2 {
    position: relative;
    padding-top: 320px;
    padding-bottom: 220px;
    overflow: hidden;
    background: var(--premium-gray-900);
    background-image: url('../images/hero-main-v2.jpg');
    background-size: cover;
    background-position: center;
}

.cinkes_hero_area_v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 10% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.cinkes_hero_overlay {
    background: linear-gradient(180deg, 
        rgba(15, 23, 42, 0.85) 0%, 
        rgba(15, 23, 42, 0.75) 50%,
        rgba(15, 23, 42, 0.9) 100%) !important;
    backdrop-filter: blur(3px);
}

/* Animated background shapes */
.cinkes_hero_shape_1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    filter: blur(60px);
    animation: float 15s ease-in-out infinite;
}

.cinkes_hero_shape_2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    filter: blur(60px);
    animation: float 18s ease-in-out infinite reverse;
}

.cinkes_hero_shape_3 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    filter: blur(50px);
    animation: float 20s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Hero content animation */
.cinkes_breadcrumb_content {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Enhanced badge */
.cinkes_hero_badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--premium-accent-light);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cinkes_hero_badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

/* Enhanced title */
.cinkes_breadcrumb_title {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 50%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.05;
    margin-bottom: 24px;
}

.cinkes_breadcrumb_subtitle {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto 48px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

/* Enhanced buttons */
.cinkes_hero_btn_wrapper {
    gap: 20px;
}

.cinkes_btn.theme-btn {
    background: var(--gradient-primary);
    padding: 20px 44px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.cinkes_btn.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cinkes_btn.theme-btn:hover::before {
    opacity: 1;
}

.cinkes_btn.theme-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.45);
    background: linear-gradient(135deg, #4F8EF7 0%, #9F6AFF 100%);
}

.cinkes_btn.theme-btn-2 {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 20px 44px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.cinkes_btn.theme-btn-2:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ============================================
   2. SERVICE CARDS - GLASS MORPHISM
   ============================================ */

.cinkes_service_area.grey_bg2 {
    background: var(--premium-gray-50);
    padding: 120px 0 90px;
}

.cinkes_service_item_2 {
    background: var(--premium-white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--premium-gray-100);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cinkes_service_item_2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cinkes_service_item_2:hover::before {
    transform: scaleX(1);
}

.cinkes_service_item_2:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.cinkes_service_item_2_icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #3B82F6 0%, #6366F1 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cinkes_service_item_2_icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    top: -100%;
    left: 0;
    transition: top 0.4s ease;
}

.cinkes_service_item_2:hover .cinkes_service_item_2_icon::after {
    top: 0;
}

.cinkes_service_item_2:hover .cinkes_service_item_2_icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

.cinkes_service_item_2_title a {
    font-size: 22px;
    font-weight: 700;
    color: var(--premium-gray-900);
    line-height: 1.3;
    display: block;
    transition: color 0.3s ease;
}

.cinkes_service_item_2_title a:hover {
    color: var(--premium-accent);
}

.cinkes_service_item_2_text p {
    color: var(--premium-gray-600);
    font-size: 15px;
    line-height: 1.75;
    margin-top: 14px;
}

/* ============================================
   3. SECTION HEADERS
   ============================================ */

.cinkes_section_wrapper {
    position: relative;
}

.cinkes_section_subtitle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--premium-accent);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.cinkes_section_subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.cinkes_section_title {
    font-size: 42px;
    font-weight: 800;
    color: var(--premium-gray-900);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-top: 16px;
}

/* ============================================
   4. ABOUT SECTION
   ============================================ */

.cinkes_about_2_area {
    background: var(--premium-white);
    padding: 120px 0;
}

.cinkes_about_content_wrapper .cinkes_about_subtitle {
    color: var(--premium-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cinkes_about_content_wrapper .cinkes_about_title {
    font-size: 46px;
    font-weight: 800;
    color: var(--premium-gray-900);
    line-height: 1.15;
    letter-spacing: -1px;
}

.about_text_midium {
    font-size: 17px;
    line-height: 1.8;
    color: var(--premium-gray-600);
}

/* Counter items with icons */
.cinkes_expert_countup {
    display: flex;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid var(--premium-gray-200);
    border-bottom: 1px solid var(--premium-gray-200);
    margin-top: 40px;
}

.cinkes_countup_item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cinkes_countup_number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.cinkes_countup_text {
    font-size: 14px;
    font-weight: 600;
    color: var(--premium-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Enhanced about button */
.cinkes_about_btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.cinkes_about_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    color: white;
}

.cinkes_about_btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cinkes_about_btn:hover i {
    transform: translateX(4px);
}

/* About images */
.cinkes_about_2_img_wrapper img {
    border-radius: var(--radius-2xl);
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.15);
}

.cinkes_about_2_video_img {
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

/* ============================================
   5. FAQ SECTION - MODERN ACCORDION
   ============================================ */

.cinkes_faq_area.grey_bg2 {
    background: var(--premium-gray-50);
    padding: 120px 0;
}

.cinkes_faq_wrapper {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.cinkes_accordion_item {
    background: var(--premium-white);
    border-radius: var(--radius-lg);
    margin-bottom: 0;
    border: 1px solid var(--premium-gray-100);
    overflow: hidden;
    transition: all 0.3s ease;
}

.cinkes_accordion_item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.cinkes_accordion_title {
    font-size: 17px;
    font-weight: 600;
    color: var(--premium-gray-900);
    padding: 24px 28px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cinkes_accordion_title::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--premium-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--premium-gray-600);
    transition: all 0.3s ease;
}

.cinkes_accordion_item:hover .cinkes_accordion_title::after {
    background: var(--premium-accent);
    color: white;
}

.cinkes_accordion_item:hover .cinkes_accordion_title {
    color: var(--premium-accent);
}

.collapse:not(.show) {
    display: block;
    height: 0;
    overflow: hidden;
}

.collapse.show {
    height: auto;
}

/* ============================================
   6. LEARNING PATH SECTION
   ============================================ */

.cinkes_service_icon_2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--premium-gray-50) 0%, var(--premium-gray-100) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
    position: relative;
}

.cinkes_service_icon_2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cinkes_service_item_2:hover .cinkes_service_icon_2::before {
    opacity: 1;
}

.cinkes_service_item_2:hover .cinkes_service_icon_2 {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.15);
}

.cinkes_service_icon_2 i {
    font-size: 32px;
    color: var(--premium-accent);
}

/* ============================================
   7. BLOG/ARTICLE CARDS
   ============================================ */

.cinkes_blog_area {
    padding: 120px 0 90px;
    background: var(--premium-white);
}

.cinkes_blog_item {
    background: var(--premium-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--premium-gray-100);
    height: 100%;
}

.cinkes_blog_item:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.12);
}

.cinkes_blog_img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.cinkes_blog_img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cinkes_blog_item:hover .cinkes_blog_img::after {
    opacity: 1;
}

.cinkes_blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cinkes_blog_item:hover .cinkes_blog_img img {
    transform: scale(1.08);
}

.cinkes_blog_content {
    padding: 28px;
}

.cinkes_blog_meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--premium-gray-400);
}

.cinkes_blog_meta span:first-child {
    color: var(--premium-accent);
    font-weight: 600;
}

.cinkes_blog_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--premium-gray-900);
    line-height: 1.35;
    margin-bottom: 12px;
}

.cinkes_blog_title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cinkes_blog_title a:hover {
    color: var(--premium-accent);
}

.cinkes_blog_excerpt {
    font-size: 15px;
    color: var(--premium-gray-600);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* ============================================
   8. CTA SECTION
   ============================================ */

.cinkes_cta_area {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../images/cta-financial-bg.jpg');
    background-size: cover;
    background-position: center;
}

.cinkes_cta_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.cinkes_cta_content {
    position: relative;
    z-index: 1;
}

.cinkes_cta_title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.cinkes_cta_text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.cinkes_btn.cinkes_btn-white {
    background: white;
    color: var(--premium-gray-900);
    padding: 18px 36px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cinkes_btn.cinkes_btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
    background: var(--premium-gray-50);
}

/* ============================================
   9. NOTICE/DISCLAIMER BOX
   ============================================ */

.cinkes_notice_area.grey_bg2 {
    background: var(--premium-gray-50);
    padding: 120px 0;
}

.cinkes_notice_box {
    background: linear-gradient(145deg, #FFFBEB 0%, #FEF3C7 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.cinkes_notice_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%);
}

.cinkes_notice_title {
    font-size: 24px;
    font-weight: 700;
    color: #92400E;
    margin-bottom: 20px;
}

.cinkes_notice_content p {
    font-size: 15px;
    line-height: 1.8;
    color: #92400E;
    margin-bottom: 16px;
}

.cinkes_notice_content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   10. FOOTER - PREMIUM DESIGN
   ============================================ */

.cinkes_footer_area {
    background: var(--premium-gray-900);
    color: rgba(255, 255, 255, 0.7);
}

.cinkes_footer_widget_area {
    padding-top: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cinkes_footer_info .footer_logo {
    display: block;
}

.cinkes_footer_info .footer_logo .logo-text {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cinkes_footer_info p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.cinkes_footer_title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer_widget_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_widget_list ul li {
    margin-bottom: 12px;
}

.footer_widget_list ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer_widget_list ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--premium-accent);
    transition: width 0.3s ease;
}

.footer_widget_list ul li a:hover {
    color: white;
}

.footer_widget_list ul li a:hover::before {
    width: 100%;
}

.cinkes_footer_contact_single {
    margin-bottom: 20px;
}

.cinkes_footer_contact-single_title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}

.cinkes_footer_contact_single a,
.cinkes_footer_contact_single p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cinkes_footer_contact_single a:hover {
    color: var(--premium-accent-light);
}

/* Copyright area */
.cinkes_footer_copyright_area {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cinkes_footer_copyright_area p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.cinkes_copyright_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cinkes_copyright_menu ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cinkes_copyright_menu ul li a:hover {
    color: white;
}

/* ============================================
   11. RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 1200px) {
    .cinkes_breadcrumb_title {
        font-size: 56px;
    }
    
    .cinkes_section_title {
        font-size: 36px;
    }
    
    .cinkes_about_content_wrapper .cinkes_about_title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .cinkes_hero_area_v2 {
        padding-top: 240px;
        padding-bottom: 140px;
    }
    
    .cinkes_breadcrumb_title {
        font-size: 44px;
        letter-spacing: -1px;
    }
    
    .cinkes_breadcrumb_subtitle {
        font-size: 18px;
    }
    
    .cinkes_btn.theme-btn,
    .cinkes_btn.theme-btn-2 {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .cinkes_section_title {
        font-size: 32px;
    }
    
    .cinkes_about_content_wrapper .cinkes_about_title {
        font-size: 32px;
    }
    
    .cinkes_cta_title {
        font-size: 28px;
    }
    
    .cinkes_expert_countup {
        gap: 32px;
    }
    
    .cinkes_countup_number {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .cinkes_hero_area_v2 {
        padding-top: 200px;
        padding-bottom: 100px;
    }
    
    .cinkes_breadcrumb_title {
        font-size: 36px;
    }
    
    .cinkes_breadcrumb_subtitle {
        font-size: 16px;
    }
    
    .cinkes_hero_btn_wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .cinkes_btn.theme-btn,
    .cinkes_btn.theme-btn-2 {
        width: 100%;
        max-width: 280px;
    }
    
    .cinkes_service_item_2 {
        padding: 32px 24px;
    }
    
    .cinkes_section_title {
        font-size: 28px;
    }
    
    .cinkes_about_content_wrapper .cinkes_about_title {
        font-size: 28px;
    }
    
    .cinkes_expert_countup {
        flex-direction: column;
        gap: 24px;
    }
    
    .cinkes_cta_title {
        font-size: 24px;
    }
    
    .cinkes_cta_area .row {
        text-align: center;
    }
    
    .cinkes_cta_area .text-lg-end {
        text-align: center !important;
        margin-top: 24px;
    }
    
    .cinkes_copyright_menu ul {
        justify-content: center;
    }
    
    .cinkes_notice_box {
        padding: 32px 24px;
    }
}

/* ============================================
   12. ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slide up animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations */
.cinkes_service_item_2,
.cinkes_blog_item,
.cinkes_accordion_item {
    animation: slideUp 0.6s ease-out backwards;
}

.cinkes_service_item_2:nth-child(1) { animation-delay: 0.1s; }
.cinkes_service_item_2:nth-child(2) { animation-delay: 0.2s; }
.cinkes_service_item_2:nth-child(3) { animation-delay: 0.3s; }

.cinkes_blog_item:nth-child(1) { animation-delay: 0.1s; }
.cinkes_blog_item:nth-child(2) { animation-delay: 0.2s; }
.cinkes_blog_item:nth-child(3) { animation-delay: 0.3s; }

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--premium-accent);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: var(--premium-gray-900);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--premium-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--premium-gray-300);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--premium-gray-400);
}
