/* ========================================
   PETABIT WEB STYLE GUIDE v1.0
   Renk Paleti ve Arayüz Standartları
   ======================================== */

/* Root Variables - Renk Paleti */
:root {
    /* Brand Primary (Blue) */
    --primary-300: #22A4ED;
    --primary-400: #1295DF;
    --primary-500: #1085C7;
    --primary-600: #0C689B;
    --primary-700: #0A557F;
    
    /* Brand Accent (Indigo) */
    --accent-400: #3D299B;
    --accent-500: #352487;
    --accent-600: #2A1D6C;
    
    /* Neutrals (UI Gri Skalası) */
    --neutral-50: #F7F9FC;
    --neutral-100: #EEF2F6;
    --neutral-200: #D8DEE5;
    --neutral-300: #B7C0CB;
    --neutral-400: #8A95A3;
    --neutral-500: #5A6677;
    --neutral-600: #3A4657;
    --neutral-700: #263142;
    --neutral-800: #1A2230;
    --neutral-900: #0B0F14;
    
    /* Semantic Colors */
    --success: #12B76A;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #1085C7;
    
    /* Gradients */
    --gradient-primary: linear-gradient(45deg, var(--primary-300), var(--primary-700));
    --gradient-accent: linear-gradient(45deg, var(--primary-300), var(--accent-500));
    
    /* WhatsApp Colors */
    --whatsapp: #25D366;
    --whatsapp-hover: #1DA855;
    
    /* Placeholder Gradients */
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-green: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    
    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
}

/* ========================================
   Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--neutral-700);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Container with Shine Effect */
.logo-container {
    position: relative;
    margin-bottom: 30px;
}

.loader-logo {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
}

.logo-shine {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    animation: pulseShine 2s ease-in-out infinite;
}

@keyframes pulseShine {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Loading Dots */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots .dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.loading-dots .dot:nth-child(1) { animation-delay: 0s; }
.loading-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dots .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Fade out effect */
.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .loader-logo {
        width: 120px;
    }
    
    .logo-shine {
        width: 140px;
        height: 140px;
    }
}

/* Cursor Effects - Removed for cleaner experience */

/* Text Selection */
::selection {
    background: var(--primary-400);
    color: white;
}

::-moz-selection {
    background: var(--primary-400);
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
}

.display-4 {
    font-size: clamp(2rem, 5vw, 3rem);
}

.display-5 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

a {
    color: var(--primary-700);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-600);
}

/* ========================================
   Navigation - Enhanced Version
   ======================================== */

.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
}

.navbar > .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.99);
}

/* Subtle navbar animation on load */
@keyframes navbarSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: navbarSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    padding: 0;
    margin-right: 2rem;
}

.navbar-logo {
    height: 55px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-logo:hover {
    transform: scale(1.08) rotate(-1deg);
    filter: drop-shadow(0 4px 8px rgba(16, 133, 199, 0.3));
}

/* Hamburger Menu Enhancement */
.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(16, 133, 199, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    display: block;
    height: 3px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

/* Animated Hamburger */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg) translateY(-6px) translateX(6px);
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Items Spacing and Style */
.navbar-nav {
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-nav .nav-item {
    margin: 0 0.2rem;
    position: relative;
    flex-shrink: 0;
}

.navbar-nav .nav-link {
    color: var(--neutral-700);
    font-weight: 500;
    padding: 0.7rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

/* Modern Hover Effect */
.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-600);
    background: rgba(16, 133, 199, 0.08);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-600);
    background: rgba(16, 133, 199, 0.1);
    font-weight: 600;
}

/* Icon Styles */
.navbar-nav .nav-link i {
    font-size: 1rem;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-500);
    margin-right: 0.3rem;
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-600);
}

.navbar-nav .nav-link.active i {
    opacity: 1;
    color: var(--primary-600);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* CTA Button Enhanced */
.nav-cta {
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    margin-left: 0.8rem;
    background: var(--gradient-primary);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-700), var(--accent-500));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 133, 199, 0.35);
}

/* Dropdown Styles - Enhanced */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.8rem;
    margin-top: 0.8rem;
    min-width: 280px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 133, 199, 0.1);
    animation: dropdownSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Dropdown Arrow Pointer */
.navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-top: 1px solid rgba(16, 133, 199, 0.1);
    border-left: 1px solid rgba(16, 133, 199, 0.1);
}

.navbar .dropdown-item {
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--neutral-700);
    font-weight: 500;
    margin: 0.2rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Dropdown Item Hover Effect */
.navbar .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 70%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .dropdown-item:hover::before {
    transform: translateY(-50%) scaleY(1);
}

.navbar .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(16, 133, 199, 0.12) 0%, rgba(16, 133, 199, 0.05) 100%);
    color: var(--primary-600);
    transform: translateX(8px);
    padding-left: 1.5rem;
}

.navbar .dropdown-item i {
    font-size: 1.1rem;
    color: var(--primary-500);
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-600);
}

.navbar .dropdown-divider {
    margin: 0.6rem 0;
    border-color: rgba(16, 133, 199, 0.1);
    position: relative;
}

/* Dropdown Toggle Arrow - Enhanced */
.navbar .dropdown-toggle {
    position: relative;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-width: 0.4em 0.4em 0 0.4em;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
    color: var(--primary-600);
}

