/* ===========================================
   MODERN UI ENHANCEMENTS - Premium Design
   =========================================== */

/* Scroll Progress Indicator */
.scroll-progress-indicator {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 0% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #896C6C, #E5BEB5, #896C6C) !important;
    z-index: 10001 !important;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 10px rgba(137, 108, 108, 0.5);
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 480px) {
    .scroll-progress-indicator {
        height: 3px;
    }
}

/* Floating Action Buttons - Fixed to Right Side */
.floating-actions {
    position: fixed !important;
    right: 2rem !important;
    bottom: 2rem !important;
    top: auto !important;
    left: auto !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure no parent container affects floating actions */
body .floating-actions,
html .floating-actions,
#main-content .floating-actions,
main .floating-actions {
    position: fixed !important;
    transform: none !important;
}

.floating-actions .fab-btn {
    pointer-events: all;
    position: relative;
}

/* Animated entrance for FAB */
.floating-actions .fab-btn {
    animation: fabEntrance 0.6s ease-out backwards;
}

.floating-actions .fab-whatsapp {
    animation-delay: 0.1s;
}

.floating-actions .fab-phone {
    animation-delay: 0.2s;
}

.floating-actions .fab-top {
    animation-delay: 0.3s;
}

@keyframes fabEntrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative !important;
    overflow: hidden;
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 99999 !important;
}

.fab-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;
}

.fab-btn:hover::before {
    width: 300px;
    height: 300px;
}

.fab-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: pulse-whatsapp 3s ease-in-out infinite;
}

.fab-phone {
    background: linear-gradient(135deg, #896C6C, #7a5a5a);
}

.fab-top {
    background: linear-gradient(135deg, #E5BEB5, #d4ada3);
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.3s ease;
    visibility: visible !important;
    pointer-events: all !important;
    display: flex !important;
}

.fab-top.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
    visibility: visible !important;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(137, 108, 108, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(137, 108, 108, 0.2);
}

/* 3D Card Effects */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.02);
}

/* Modern Gradient Backgrounds */
.gradient-mesh {
    position: relative;
    overflow: hidden;
}

.gradient-mesh::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(137, 108, 108, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(229, 190, 181, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 168, 138, 0.1) 0%, transparent 50%);
    animation: gradient-rotate 20s ease infinite;
    pointer-events: none;
}

@keyframes gradient-rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

/* Particle Background Effect */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(137, 108, 108, 0.1);
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(-40px, -30px) scale(1.1);
        opacity: 0.6;
    }
}

