/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Bootstrap Container Override for Mobile */
@media (max-width: 768px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Ensure all sections are full width */
    section {
        width: 100% !important;
        overflow-x: hidden;
    }
    
    /* Remove any potential margins on rows */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Fix Bootstrap columns */
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Custom Properties */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #f8f9fa;
    --text-light: #6c757d;
    --transition: all 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* Section Styling */
.section-header {
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand .logo {
    max-height: 45px;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

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

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 25px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: url('https://images.unsplash.com/photo-1696569083014-ea89faf5c7ec?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat,
                linear-gradient(135deg, #000 0%, #333 100%);
}

@media (max-width: 768px) {
    .hero-section {
        margin-left: 0;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-section .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--secondary-color);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--secondary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Button Styles */
.btn-primary {
    background: var(--primary-color) !important;
    border: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #333 !important;
    border-color: #333 !important;
    transform: translateY(-2px);
}

/* Monochrome Button Styles */
.btn-dark {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    background: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* About Section */
.about-image img {
    border-radius: 15px;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* Services Section - 2025 Modern Design */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    #services .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.service-card-2025 {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.service-card-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card-2025:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.2);
}

.service-icon-modern-2025 {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-bg {
    position: relative;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-2025:hover .icon-bg {
    transform: rotate(-5deg) scale(1.05);
    background: linear-gradient(135deg, #333, #000);
}

.icon-bg i {
    font-size: 2rem;
    color: white;
}

.service-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: #6c757d;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.service-content-2025 h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-content-2025 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.service-card-2025:hover .feature-tag {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.hover-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #000, #333);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.service-card-2025:hover .hover-accent {
    transform: scaleY(1);
}

/* Badge styling */
.badge {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .service-card-2025 {
        padding: 2rem;
        border-radius: 20px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .icon-bg {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
    
    .icon-bg i {
        font-size: 1.75rem;
    }
    
    .service-content-2025 h4 {
        font-size: 1.25rem;
    }
    
    .service-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .services-modern-grid {
        margin-left: -15px;
        margin-right: -15px;
        gap: 1rem;
    }
    
    .service-card-2025 {
        padding: 1.5rem;
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
    }
    
    .service-icon-modern-2025 {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .service-number {
        align-self: flex-end;
    }
}

/* Equipment Section */
.equipment-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bg-white .equipment-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.equipment-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.equipment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--secondary-color);
    padding: 2rem 1rem 1rem;
    transform: translateY(70%);
    transition: var(--transition);
}

.equipment-card:hover .equipment-overlay {
    transform: translateY(0);
}

.equipment-card:hover img {
    transform: scale(1.1);
}

.equipment-overlay h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.equipment-overlay p {
    margin: 0;
    opacity: 0.9;
    color: white;
}

/* Portfolio Section */
.portfolio-filter {
    margin-bottom: 3rem;
}

.bg-white .btn-filter {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.bg-white .btn-filter:hover,
.bg-white .btn-filter.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Team Section */
.team-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bg-white .team-card {
    background: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-content {
    padding: 1.5rem;
}

.team-content h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.bg-white .team-content h5 {
    color: var(--primary-color);
}

.team-position {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.bg-white .team-position {
    color: var(--text-light);
}

.team-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.bg-white .team-description {
    color: var(--text-light);
}

.team-social a {
    color: var(--text-light);
    font-size: 1.125rem;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.team-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.bg-white .team-social a {
    color: var(--text-light);
}

.bg-white .team-social a:hover {
    color: var(--primary-color);
}

/* Testimonials */
.testimonial-item {
    padding: 2rem;
}

.bg-white .testimonial-stars {
    color: #ffc107;
}

.bg-white .testimonial-item blockquote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
}

.bg-white .testimonial-author h6 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.bg-white .testimonial-author p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact-form {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bg-white .contact-form {
    background: var(--accent-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding-left: 2rem;
}

.bg-white .contact-info {
    padding-left: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.bg-white .contact-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.contact-content h6 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.bg-white .contact-content h6 {
    color: var(--primary-color);
}

.contact-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.bg-white .contact-content p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .contact-info {
        padding-left: 0;
        margin-top: 2rem;
    }
}

/* Footer */
footer {
    background: var(--primary-color) !important;
}

.footer-brand h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    border-radius: 10px;
}

.newsletter-form .form-control::placeholder {
    color: var(--text-light);
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.portfolio-modal-image {
    border-radius: 10px;
}

/* Back to Top Button - REMOVED (replaced with floating WhatsApp)
.btn-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 1.125rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.btn-back-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-top:hover {
    background: #333;
    transform: translateY(-3px);
}
*/

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Carousel Custom Styles */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-color);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        margin: 0.25rem;
    }
    
    .service-card,
    .contact-form {
        margin-bottom: 2rem;
    }
    
    /* btn-back-top removed */
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0.5rem auto;
        width: 200px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    
    .hero-section {
        min-height: 300px;
    }
    
    .hero-video {
        display: none;
    }
}

/* ============================================ */
/* MODERN 2026 DESIGN SYSTEM */
/* ============================================ */

/* Enhanced Design Tokens */
:root {
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --gradient-accent: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================ */
/* HERO SECTION 2026 */
/* ============================================ */

.hero-section-2026 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(50, 50, 50, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(30, 30, 30, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-badge i {
    color: #ffd700;
}

.hero-title-2026 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-2026 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.stat-item-hero {
    text-align: center;
}

.stat-number-hero {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label-hero {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: #ffffff;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    color: #000;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: pulse-wa 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
    }
}

.scroll-indicator-2026 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

.scroll-indicator-2026 span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .stat-divider {
        height: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .floating-wa {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }
}

/* ============================================ */
/* CLIENTS SECTION */
/* ============================================ */

.clients-label {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================ */
/* CASE STUDIES */
/* ============================================ */

.case-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.case-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.case-content h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.case-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
}

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

.case-meta i {
    color: #000;
}

.case-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.case-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge-service {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    color: #333;
}

.btn-case-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.btn-case-detail:hover {
    gap: 0.75rem;
    color: #000;
}

/* ============================================ */
/* EQUIPMENT MODERN GRID */
/* ============================================ */

.equipment-filter {
    margin-bottom: 2rem;
}

.btn-filter-equipment {
    background: transparent;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0.625rem 1.5rem;
    margin: 0 0.375rem 0.75rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn-filter-equipment:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.btn-filter-equipment.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.equipment-grid {
    margin-top: 2rem;
}

.equipment-card-modern {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.equipment-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.equipment-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.equipment-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.equipment-card-modern:hover .equipment-img-wrapper img {
    transform: scale(1.1);
}

.equipment-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.equipment-info {
    padding: 1.25rem;
}

.equipment-info h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.equipment-brand {
    font-size: 0.825rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

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

.equipment-tags span {
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #333;
}

.equipment-item {
    transition: var(--transition);
}

.equipment-item.hidden {
    display: none;
}

/* ============================================ */
/* TIMELINE */
/* ============================================ */

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 3rem);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 3rem);
}

.timeline-marker {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #000;
    border: 4px solid #f8f9fa;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.timeline-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.timeline-item:nth-child(odd) .timeline-meta {
    justify-content: flex-end;
}

.timeline-location {
    color: #6c757d;
}

.timeline-location i {
    color: #000;
}

.timeline-type {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    color: #333;
    font-weight: 500;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.timeline-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-item:nth-child(odd) .timeline-services {
    justify-content: flex-end;
}

.timeline-services span {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    color: #333;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding: 1rem 0 1rem 3rem;
        text-align: left;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-meta {
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(odd) .timeline-services {
        justify-content: flex-start;
    }
}

/* ============================================ */
/* TESTIMONIALS MODERN */
/* ============================================ */

.testimonial-card-modern {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #ffc107;
}

.testimonial-card-modern blockquote {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: #333;
    flex: 1;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.testimonial-author h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* ============================================ */
/* BLOG CARDS */
/* ============================================ */

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.blog-date {
    font-size: 0.825rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-date i {
    color: #000;
}

.blog-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.blog-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.btn-blog-read:hover {
    gap: 0.75rem;
    color: #000;
}


/* ========================================
   Page Header (Blog & Case Studies Pages)
   ======================================== */
.page-header-2026 {
    /* padding-top: 120px;
    padding-bottom: 60px; */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.page-header-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.page-header-2026 .container {
    position: relative;
    z-index: 1;
}

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

.breadcrumb-2026 {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.breadcrumb-2026 li {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-2026 li::after {
    content: '/';
    margin-left: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.breadcrumb-2026 li:last-child::after {
    display: none;
}

.breadcrumb-2026 li.active {
    color: white;
    font-weight: 500;
}

.breadcrumb-2026 a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-2026 a:hover {
    color: white;
}

.page-title-2026 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 1 !important;
    visibility: visible !important;
}

.page-description-2026 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 1 !important;
    visibility: visible !important;
}

.page-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-item-page {
    text-align: center;
}

.stat-item-page h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item-page span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ========================================
   Blog Page - Filter & Search
   ======================================== */
.blog-filter-bar,
.case-filter-bar {
    padding: 1rem 0;
}

.blog-categories,
.case-categories {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-blog-cat,
.btn-case-cat {
    padding: 0.625rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-blog-cat:hover,
.btn-case-cat:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-blog-cat.active,
.btn-case-cat.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.blog-search {
    position: relative;
}

.blog-search input {
    padding-left: 3rem;
    border-radius: var(--radius-full);
    border: 2px solid #e5e7eb;
    height: 48px;
}

.blog-search i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.sticky-filter {
    position: sticky;
    top: 70px;
    z-index: 99;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}


/* ========================================
   Blog Featured Card
   ======================================== */
.blog-card-featured {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.blog-card-featured:hover {
    box-shadow: var(--shadow-xl);
}

.blog-featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-badge-featured {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-featured-content {
    padding: 3rem;
}

.blog-featured-content .blog-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

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

.blog-featured-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-featured-content p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.blog-tags span {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-blog-read-more:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    color: white;
}


/* ========================================
   Pagination
   ======================================== */
.blog-pagination,
.case-pagination {
    display: flex;
    justify-content: center;
}

.pagination-2026 {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.pagination-2026 li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: white;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    transition: var(--transition-smooth);
}

.pagination-2026 li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-2026 li.active a {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.pagination-2026 li.disabled a {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-2026 li.disabled a:hover {
    border-color: #e5e7eb;
    transform: none;
}


/* ========================================
   Newsletter CTA
   ======================================== */
.newsletter-form-inline .input-group {
    max-width: 500px;
}

.newsletter-form-inline .form-control {
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-form-inline .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form-inline .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    color: white;
    box-shadow: none;
}

.newsletter-form-inline .btn {
    padding: 0.875rem 2rem;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    font-weight: 600;
}


/* ========================================
   Article Detail Page
   ======================================== */
.article-detail {
    background: #fafafa;
}

.article-header-2026 {
    padding-top: 120px;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    color: white;
}

.article-category-badge {
    margin-bottom: 1.5rem;
}

.badge-cat-tech,
.badge-cat-tips,
.badge-cat-bts,
.badge-cat-tutorial,
.badge-cat-corporate {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.badge-cat-tech { background: #1a1a1a; }
.badge-cat-tips { background: #2d2d2d; }
.badge-cat-bts { background: #3a3a3a; }
.badge-cat-tutorial { background: #4a4a4a; }
.badge-cat-corporate { background: #1a1a1a; }

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

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

.article-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.article-author div strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.article-author div span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.article-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9375rem;
}

.article-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-featured-image {
    margin: -60px 0 3rem;
    position: relative;
    z-index: 10;
}

.article-featured-image img {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: var(--radius-lg);
}

.article-content-wrapper {
    padding: 3rem 0;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content .lead {
    font-size: 1.375rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 2rem;
}

.article-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.article-content h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content blockquote {
    background: #f9fafb;
    padding: 2rem;
    border-left: 4px solid #1a1a1a;
    border-radius: var(--radius-lg);
    margin: 2.5rem 0;
}

.article-content blockquote p:first-child {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.article-content blockquote p:last-child {
    margin-bottom: 0;
    font-size: 1rem;
}

.article-content blockquote h4 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content blockquote h4 i {
    color: #1a1a1a;
}

.article-content blockquote strong {
    color: var(--text-primary);
    font-weight: 700;
}

.article-quote {
    border-left: 4px solid #1a1a1a;
    padding: 2rem;
    margin: 2.5rem 0;
    background: #f9fafb;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
}

.article-quote footer {
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.article-image-inline {
    margin: 2.5rem 0;
}

.image-caption {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.75rem;
}

.article-highlight-box {
    background: #f9fafb;
    border-left: 4px solid #1a1a1a;
    padding: 1.75rem;
    margin: 2.5rem 0;
    border-radius: var(--radius-md);
}

.article-highlight-box h4 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.article-highlight-box p {
    margin-bottom: 0;
    color: #5d4037;
}

.article-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.article-tags strong {
    color: var(--text-primary);
    margin-right: 0.5rem;
}

.article-tags a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.article-tags a:hover {
    color: #2d2d2d;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.article-share strong {
    color: var(--text-primary);
    margin-right: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
}

.share-facebook { background: #1a1a1a; }
.share-twitter { background: #2d2d2d; }
.share-linkedin { background: #3a3a3a; }
.share-whatsapp { background: #4a4a4a; }


/* ========================================
   Author Bio
   ======================================== */
.author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: 3rem;
}

.author-bio img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.author-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.author-social a:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}


/* ========================================
   Related Articles
   ======================================== */
.related-articles {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.related-articles h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.blog-card-small {
    display: flex;
    gap: 1rem;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.blog-card-small:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card-small img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-card-small-content {
    padding: 1rem;
    flex-grow: 1;
}

.blog-cat-small {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.blog-card-small-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0;
}

.blog-card-small .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}


/* ========================================
   Sidebar Widgets
   ======================================== */
.article-sidebar,
.case-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
}

.sidebar-widget ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-widget ul li {
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.sidebar-widget ul li i {
    color: #1a1a1a;
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

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

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    display: block;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.toc-list a:hover {
    background: #f3f4f6;
    color: #1a1a1a;
    padding-left: 1rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
}

.popular-post-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.popular-post-item h6 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.post-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.widget-cta {
    background: #1a1a1a;
    color: white;
}

.widget-cta h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.widget-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.widget-newsletter {
    background: #f9fafb;
}

.widget-newsletter h4 {
    font-size: 1.125rem;
}

.widget-newsletter p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}


/* ========================================
   Case Study Detail Page
   ======================================== */
.case-detail-header {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    color: white;
}

.case-detail-category {
    margin-bottom: 1.5rem;
}

.case-detail-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.case-detail-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.case-key-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-box h4 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-box span {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
}

.case-featured-image {
    margin: -60px 0 0rem;
    padding-top: 30px;
    position: relative;
    z-index: 10;
}

.case-featured-image img {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: var(--radius-lg);
}

.case-detail-content {
    padding: 3rem 0;
    background: #fafafa;
}

.case-section {
    margin-bottom: 3rem;
}

.case-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.case-section h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.case-section h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.case-section h5 i {
    color: #1a1a1a;
    margin-right: 0.75rem;
}

.case-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.case-section ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.0625rem;
}

.case-section ul li:last-child {
    border-bottom: none;
}

.case-section ul li i {
    color: #1a1a1a;
    margin-right: 0.75rem;
    width: 20px;
    display: inline-block;
}

.case-section blockquote {
    background: #f9fafb;
    padding: 2rem;
    border-left: 4px solid #1a1a1a;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.case-section blockquote p:first-child {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.case-section blockquote p:last-child {
    margin-bottom: 0;
    font-size: 1rem;
}

.case-section blockquote strong {
    color: var(--text-primary);
    font-weight: 700;
}

.case-section p.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 500;
}

.case-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.challenge-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.challenge-item h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.challenge-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

.case-image-grid {
    margin: 2rem 0;
}

.equipment-grid-case {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.equipment-item-case {
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border-left: 4px solid #1a1a1a;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.equipment-item-case i {
    color: #1a1a1a;
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.equipment-item-case strong {
    color: var(--text-primary);
}

.results-metrics {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.metric-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
    border-radius: var(--radius-md);
}

.metric-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.metric-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.metric-card span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.case-testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.case-testimonial p {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.case-testimonial footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-testimonial footer img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.case-testimonial footer strong {
    display: block;
    font-size: 1.0625rem;
    color: var(--text-primary);
}

.case-testimonial footer span {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.project-info-list {
    list-style: none;
    padding: 0;
}

.project-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.project-info-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.project-info-list li span {
    color: var(--text-secondary);
    text-align: right;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.service-tag i {
    color: #1a1a1a;
    font-size: 0.75rem;
}

.case-gallery-thumb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.case-gallery-thumb a {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.case-gallery-thumb a:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.case-share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.case-stats-mini {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.case-stats-mini span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}


/* ========================================
   Responsive Design for Blog & Case Studies
   ======================================== */
@media (max-width: 768px) {
    .page-stats {
        gap: 1.5rem;
    }
    
    .blog-categories,
    .case-categories {
        justify-content: center;
        font-size: 0.875rem;
    }
    
    .btn-blog-cat,
    .btn-case-cat {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .blog-featured-image {
        min-height: 300px;
    }
    
    .blog-featured-content {
        padding: 2rem 1.5rem;
    }
    
    .blog-card-small {
        flex-direction: column;
    }
    
    .blog-card-small img {
        width: 100%;
        height: 200px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio img {
        margin: 0 auto;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .article-sidebar,
    .case-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .sidebar-widget {
        padding: 1.25rem;
    }
    
    .widget-title {
        font-size: 1.125rem;
    }
    
    .challenge-item {
        flex-direction: column;
    }
    
    .case-key-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-grid-case {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content .lead {
        font-size: 1.125rem;
    }
    
    .article-quote {
        font-size: 1.125rem;
        padding: 1.5rem;
    }
    
    .case-section h2 {
        font-size: 1.5rem;
    }
    
    .case-section h4 {
        font-size: 1.125rem;
    }
    
    .metric-card h3 {
        font-size: 2rem;
    }
    
    .case-testimonial p {
        font-size: 1.125rem;
    }
}

/* ==================================
   ADDITIONAL ENHANCEMENTS 2026
   ================================== */

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

/* Better image loading states */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

img[loading="lazy"] {
    background: linear-gradient(110deg, #f0f0f0 8%, #f8f8f8 18%, #f0f0f0 33%);
    background-size: 200% 100%;
}

/* Enhanced filter button transitions */
.btn-blog-cat,
.btn-case-cat,
.btn-filter-equipment {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-blog-cat::before,
.btn-case-cat::before,
.btn-filter-equipment::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;
}

.btn-blog-cat:active::before,
.btn-case-cat:active::before,
.btn-filter-equipment:active::before {
    width: 300px;
    height: 300px;
}

/* Smooth filter animations for cards */
[data-category] {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Column opacity/transform for smooth filtering */
.col-12[data-category],
.col-lg-4[data-category],
.col-md-6[data-category] {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Better focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced pagination hover */
.pagination-2026 .page-link:hover {
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* Newsletter form validation styles */
.newsletter-form input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.newsletter-form input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Smooth transitions for sidebar widgets */
.sidebar-widget {
    transition: transform 0.3s ease;
}

/* Better link underline animations */
.article-content a:not(.btn),
.case-section a:not(.btn) {
    background-image: linear-gradient(to right, var(--primary-color), var(--primary-color));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s ease;
}

.article-content a:not(.btn):hover,
.case-section a:not(.btn):hover {
    background-size: 100% 2px;
}

/* Enhanced blockquote borders */
.article-quote,
.case-testimonial {
    position: relative;
    transition: transform 0.3s ease;
}

.article-quote:hover,
.case-testimonial:hover {
    transform: translateX(5px);
}

/* Improved gallery thumbnail hover */
.case-gallery-thumb a {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.case-gallery-thumb a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.case-gallery-thumb a:hover {
    transform: scale(1.05);
}

.case-gallery-thumb a:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

/* Better stat box animations on case detail */
.stat-box {
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* Enhanced share button interactions */
.share-btn,
.case-share-buttons .share-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.share-btn:hover::before,
.case-share-buttons .share-btn:hover::before {
    width: 100px;
    height: 100px;
}

/* Smooth transitions for metric cards */
.metric-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
    transform: scale(1.02);
}

/* Better loading state for featured images */
.article-featured-image img,
.case-featured-image img {
    background: linear-gradient(110deg, #f0f0f0 8%, #f8f8f8 18%, #f0f0f0 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Enhanced TOC smooth scroll */
.toc-list a {
    transition: all 0.2s ease;
    position: relative;
}

.toc-list a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.toc-list a:hover::before {
    width: 10px;
}

/* Prevent layout shift on image load */
.blog-image,
.case-image,
.article-featured-image,
.case-featured-image {
    position: relative;
    background: #f8f9fa;
}

/* Better mobile touch interactions */
@media (hover: none) and (pointer: coarse) {
    .blog-card,
    .case-card,
    .blog-card-small {
        transition: transform 0.2s ease;
    }
    
    .blog-card:active,
    .case-card:active,
    .blog-card-small:active {
        transform: scale(0.98);
    }
}

/* Smooth page transitions preparation */
body {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .sidebar-widget,
    .share-btn,
    .pagination-2026 {
        display: none !important;
    }
    
    .article-content,
    .case-section {
        font-size: 12pt;
        line-height: 1.6;
    }
}