/* Dropdown Hover Effect for Toggle */
.navbar .dropdown:hover .dropdown-toggle {
    color: var(--primary-600);
}

/* ========================================
   Navbar Responsive - Medium-Large Screens
   (Horizontal menu, compact items)
   ======================================== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar {
        padding: 0.7rem 0;
    }

    .navbar-logo {
        height: 42px;
    }

    .navbar-brand {
        margin-right: 1rem;
    }

    .navbar-nav .nav-item {
        margin: 0 0.05rem;
    }

    .navbar-nav .nav-link {
        padding: 0.45rem 0.55rem;
        font-size: 0.82rem;
        gap: 0.25rem;
        white-space: nowrap;
    }

    .navbar-nav .nav-link i {
        font-size: 0.8rem;
        margin-right: 0.1rem;
    }

    .nav-cta {
        padding: 0.45rem 0.9rem !important;
        font-size: 0.82rem;
        margin-left: 0.4rem;
    }

    .nav-cta .me-2 {
        margin-right: 0.3rem !important;
    }

    .navbar .dropdown-menu {
        min-width: 240px;
    }

    .navbar .dropdown-toggle::after {
        margin-left: 0.3rem;
        border-width: 0.3em 0.3em 0 0.3em;
    }
}

/* ========================================
   Navbar Responsive - Large Screens Fix
   (1200px - 1399px) - Slight reduction
   ======================================== */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-nav .nav-item {
        margin: 0 0.15rem;
    }

    .navbar-nav .nav-link {
        padding: 0.6rem 0.85rem;
        font-size: 0.9rem;
        gap: 0.35rem;
    }

    .navbar-nav .nav-link i {
        font-size: 0.9rem;
        margin-right: 0.2rem;
    }

    .nav-cta {
        padding: 0.55rem 1.2rem !important;
        font-size: 0.9rem;
        margin-left: 0.6rem;
    }
}

/* ========================================
   Navbar Responsive - Mobile Menu
   (Hamburger menu active)
   ======================================== */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.6rem 0;
    }

    .navbar-toggler {
        display: flex !important;
        padding: 0.4rem 0.6rem;
        z-index: 1001;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 0;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.99);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }

    .navbar-collapse:not(.show):not(.collapsing) {
        display: none !important;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .navbar-nav .nav-item {
        margin: 0.15rem 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
        font-size: 0.95rem;
        justify-content: flex-start;
        width: 100%;
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-link:hover {
        transform: none;
        background: rgba(16, 133, 199, 0.08);
    }

    .navbar .dropdown-menu {
        box-shadow: none;
        background: rgba(247, 249, 252, 0.6);
        border: none;
        border-left: 3px solid var(--primary-400);
        padding: 0.5rem 0 0.5rem 0.75rem;
        margin: 0.25rem 0 0.25rem 1rem;
        animation: none;
        margin-top: 0;
        min-width: auto;
        position: static !important;
        float: none;
        border-radius: var(--radius-md);
    }

    .navbar .dropdown-menu::before {
        display: none;
    }

    .navbar .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
    }

    .navbar .dropdown-item:hover {
        transform: none;
        padding-left: 1.2rem;
    }

    .navbar .dropdown-item::before {
        display: none;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 0.75rem;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-nav .ms-lg-2 {
        margin-left: 0 !important;
    }

    .navbar-logo {
        height: 40px;
    }
}

/* ========================================
   Navbar Responsive - Small Screens
   ======================================== */
@media (max-width: 575.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .navbar-logo {
        height: 35px;
    }

    .navbar-toggler {
        padding: 0.35rem 0.5rem;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 17px;
    }

    .navbar-collapse {
        padding: 0.75rem;
    }

    .navbar-nav .nav-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }

    .navbar-nav .nav-link i {
        font-size: 0.85rem;
    }

    .navbar .dropdown-item {
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 0.65rem 1rem !important;
        font-size: 0.9rem;
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-600);
    color: white;
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(16, 133, 199, 0.5); }
    50% { box-shadow: 0 0 20px rgba(16, 133, 199, 0.8), 0 0 30px rgba(16, 133, 199, 0.4); }
}

.btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(16, 133, 199, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-outline-primary {
    color: var(--primary-700);
    border: 2px solid var(--primary-300);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-600);
    font-weight: 600;
}

.btn-white:hover {
    background: var(--neutral-50);
    color: var(--primary-700);
}

.btn-outline-white {
    color: white;
    border: 2px solid white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-600);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ========================================
   Breadcrumb
   ======================================== */

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--neutral-400);
    padding: 0 0.75rem;
}

.breadcrumb-item a {
    color: var(--neutral-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-500);
}

.breadcrumb-item.active {
    color: var(--neutral-700);
    font-weight: 600;
}

/* Light breadcrumb for dark backgrounds */
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-light .breadcrumb-item.active {
    color: white;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #f0f6fc 0%, #e8f0f8 50%, #dde9f5 100%);
    position: relative;
    overflow: hidden;
}

/* Ambient Glow Effects */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 133, 199, 0.18) 0%, transparent 70%);
    top: -15%;
    right: 5%;
    animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(53, 36, 135, 0.12) 0%, transparent 70%);
    bottom: 0%;
    left: -8%;
    animation: glowFloat 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(34, 164, 237, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: glowFloat 12s ease-in-out infinite;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(30px, -20px) scale(1.15); opacity: 1; }
}