/* Enhanced Hero Section */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(238, 230, 202, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(137, 108, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(229, 190, 181, 0.06) 0%, transparent 50%);
    animation: hero-pulse 8s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Modern Button Styles */
.btn-modern {
    position: relative;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    background: linear-gradient(135deg, #896C6C, #E5BEB5);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(137, 108, 108, 0.3);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(137, 108, 108, 0.4);
}

.btn-modern:active {
    transform: translateY(-1px);
}

/* Shimmer Effect */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EEE6CA, #F5FAE1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.page-loader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(137, 108, 108, 0.2);
    border-top-color: #896C6C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #896C6C;
    font-weight: 600;
    letter-spacing: 0.1em;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Service Cards */
.service-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(137, 108, 108, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #896C6C, #E5BEB5, #896C6C);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(137, 108, 108, 0.25);
}

/* Magnetic Hover Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes textReveal {
    to {
        transform: translateY(0);
    }
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-modern {
        min-height: 90vh;
        padding: 2rem 1rem;
    }
    
    .hero-content-enhanced {
        padding: 1.5rem;
    }
    
    .hero-title-enhanced {
        font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    }
    
    .hero-subtitle-enhanced {
        font-size: clamp(1rem, 2.5vw, 1.5rem) !important;
    }
    
    .hero-cta-enhanced {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-btn-enhanced {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .services-grid-enhanced,
    .blog-grid-enhanced,
    .gallery-grid-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-content-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title-enhanced {
        font-size: clamp(2rem, 5vw, 3rem) !important;
    }
    
    .section-subtitle-enhanced {
        font-size: clamp(1rem, 2vw, 1.125rem) !important;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .floating-actions {
        position: fixed !important;
        right: 1.5rem !important;
        bottom: 1.5rem !important;
    }
    
    .fab-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .hero-modern {
        min-height: 85vh;
        padding: 1.5rem 1rem;
    }
    
    .hero-content-enhanced {
        padding: 1rem;
    }
    
    .hero-title-enhanced {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle-enhanced {
        font-size: clamp(0.95rem, 3vw, 1.25rem) !important;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-info-enhanced {
        margin: 0.75rem 0 !important;
        padding: 1rem !important;
        gap: 0.75rem !important;
    }
    
    .hero-info-item {
        padding: 0.875rem !important;
        gap: 0.875rem !important;
    }
    
    .hero-info-icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        font-size: 1.1rem !important;
    }
    
    .hero-info-label {
        font-size: 0.8rem !important;
    }
    
    .hero-info-text {
        font-size: 0.95rem !important;
    }
    
    .hero-social-proof {
        margin: 0.75rem 0 !important;
        padding: 0.875rem 1rem !important;
        gap: 0.75rem !important;
    }
    
    .hero-social-proof-icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        font-size: 1.35rem !important;
    }
    
    .hero-social-proof-text {
        font-size: 0.95rem !important;
    }
    
    .hero-cta-enhanced {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .hero-btn-enhanced {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .banner-social {
        margin-top: 1.5rem !important;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .banner-social a {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        margin: 0;
    }
    
    .services-grid-enhanced,
    .blog-grid-enhanced,
    .gallery-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card-modern,
    .blog-card-enhanced,
    .gallery-item-enhanced {
        margin: 0;
    }
    
    .service-card-modern:hover,
    .blog-card-enhanced:hover,
    .gallery-item-enhanced:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .section-header-enhanced {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-badge-enhanced {
        padding: 0.625rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .section-title-enhanced {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        margin-bottom: 1rem;
    }
    
    .section-subtitle-enhanced {
        font-size: clamp(0.9rem, 2.5vw, 1rem) !important;
        padding: 0 1rem;
    }
    
    .contact-content-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-map-container-enhanced {
        height: 300px;
    }
    
    .contact-map-info-enhanced {
        grid-template-columns: 1fr;
        padding: 1rem;
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }
    
    .glass-card {
        border-radius: 16px;
    }
    
    .card-3d:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .particles-container {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-actions {
        position: fixed !important;
        right: 1rem !important;
        bottom: 1rem !important;
    }
    
    .fab-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .hero-modern {
        min-height: 50vh;
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .hero-content-enhanced {
        padding: 0.75rem;
    }
    
    .hero-title-enhanced {
        font-size: clamp(1.75rem, 10vw, 2.5rem) !important;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle-enhanced {
        font-size: clamp(0.875rem, 4vw, 1.125rem) !important;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .hero-info-enhanced {
        margin: 0.5rem 0 !important;
        padding: 0.75rem !important;
        gap: 0.625rem !important;
    }
    
    .hero-info-item {
        padding: 0.75rem !important;
        gap: 0.75rem !important;
    }
    
    .hero-info-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 1rem !important;
    }
    
    .hero-info-label {
        font-size: 0.75rem !important;
    }
    
    .hero-info-text {
        font-size: 0.875rem !important;
    }
    
    .hero-social-proof {
        margin: 0.5rem 0 !important;
        padding: 0.75rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.625rem !important;
    }
    
    .hero-social-proof-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 1.25rem !important;
    }
    
    .hero-social-proof-text {
        font-size: 0.875rem !important;
    }
    
    .hero-cta-enhanced {
        gap: 0.625rem;
        width: 100%;
    }
    
    .hero-btn-enhanced {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-width: auto;
    }
    
    .banner-social {
        margin-top: 1rem !important;
        gap: 0.75rem;
    }
    
    .banner-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .services-grid-enhanced,
    .blog-grid-enhanced,
    .gallery-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.75rem;
    }
    
    .service-card-enhanced,
    .blog-card-enhanced,
    .gallery-item-enhanced {
        border-radius: 16px;
    }
    
    .service-content-enhanced,
    .blog-content-enhanced {
        padding: 1.5rem;
    }
    
    .service-title-enhanced,
    .blog-title-enhanced {
        font-size: 1.25rem;
    }
    
    .service-description-enhanced,
    .blog-excerpt-enhanced {
        font-size: 0.9rem;
    }
    
    .section-header-enhanced {
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .section-badge-enhanced {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .section-title-enhanced {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle-enhanced {
        font-size: clamp(0.85rem, 3vw, 0.95rem) !important;
        padding: 0 0.75rem;
    }
    
    .section-divider-enhanced {
        width: 4rem;
        height: 3px;
    }
    
    .contact-enhanced {
        padding: 3rem 0.75rem;
    }
    
    .contact-item-enhanced {
        padding: 1.25rem;
    }
    
    .contact-icon-enhanced {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.1rem;
    }
    
    .contact-title-enhanced {
        font-size: 1rem;
    }
    
    .contact-text-enhanced {
        font-size: 0.8rem;
    }
    
    .contact-map-container-enhanced {
        height: 250px;
        border-radius: 12px;
    }
    
    .contact-map-info-enhanced {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .btn-modern {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .service-btn-enhanced {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .glass-card {
        border-radius: 12px;
    }
    
    .card-3d:hover {
        transform: translateY(-3px);
    }
    
    .scroll-progress-indicator {
        height: 3px;
    }
    
    .loader-spinner {
        width: 50px;
        height: 50px;
    }
    
    .loader-text {
        font-size: 1.25rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title-enhanced {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle-enhanced {
        font-size: 0.875rem !important;
    }
    
    .section-title-enhanced {
        font-size: 1.5rem !important;
    }
    
    .fab-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-actions {
        position: fixed !important;
        right: 0.75rem !important;
        bottom: 0.75rem !important;
    }
}

/* Enhanced Social Icons */
.banner-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.banner-social a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #896C6C;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(137, 108, 108, 0.2);
    margin: 0;
}

.banner-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(137, 108, 108, 0.3);
    background: linear-gradient(135deg, #896C6C, #E5BEB5);
    color: white;
}

.banner-social a.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.banner-social a.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.banner-social a.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Enhanced Section Transitions */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(137, 108, 108, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

section:hover::before {
    opacity: 1;
}

/* Modern Image Hover Effects */
.service-image-enhanced,
.blog-image-enhanced,
.gallery-image-enhanced {
    position: relative;
    overflow: hidden;
}

.service-image-enhanced::after,
.blog-image-enhanced::after,
.gallery-image-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(137, 108, 108, 0.1), rgba(229, 190, 181, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card-enhanced:hover .service-image-enhanced::after,
.blog-card-enhanced:hover .blog-image-enhanced::after,
.gallery-item-enhanced:hover .gallery-image-enhanced::after {
    opacity: 1;
}

/* Enhanced Price Display */
.service-price-enhanced {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(137, 108, 108, 0.1), rgba(229, 190, 181, 0.1));
    border-radius: 0.5rem;
    border: 1px solid rgba(137, 108, 108, 0.2);
}

/* Modern Badge Styles */
.section-badge-enhanced {
    position: relative;
    overflow: hidden;
}

.section-badge-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.section-badge-enhanced:hover::before {
    left: 100%;
}

/* Smooth Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(238, 230, 202, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #896C6C, #E5BEB5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7a5a5a, #d4ada3);
}

/* Selection Styling */
::selection {
    background: rgba(137, 108, 108, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(137, 108, 108, 0.3);
    color: white;
}

/* Focus Visible Styles */
*:focus-visible {
    outline: 2px solid #896C6C;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading Skeleton for Images */
.image-skeleton {
    background: linear-gradient(
        90deg,
        rgba(137, 108, 108, 0.1) 0%,
        rgba(229, 190, 181, 0.2) 50%,
        rgba(137, 108, 108, 0.1) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particles-container,
    .particle {
        display: none;
    }
}

