:root {
    --color-primary-soft: #e3f2fd;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-strong: 0 15px 50px rgba(0,0,0,0.12);
}

.page-title {
    position: relative;
    background-image: url('assets/img/blog/blog-hero-1.webp');
    background-size: cover;
    background-position: center;
    padding: 200px 0 120px;
    background-attachment: fixed;
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 1;
}

.bg-white-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ls-2 { letter-spacing: 2px; }

.hover-scale {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-strong) !important;
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong) !important;
}

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

.shadow-hover:hover {
    box-shadow: var(--shadow-strong) !important;
    transform: translateY(-5px);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-anim {
    animation: floating 4s ease-in-out infinite;
}

.group-hover-trigger .scale-icon-anim {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.group-hover-trigger:hover .scale-icon-anim {
    transform: scale(1.1) rotate(5deg);
}

.bg-circle-anim {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.transport-card:hover .bg-circle-anim {
    transform: scale(1.5);
}

.feature-item {
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background-color: #fff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-box-small {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .page-title { padding: 150px 0 80px; }
    .display-3 { font-size: 2.5rem; }
}