/* Hero Centered Layout */
.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 3rem 0 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Hero Tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: 50px;
    padding: 0.5rem 1.25rem 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(16, 133, 199, 0.08);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    border-color: var(--primary-300);
    box-shadow: 0 4px 20px rgba(16, 133, 199, 0.15);
    transform: translateY(-1px);
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(18, 183, 106, 0); }
}

/* Hero Content Block */
.hero-content {
    max-width: 700px;
    margin-bottom: 2.5rem;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--neutral-900);
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-400), var(--accent-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    background-size: 200% 200%;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--neutral-500);
    margin-bottom: 2.25rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Buttons */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(16, 133, 199, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 133, 199, 0.4);
    color: white;
}

.hero-btn-shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -75%; }
    50% { left: 125%; }
    100% { left: 125%; }
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--primary-600);
    border: 2px solid var(--neutral-200);
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    border-color: var(--primary-400);
    color: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Hero Stats Row - Centered */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

/* Hero Trust Row */
.hero-trust-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glitch Effect - Removed for cleaner experience */

.hero-image-wrapper {
    position: relative;
    height: 500px;
}

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

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    opacity: 0.95;
}

.floating-card:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(16, 133, 199, 0.3);
    opacity: 1;
    z-index: 10;
}

.floating-card i {
    animation: pulse 2s infinite;
}

.floating-logo {
    width: 45px;
    height: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

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

.floating-card.card-2 {
    top: 15%;
    right: 15%;
    animation-delay: 0.5s;
}

.floating-card.card-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 1s;
}

.floating-card.card-4 {
    bottom: 10%;
    right: 25%;
    animation-delay: 1.5s;
}

.floating-card.card-5 {
    top: 45%;
    left: 35%;
    animation-delay: 2s;
}

.floating-card.card-6 {
    bottom: 45%;
    right: 5%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

/* 3D Card Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.3s ease;
}

.hero-visual-badge-icon-blue {
    background: linear-gradient(135deg, rgba(16, 133, 199, 0.1), rgba(16, 133, 199, 0.15));
}

.hero-visual-badge-icon-blue i {
    color: var(--primary-600);
}

.hero-visual-badge-icon-purple {
    background: linear-gradient(135deg, rgba(53, 36, 135, 0.1), rgba(53, 36, 135, 0.15));
}

.hero-visual-badge-icon-purple i {
    color: var(--accent-500);
}

.stat-item {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(16, 133, 199, 0.12), 0 2px 4px rgba(0, 0, 0, 0.04);
    border-color: rgba(16, 133, 199, 0.2);
}

.stat-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(16, 133, 199, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.08) rotate(-3deg);
}

.stat-icon-accent {
    background: linear-gradient(135deg, var(--accent-400), var(--accent-600));
    box-shadow: 0 4px 15px rgba(53, 36, 135, 0.3);
}

.stat-icon-success {
    background: linear-gradient(135deg, #34d399, #059669);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.stat-icon-warning {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--neutral-400);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Hero Visual Badge */
.hero-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    padding: 0.65rem 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero-visual-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.hero-visual-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(18, 183, 106, 0.1), rgba(5, 150, 105, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-visual-badge-icon i {
    color: var(--success);
    font-size: 1rem;
}

.hero-visual-badge strong {
    display: block;
    font-size: 0.8rem;
    color: var(--neutral-800);
    line-height: 1.3;
}

.hero-visual-badge span {
    font-size: 0.7rem;
    color: var(--neutral-400);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid var(--primary-400);
    border-radius: var(--radius-xl);
    padding: 1rem 2rem;
    box-shadow: 0 10px 40px rgba(16, 133, 199, 0.2);
}

/* Responsive adjustments for hero */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-stats-row {
        grid-template-columns: repeat(4, 1fr);
        max-width: 600px;
        gap: 0.75rem;
    }

    .hero-centered {
        padding: 3rem 0 2rem;
        min-height: calc(100vh - 80px);
    }
}

@media (max-width: 768px) {
    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .stat-item {
        padding: 0.875rem 0.75rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        border-radius: 11px;
        margin-bottom: 0.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .hero-trust-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-centered {
        padding: 2rem 0 1.5rem;
        min-height: calc(100vh - 80px);
    }
    
    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        text-align: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

.tilt-card:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(10deg) scale(1.05);
}

/* Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Morphing Blob */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-300), var(--accent-400));
    animation: morph 8s ease-in-out infinite;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.1;
    z-index: 0;
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    33% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    66% { border-radius: 70% 30% 50% 60% / 30% 30% 70% 70%; }
}

/* ========================================
   Service Cards
   ======================================== */

#services {
    background-color: #f8f9fa;
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card h4 {
    color: var(--neutral-900);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--neutral-600);
    margin-bottom: 1rem;
}

.service-card ul {
    margin-top: 1rem;
    flex-grow: 1;
}

.service-card li {
    color: var(--neutral-700);
    padding: 0.25rem 0;
}

.service-card .btn {
    margin-top: auto !important;
}

/* Removed complex animation for cleaner experience */

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(16, 133, 199, 0.15);
    border-color: var(--primary-300);
    background: rgba(255, 255, 255, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-icon {
    color: var(--primary-600);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 133, 199, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon i {
    font-size: 2rem !important;
    color: var(--primary-600);
}

/* Simplified icon hover effect */

/* ========================================
   Package Cards
   ======================================== */

.package-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 252, 0.95));
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 2px solid var(--neutral-200);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(0deg);
}

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

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-10px);
    border-color: var(--primary-400);
    box-shadow: 0 20px 40px rgba(16, 133, 199, 0.25);
}

/* AI Contact Center card - hover to left */
.package-card-ai:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
}

.package-card.featured {
    border-color: var(--primary-400);
    transform: scale(1.05);
    animation: featurePulse 2s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(34, 164, 237, 0.05));
}

@keyframes featurePulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(16, 133, 199, 0.4),
                    0 10px 30px rgba(16, 133, 199, 0.1);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(16, 133, 199, 0),
                    0 10px 40px rgba(16, 133, 199, 0.2);
    }
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

.package-header {
    padding: 2rem;
    border-bottom: 1px solid var(--neutral-100);
}

.package-header h4 {
    margin-bottom: 0.5rem;
}

.package-features {
    padding: 2rem;
    list-style: none;
    flex-grow: 1;
}

.package-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--neutral-600);
}

.package-features li i {
    flex-shrink: 0;
    margin-top: 2px;
}

.package-price {
    padding: 1.5rem 2rem;
    background: var(--neutral-50);
    text-align: center;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-600);
}

.price-period {
    color: var(--neutral-500);
    font-size: 1rem;
}

.package-footer {
    padding: 2rem;
    border-top: 1px solid var(--neutral-100);
}

/* ========================================
   Case Studies
   ======================================== */

.case-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.case-card h5 {
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.case-card p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-300) 0%, var(--accent-500) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-card:hover::before {
    opacity: 0.1;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.case-card .case-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-card .btn {
    margin-top: auto;
}

.case-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-purple);
}

.case-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.case-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 50px 50px;
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}


.case-placeholder.bg-success {
    background: var(--gradient-green);
}

.case-placeholder.bg-info {
    background: var(--gradient-purple);
}

.case-placeholder i {
    font-size: 3rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    z-index: 1;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.case-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-metrics {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.case-content p {
    flex-grow: 1;
}

.case-content .btn {
    margin-top: auto !important;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-600);
}

.metric span {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

/* ========================================
   Testimonials
   ======================================== */

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    flex-grow: 1;
    font-style: italic;
    color: var(--neutral-600);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--neutral-100);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* ========================================
   Process Section - Enhanced Version
   ======================================== */

/* ========================================
   Process Section V2 - Modern Redesign
   ======================================== */
.process-section-v2 {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    overflow: hidden;
}

.process-section-v2::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-section-v2::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-v2-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.process-v2-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.process-v2-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
}

/* Track Layout */
.process-v2-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
}

/* Connecting Line */
.process-v2-line {
    position: absolute;
    top: 0;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #f59e0b, #10b981);
    border-radius: 3px;
}

.process-v2-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 7px;
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #f59e0b, #10b981);
    filter: blur(8px);
    opacity: 0.4;
    border-radius: 10px;
}

/* Timeline Dot */
.process-v2-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-v2-dot {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--step-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-v2-dot-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--step-color);
    transition: all 0.3s ease;
}

.process-v2-item:hover .process-v2-dot {
    background: var(--step-color);
    transform: translateX(-50%) translateY(-50%) scale(1.15);
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.12), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.process-v2-item:hover .process-v2-dot-num {
    color: white;
}

/* Card */
.process-v2-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.process-v2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--step-color);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-v2-item:hover .process-v2-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.process-v2-item:hover .process-v2-card::before {
    opacity: 1;
}

/* Card Icon */
.process-v2-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: #f0f9ff;
    transition: all 0.4s ease;
}

.process-v2-card-icon i {
    font-size: 1.5rem;
    color: var(--step-color);
    transition: all 0.3s ease;
}

.process-v2-item:hover .process-v2-card-icon {
    background: var(--step-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.process-v2-item:hover .process-v2-card-icon i {
    color: white;
    transform: rotate(-5deg);
}

/* Card Title */
.process-v2-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.process-v2-item:hover .process-v2-card-title {
    color: var(--step-color);
}

/* Card Description */
.process-v2-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Card Arrow */
.process-v2-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
}

.process-v2-item:hover .process-v2-card-arrow {
    opacity: 1;
    transform: translateY(0);
    background: var(--step-color);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .process-v2-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
        padding-top: 0;
    }

    .process-v2-line {
        display: none;
    }

    .process-v2-dot {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
    }

    .process-v2-item:hover .process-v2-dot {
        transform: scale(1.15);
    }

    .process-v2-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .process-section-v2 {
        padding: 3.5rem 0;
    }

    .process-v2-track {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-v2-card {
        padding: 1.5rem 1.25rem;
    }

    .process-v2-title {
        font-size: 1.75rem;
    }

    .process-v2-card-arrow {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Home Blog Section
   ======================================== */
.home-blog-section {
    padding: 5rem 0;
    background: #ffffff;
}

.home-blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1rem;
}

.home-blog-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.home-blog-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
}

.home-blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.home-blog-view-all:hover {
    border-color: var(--primary-500);
    color: var(--primary-600);
    background: rgba(14, 165, 233, 0.04);
    transform: translateX(4px);
}

.home-blog-view-all i {
    transition: transform 0.3s ease;
}

.home-blog-view-all:hover i {
    transform: translateX(4px);
}

/* Blog Grid */
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Blog Card */
.home-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.home-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Card Image */
.home-blog-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.home-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-blog-card:hover .home-blog-card-img img {
    transform: scale(1.08);
}

.home-blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-blog-card-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Category Badge */
.home-blog-card-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    background: white;
    color: var(--primary-600);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

/* Card Body */
.home-blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta */
.home-blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.home-blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.home-blog-card-meta i {
    font-size: 0.75rem;
    color: var(--primary-400);
}

/* Title */
.home-blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0.75rem;
}

.home-blog-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-blog-card-title a:hover {
    color: var(--primary-600);
}

/* Excerpt */
.home-blog-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #64748b;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

/* Read More Link */
.home-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.home-blog-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.home-blog-card-link:hover {
    color: var(--primary-700);
    gap: 0.75rem;
}

.home-blog-card-link:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .home-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-blog-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575px) {
    .home-blog-section {
        padding: 3.5rem 0;
    }

    .home-blog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-blog-card-img {
        height: 180px;
    }
}

/* ========================================
   Blog Cards
   ======================================== */

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-card .blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .btn {
    margin-top: auto;
}

.blog-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.blog-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 50px 50px;
    animation: slidePattern 20s linear infinite;
}

.blog-placeholder i {
    font-size: 3rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    z-index: 1;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.blog-placeholder.bg-primary {
    background: var(--gradient-primary) !important;
}

.blog-placeholder.bg-success {
    background: var(--gradient-green) !important;
}

.blog-placeholder.bg-info {
    background: var(--gradient-purple) !important;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-content h5 {
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--neutral-600);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-content .btn {
    margin-top: auto !important;
}

/* ========================================
   FAQ Section
   ======================================== */

.accordion-button {
    font-weight: 600;
    color: var(--neutral-700);
    background: transparent;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-600);
    background: rgba(16, 133, 199, 0.05);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(16, 133, 199, 0.35);
    border-color: var(--primary-400);
}

.accordion-item {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-body {
    padding: 1.25rem;
    color: var(--neutral-600);
}

/* ========================================
   About Section
   ======================================== */

.stat-box {
    margin-bottom: 1.5rem;
}

.stat-box h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.stat-box p {
    color: var(--neutral-600);
    margin: 0;
}

.team-placeholder {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neutral-100);
}

.team-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 133, 199, 0.1) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    top: -50%;
    left: -50%;
}

/* ========================================
   CTA Section
   ======================================== */

.bg-gradient-primary {
    background: var(--gradient-primary);
}

#cta h2,
#cta p,
#cta .display-5,
#cta .lead {
    color: white !important;
}

#cta {
    color: white;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-control,
.form-select {
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(16, 133, 199, 0.35);
}

.form-label {
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

/* Form Mobile Responsive */
@media (max-width: 767.98px) {
    .form-control,
    .form-select {
        padding: 0.625rem 0.875rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group .form-control,
    .input-group .btn {
        width: 100%;
        border-radius: var(--radius-md) !important;
    }
    
    .input-group .btn {
        margin-top: 0.5rem;
    }
    
    /* Contact form specific */
    .contact-form .row {
        --bs-gutter-x: 1rem;
    }
}

@media (max-width: 575.98px) {
    .form-control,
    .form-select {
        padding: 0.5rem 0.75rem;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
}

.contact-info {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.social-link {
    color: var(--neutral-500);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-600);
    transform: translateY(-3px);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 3rem 0 1.5rem;
}

.footer h4,
.footer h6 {
    color: white;
    margin-bottom: 1rem;
}

.footer .text-muted {
    color: var(--neutral-400) !important;
}

.footer a.text-muted:hover {
    color: var(--primary-400) !important;
}

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

.footer ul li {
    margin-bottom: 0.5rem;
}


/* ========================================
   Utilities
   ======================================== */

.logo-placeholder {
    width: 120px;
    height: 60px;
    background: var(--neutral-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
    font-size: 0.875rem;
}

.client-logo {
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(50%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    display: inline-block;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    opacity: 1;
}

/* Team Logo */
.team-logo {
    width: 150px;
    height: auto;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Service and Case Image Improvements */
.service-visual {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--accent-500) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-visual::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateGradient 10s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-visual i {
    font-size: 4rem;
    color: white;
    z-index: 1;
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
    color: white;
}

/* ========================================
   Back to Top Button
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 40px;
    height: 40px;
    background: var(--primary-600);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-700);
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Logo Responsive */
@media (max-width: 768px) {
    .client-logo-img {
        height: 40px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .team-logo {
        width: 120px;
    }
    
    /* Hide extra floating cards on mobile */
    .floating-card.card-4,
    .floating-card.card-5,
    .floating-card.card-6 {
        display: none;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .floating-logo {
        width: 35px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
        height: 300px;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .badge-featured {
        right: -20px;
        font-size: 0.625rem;
        padding: 0.25rem 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        right: 80px;
        bottom: 25px;
    }
    
    .stat-box {
        text-align: center;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-content {
        margin-bottom: 1.5rem;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .hero-stats-row {
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.75rem 0.5rem;
    }

    .stat-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        margin-bottom: 0.4rem;
    }

    .stat-icon i {
        font-size: 0.85rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Hero counter stats on mobile */
    .hero-section .counter {
        font-size: 1.5rem;
    }
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.zoom-in {
    opacity: 0;
    animation: zoomIn 0.6s ease-out forwards;
}

.slide-in-bottom {
    opacity: 0;
    animation: slideInBottom 0.6s ease-out forwards;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animation */
.stagger-animation > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

/* Number Counter Animation */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-600);
    display: inline-block;
}

/* Reveal on Scroll */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Text Typing Effect */
.typing-text {
    border-right: 2px solid var(--primary-600);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--primary-600); }
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    transform-style: preserve-3d;
}

.parallax-element {
    transition: transform 0.5s ease-out;
}

/* ========================================
   Scrollbar Styles
   ======================================== */

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-600);
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    .footer {
        display: none !important;
    }
}

/* ========================================
   Focus Styles (Accessibility)
   ======================================== */

*:focus-visible {
    outline: 3px solid rgba(16, 133, 199, 0.35);
    outline-offset: 2px;
}

/* ========================================
   Service Detail Page
   ======================================== */

.service-icon-lg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-primary-soft {
    background: rgba(16, 133, 199, 0.1);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* ========================================
   Blog Detail Page
   ======================================== */

.blog-content-wrapper {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-content-wrapper h2,
.blog-content-wrapper h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content-wrapper p {
    margin-bottom: 1.5rem;
}

.blog-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.blog-content-wrapper ul,
.blog-content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content-wrapper li {
    margin-bottom: 0.5rem;
}

.blog-content-wrapper blockquote {
    border-left: 4px solid var(--primary-500);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--neutral-600);
}

/* ========================================
   Blog Page - Modern UI/UX
   ======================================== */

/* Blog Hero Section */
.blog-hero {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, rgba(16, 133, 199, 0.08) 50%, var(--neutral-50) 100%);
    z-index: -1;
}

.blog-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%231085C7" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    animation: backgroundFloat 30s linear infinite;
}

@keyframes backgroundFloat {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.min-vh-50 {
    min-height: 50vh;
}

.text-gradient-blog {
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blog Search Box */
.blog-search-box {
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 8px;
}

.blog-search-box .input-group-text {
    background: transparent;
    padding-left: 1.5rem;
}

.blog-search-box .form-control {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
}

.blog-search-box .form-control:focus {
    box-shadow: none;
}

.blog-search-box .btn {
    border-radius: 50px !important;
    padding: 0.75rem 2rem;
}

/* Blog Categories Filter */
.blog-categories-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none;
}

.blog-categories-scroll::-webkit-scrollbar {
    display: none;
}

.blog-category-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    background: var(--neutral-100);
    color: var(--neutral-700);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-category-tag:hover {
    background: rgba(16, 133, 199, 0.1);
    color: var(--primary-600);
    transform: translateY(-2px);
}

.blog-category-tag.active {
    background: var(--primary-600);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 133, 199, 0.3);
}

/* Featured Posts Section */
.featured-post-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

.featured-post-card.large {
    min-height: 400px;
}

.featured-post-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.featured-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.featured-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.featured-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-post-card.large .featured-post-title {
    font-size: 2rem;
}

.featured-post-excerpt {
    opacity: 0.9;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.featured-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Blog Card Modern */
.blog-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background: white;
    color: var(--primary-600);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-card-featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--neutral-500);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-meta i {
    font-size: 0.75rem;
    color: var(--primary-500);
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--neutral-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-600);
}

.blog-card-excerpt {
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.blog-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-100);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-700);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Pagination Modern */
.pagination-modern {
    gap: 0.5rem;
}

.pagination-modern .page-item .page-link {
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--neutral-700);
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.pagination-modern .page-item .page-link:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 133, 199, 0.3);
}

.pagination-modern .page-item.active .page-link {
    background: var(--primary-600);
    color: white;
    box-shadow: 0 5px 15px rgba(16, 133, 199, 0.3);
}

.pagination-modern .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}


/* Empty State */
.empty-state {
    padding: 3rem;
}

/* ========================================
   Blog Detail Page - Modern UI/UX
   ======================================== */

/* Blog Detail Hero */
.blog-detail-hero {
    position: relative;
    padding: 5rem 0;
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.blog-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.blog-detail-hero-bg .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.1);
}

.blog-detail-hero-bg .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 133, 199, 0.9) 0%, rgba(53, 36, 135, 0.9) 100%);
}

.blog-detail-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-500) 100%);
}

.blog-detail-header {
    position: relative;
    z-index: 1;
}

.blog-detail-category {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-category:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.blog-detail-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-detail-excerpt {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 800px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar i {
    font-size: 1.5rem;
    opacity: 0.7;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
}

.publish-date {
    font-size: 0.85rem;
    opacity: 0.8;
}

.meta-stats {
    display: flex;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Blog Detail Featured Image */
.blog-detail-image-section {
    margin-top: -5rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.blog-detail-featured-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.blog-detail-featured-image img {
    width: 100%;
    height: auto;
}

/* Blog Sidebar */
.blog-sidebar {
    padding-top: 1rem;
}

/* TOC Card */
.toc-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.toc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--neutral-100);
    color: var(--neutral-900);
}

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

.toc-item {
    margin-bottom: 0.5rem;
}

.toc-item.level-3 {
    padding-left: 1rem;
}

.toc-nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-nav a:hover {
    color: var(--primary-600);
    background: rgba(16, 133, 199, 0.05);
}

.toc-nav a.active {
    color: var(--primary-600);
    background: rgba(16, 133, 199, 0.1);
    border-left-color: var(--primary-600);
    font-weight: 600;
}

/* Share Card */
.share-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.share-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neutral-900);
}

.share-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.share-btn.twitter {
    background: #f0f0f0;
    color: #000;
}

.share-btn.twitter:hover {
    background: #000;
    color: white;
}

.share-btn.facebook {
    background: #e7f3ff;
    color: #1877F2;
}

.share-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.share-btn.linkedin {
    background: #e8f4f8;
    color: #0A66C2;
}

.share-btn.linkedin:hover {
    background: #0A66C2;
    color: white;
}

.share-btn.whatsapp {
    background: #e7f7ef;
    color: #25D366;
}

.share-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

.share-btn.copy {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.share-btn.copy:hover {
    background: var(--primary-600);
    color: white;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--neutral-100);
    color: var(--neutral-700);
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--primary-600);
    color: white;
}

/* Post Navigation */
.post-navigation {
    padding: 2rem 0;
    border-top: 1px solid var(--neutral-200);
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-nav-link:hover {
    background: rgba(16, 133, 199, 0.1);
    transform: translateY(-3px);
}

.post-nav-link .nav-label {
    font-size: 0.8rem;
    color: var(--primary-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.post-nav-link .nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-nav-link.next {
    text-align: right;
}

/* Related Posts Section */
.related-posts-section {
    background: linear-gradient(180deg, var(--neutral-50) 0%, white 100%);
}

/* Blog Content Enhanced */
.blog-detail-content .blog-content-wrapper {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--neutral-700);
}

.blog-detail-content .blog-content-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    color: var(--neutral-900);
}

.blog-detail-content .blog-content-wrapper h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.blog-detail-content .blog-content-wrapper a {
    color: var(--primary-600);
    text-decoration: underline;
    text-decoration-color: rgba(16, 133, 199, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.blog-detail-content .blog-content-wrapper a:hover {
    text-decoration-color: var(--primary-600);
}

.blog-detail-content .blog-content-wrapper blockquote {
    background: linear-gradient(135deg, rgba(16, 133, 199, 0.05) 0%, rgba(53, 36, 135, 0.05) 100%);
    border-left: 4px solid var(--primary-500);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--neutral-700);
}

.blog-detail-content .blog-content-wrapper code {
    background: var(--neutral-100);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--primary-700);
}

.blog-detail-content .blog-content-wrapper pre {
    background: var(--neutral-900);
    color: #f8f8f2;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-detail-content .blog-content-wrapper pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.blog-detail-content .blog-content-wrapper img {
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-detail-content .blog-content-wrapper ul,
.blog-detail-content .blog-content-wrapper ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-detail-content .blog-content-wrapper li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

/* Responsive Adjustments for Blog */
@media (max-width: 991.98px) {
    .blog-detail-hero {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .blog-detail-image-section {
        margin-top: -3rem;
    }
    
    .blog-sidebar {
        margin-top: 2rem;
    }
    
    .toc-card {
        display: none;
    }
    
    .featured-post-card {
        min-height: 240px;
    }
    
    .featured-post-card.large {
        min-height: 300px;
    }
    
    .featured-post-title {
        font-size: 1.25rem;
    }
    
    .featured-post-card.large .featured-post-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .blog-search-box {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 0;
    }
    
    .blog-search-box .input-group-text,
    .blog-search-box .form-control,
    .blog-search-box .btn {
        border-radius: var(--radius-lg) !important;
    }
    
    .blog-search-box .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-body {
        padding: 1.25rem;
    }
    
    .blog-detail-excerpt {
        font-size: 1rem;
    }
    
    .post-navigation .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-navigation .col-6 {
        width: 100%;
    }
    
    .post-nav-link.next {
        text-align: left;
    }
    
}

/* ========================================
   Services Page - Hero Section
   ======================================== */
.services-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    overflow: hidden;
    margin-top: 76px;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.06"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-light .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Service Card V2 - Modern Design
   ======================================== */
.service-card-v2 {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--service-color, var(--primary-600));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card-v2:hover::before {
    opacity: 1;
}

.service-card-v2-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.service-card-v2-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--service-color, var(--primary-600)) 10%, transparent);
    transition: all 0.3s ease;
}

.service-card-v2-icon i {
    font-size: 1.5rem;
    color: var(--service-color, var(--primary-600));
    transition: all 0.3s ease;
}

.service-card-v2:hover .service-card-v2-icon {
    background: var(--service-color, var(--primary-600));
    transform: scale(1.05);
}

.service-card-v2:hover .service-card-v2-icon i {
    color: white;
}

.service-card-v2-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-v2-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
}

.service-card-v2-desc {
    color: var(--neutral-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card-v2-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.service-card-v2-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.service-card-v2-features li i {
    color: var(--service-color, var(--primary-600));
    font-size: 0.85rem;
    flex-shrink: 0;
}

.service-card-v2-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-100);
}

.service-card-v2-btn {
    display: inline-flex;
    align-items: center;
    color: var(--service-color, var(--primary-600));
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-v2-btn:hover {
    color: var(--service-color, var(--primary-600));
    gap: 0.25rem;
}

.service-card-v2-btn i {
    transition: transform 0.3s ease;
}

.service-card-v2-btn:hover i {
    transform: translateX(4px);
}

/* ========================================
   Services CTA Section
   ======================================== */
.services-cta {
    padding: 5rem 0;
    background: var(--neutral-50);
}

.services-cta-inner {
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.services-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none"%3E%3Ccircle cx="20" cy="20" r="2" fill="%23fff" fill-opacity=".08"/%3E%3C/g%3E%3C/svg%3E');
}

.services-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
}

.services-cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
}

/* ========================================
   Service Detail Page - Hero
   ======================================== */
.service-detail-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    overflow: hidden;
    margin-top: 76px;
}

.service-detail-hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.06"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.service-detail-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-hero-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-detail-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-detail-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.6;
}

.service-detail-hero-visual {
    text-align: center;
    opacity: 0.15;
}

.service-detail-hero-visual i {
    font-size: 12rem;
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-600);
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--neutral-100);
    color: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: white;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Service Detail - Content
   ======================================== */
.service-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-700);
}

.service-detail-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-detail-content h3:first-child {
    margin-top: 0;
}

.service-detail-content h4 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1.25rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.service-detail-content ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.75rem;
    color: var(--neutral-700);
}

.service-detail-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.95rem;
}

.service-detail-content strong {
    color: var(--neutral-900);
    font-weight: 600;
}

.service-detail-image img {
    width: 100%;
    border-radius: 16px;
}

/* ========================================
   Service Detail - Sidebar
   ======================================== */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--neutral-200);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.service-sidebar-card-header {
    background: linear-gradient(135deg, var(--service-color, var(--primary-600)), color-mix(in srgb, var(--service-color, var(--primary-600)) 80%, var(--accent-500)));
    color: white;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-sidebar-card-body {
    padding: 1.25rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--neutral-100);
    font-size: 0.95rem;
    color: var(--neutral-700);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list .feature-icon {
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* Service Sidebar CTA */
.service-sidebar-cta {
    background: linear-gradient(135deg, var(--neutral-50), white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--neutral-200);
}

.service-sidebar-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--service-color, var(--primary-600)) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-sidebar-cta-icon i {
    font-size: 1.5rem;
    color: var(--service-color, var(--primary-600));
}

.service-sidebar-cta h5 {
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.service-sidebar-cta p {
    color: var(--neutral-500);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

/* ========================================
   Related Services Section
   ======================================== */
.related-services-section {
    padding: 5rem 0;
    background: var(--neutral-50);
}

.related-services-section h2 {
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

/* ========================================
   Services Page Responsive
   ======================================== */
@media (max-width: 992px) {
    .services-hero {
        padding: 6rem 0 3rem;
    }

    .services-hero-title {
        font-size: 2.25rem;
    }

    .service-detail-hero {
        padding: 6rem 0 3rem;
    }

    .service-detail-hero-title {
        font-size: 2rem;
    }

    .service-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 5rem 0 2.5rem;
    }

    .services-hero-title {
        font-size: 1.75rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-detail-hero-title {
        font-size: 1.75rem;
    }

    .service-detail-hero-desc {
        font-size: 1rem;
    }

    .services-cta-inner {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .services-cta-title {
        font-size: 1.5rem;
    }

    .service-card-v2 {
        padding: 1.5rem;
    }

    .service-card-v2-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .service-card-v2-icon i {
        font-size: 1.25rem;
    }
}

/* ========================================
   Career Page - Hero
   ======================================== */
.career-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    overflow: hidden;
    margin-top: 76px;
}

.career-hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.06"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.career-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.career-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Job Card
   ======================================== */
.job-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--neutral-200);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-300);
}

.job-card-body {
    padding: 1.75rem;
    flex: 1;
}

.job-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
}

.job-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-weight: 500;
}

.job-badge-dept {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.job-badge-type {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.job-badge-location {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.job-card-desc {
    color: var(--neutral-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.job-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-card-footer {
    padding: 1rem 1.75rem;
    background: var(--neutral-50);
    border-top: 1px solid var(--neutral-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================================
   Job Detail List
   ======================================== */
.job-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--neutral-700);
}

.job-detail-list li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ========================================
   Career Perks
   ======================================== */
.perk-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(16, 133, 199, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.perk-icon i {
    font-size: 1.5rem;
    color: var(--primary-600);
}

/* ========================================
   Career Responsive
   ======================================== */
@media (max-width: 992px) {
    .career-hero {
        padding: 6rem 0 3rem;
    }
    .career-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .career-hero-title {
        font-size: 1.75rem;
    }
    .career-hero-subtitle {
        font-size: 1rem;
    }
    .job-card-body {
        padding: 1.25rem;
    }
    .job-card-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
