/* Modern Professional Styling for Everestfridge */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Clean base styles */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

:root {
    /* Professional Industrial Color Palette */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --secondary-dark: #475569;
    --accent-color: #ef4444;
    --accent-hover: #dc2626;
    --success-color: #10b981;
    --success-dark: #059669;
    --warning-color: #f59e0b;
    --warning-dark: #d97706;
    --info-color: #06b6d4;
    --info-dark: #0891b2;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --background-dark: #1e293b;
    --background-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Professional Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-display: 'Roboto Slab', serif;
}

/* Import Professional Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;600;700;800&family=Roboto+Slab:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: var(--font-primary) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--text-primary) !important;
    background-color: #232f41 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

/* Container and Layout */
.modern-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.modern-section {
    padding: 80px 0 !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

.modern-section-sm {
    padding: 60px 0 !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

/* Professional Typography */
.modern-heading-xl {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.modern-heading-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.modern-heading-md {
    font-family: var(--font-secondary);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modern-heading-industrial {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.modern-text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modern-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Modern Animated Hero Slider with 3D Effects */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    perspective: 1200px;
    transform-style: preserve-3d;
    width: 100%;
    display: block;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    display: flex;
    align-items: center;
    transform: translateX(50px);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    left: -5%;
    top: -5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform-origin: center center;
    animation: modernZoomParallax 25s ease-in-out infinite;
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specific background images for each slide - Revolution Slider style */
.slide:nth-child(1) .slide-background {
    background-image: url('../images/ani-back/gray-bg-assos.jpg');
}

.slide:nth-child(2) .slide-background {
    background-image: url('../images/ani-back/pexels-padrinan-19670-scaled.jpg');
}

.slide:nth-child(3) .slide-background {
    background-image: url('../images/ani-back/gray-bg-assos.jpg');
}

.slide:nth-child(4) .slide-background {
    background-image: url('../images/ani-back/pexels-padrinan-19670-scaled.jpg');
}

/* Active slide gets the zoom animation */
.slide.active .slide-background {
    animation: revolutionZoom 20s linear infinite;
}

/* Non-active slides have no animation */
.slide:not(.active) .slide-background {
    animation: none;
    transform: scale(1);
}

/* Performance optimizations */
.slide-background {
    will-change: transform, filter;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
}

/* Slide info box removed */

/* Slide icon, stats and related elements removed */

.slide-features {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.feature-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.feature-badge:hover::before {
    left: 100%;
}

.slide.active .feature-badge {
    opacity: 1;
    transform: translateY(0) scale(1) rotateZ(0deg);
}

.slide-btn-corporate {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.slide-btn-corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.slide-btn-corporate:hover::before {
    left: 100%;
}

.slide-btn-corporate:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-3px);
}

/* Modern Enhanced Zoom and Parallax Animation */
@keyframes modernZoomParallax {
    0% {
        transform: scale(1) rotateZ(0deg);
        filter: brightness(0.8) contrast(1.1) saturate(1.2);
    }
    25% {
        transform: scale(1.05) rotateZ(0.5deg);
        filter: brightness(0.85) contrast(1.15) saturate(1.25);
    }
    50% {
        transform: scale(1.08) rotateZ(0deg);
        filter: brightness(0.9) contrast(1.2) saturate(1.3);
    }
    75% {
        transform: scale(1.05) rotateZ(-0.5deg);
        filter: brightness(0.85) contrast(1.15) saturate(1.25);
    }
    100% {
        transform: scale(1) rotateZ(0deg);
        filter: brightness(0.8) contrast(1.1) saturate(1.2);
    }
}

/* 3D Slide Transition Animations */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%) rotateY(45deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotateY(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    0% {
        transform: translateX(0) rotateY(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%) rotateY(-45deg) scale(0.8);
        opacity: 0;
    }
}

/* Floating Animation for Content */
@keyframes slideContentFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-8px) rotateX(1deg);
    }
}

/* Info box animations removed */

/* Title shimmer animation removed for text clarity */

/* Dot Pulse Animation */
@keyframes dotPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Progressive Reveal Animations */
@keyframes textReveal {
    0% {
        transform: translateY(30px) rotateX(5deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes imageReveal {
    0% {
        transform: translateY(40px) scale(0.9) rotateY(5deg);
        opacity: 0;
        filter: blur(10px) drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    }
    100% {
        transform: translateY(0) scale(1) rotateY(0deg);
        opacity: 1;
        filter: blur(0px) drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    }
}

@keyframes badgeReveal {
    0% {
        transform: translateY(20px) scale(0.8) rotateZ(-5deg);
        opacity: 0;
    }
    60% {
        transform: translateY(-5px) scale(1.05) rotateZ(2deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1) rotateZ(0deg);
        opacity: 1;
    }
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cupboard-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cupboard-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0) scale(1);
    opacity: 1;
}

.slide.active .cupboard-image img {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.slide:hover .cupboard-image img {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.slide-text {
    flex: 1;
    color: white !important;
    text-align: left;
    z-index: 3;
    position: relative;
}

.slide-text > * {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Deactivate complex animations for better visibility */
.slide.active .slide-text h2,
.slide.active .slide-text p,
.slide.active .slide-features,
.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.slide-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-shadow: none;
}

.slide-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

/* Modern Slider Controls - Vertical on right side */
.slider-controls {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    width: auto;
}

.slider-prev,
.slider-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.slider-prev::before,
.slider-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(29, 78, 216, 0.9) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.slider-prev:hover::before,
.slider-next:hover::before {
    opacity: 1;
}

.slider-dots {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.dot.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    transform: scale(1.5);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 15px rgba(59, 130, 246, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
}

.dot.active::before {
    width: 20px;
    height: 20px;
    opacity: 1;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot:not(.active):hover::before {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 600px;
        max-height: none;
    }
    
    .slide-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        text-align: center;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .cupboard-image {
        flex: none;
        order: 1;
    }
    
    .cupboard-image img {
        max-height: 250px;
    }
    
    .slide-text {
        text-align: center;
        order: 2;
    }
    
    .slider-controls {
        position: fixed;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.75rem;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 25px;
        z-index: 1000;
    }
    
    .slider-prev,
    .slider-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .slider-dots {
        gap: 0.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Slide info box mobile styles removed */
    
    .slide-features {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Modern Buttons */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.025em;
}

.modern-btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.modern-btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.modern-btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.modern-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.modern-btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* Modern Cards */
.modern-card {
    background: var(--background-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.modern-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.modern-card-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.modern-card-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Modern Grid */
.modern-grid {
    display: grid;
    gap: 2rem;
}

.modern-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.modern-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.modern-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Feature Section */
.modern-features {
    background: var(--background-light);
}

.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Engineering Section */
.modern-engineering {
    background: var(--background-white);
}

.modern-engineering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.modern-engineering-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.modern-engineering-image img {
    width: 100%;
    height: auto;
    display: block;
}

.modern-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.modern-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modern-feature-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.modern-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

/* Testimonial Section */
.modern-testimonial {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.modern-testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.modern-testimonial-quote {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.modern-testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    font-family: serif;
    position: absolute;
    top: -1rem;
    left: -2rem;
    opacity: 0.3;
}

.modern-testimonial-author {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Product Cards */
.modern-products {
    background: var(--background-light);
}

.modern-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    color: inherit;
}

.modern-product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--background-light);
}

.modern-product-content {
    padding: 2rem;
}

.modern-product-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modern-product-category {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.modern-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modern-product-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Call to Action */
.modern-cta {
    background: linear-gradient(135deg, var(--text-primary) 0%, #374151 100%);
    color: white;
    text-align: center;
}

.modern-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-section {
        padding: 60px 0;
    }
    
    .modern-container {
        padding: 0 16px;
    }
    
    .modern-engineering-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modern-feature-list {
        grid-template-columns: 1fr;
    }
    
    .modern-grid-2,
    .modern-grid-3,
    .modern-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .modern-hero {
        min-height: 80vh;
    }
    
    .modern-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 550px;
    }
    
    .slide-content {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .slider-controls {
        right: 5px;
        padding: 0.75rem 0.5rem;
        gap: 0.75rem;
        border-radius: 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .cupboard-image img {
        max-height: 200px;
    }
    
    .slide-text h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .feature-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .slide-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .modern-card {
        padding: 1.25rem;
    }
    
    .modern-btn {
        padding: 10px 24px;
        font-size: 0.875rem;
    }
    
    .modern-btn-lg {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Industrial & Professional Components */
.industrial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--success-color);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.professional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--background-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--background-gradient);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.stat-item:nth-child(1)::before {
    background: var(--background-gradient);
}

.stat-item:nth-child(2)::before {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-dark) 100%);
}

.stat-item:nth-child(3)::before {
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--warning-dark) 100%);
}

.stat-item:nth-child(4)::before {
    background: linear-gradient(135deg, var(--info-color) 0%, var(--info-dark) 100%);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-white);
    background: var(--background-gradient);
}

.stat-item:nth-child(1) .stat-icon {
    background: var(--background-gradient);
}

.stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-dark) 100%);
}

.stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--warning-dark) 100%);
}

.stat-item:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, var(--info-color) 0%, var(--info-dark) 100%);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px !important;
    padding: 2rem !important;
    margin: 3rem 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: var(--shadow-2xl) !important;
}

.industrial-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.industrial-feature:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.industrial-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.industrial-feature-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.industrial-feature-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Professional Header Styles */
.professional-top-bar {
    background: var(--background-dark);
    color: var(--text-white);
    padding: 0.75rem 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.professional-top-bar a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.professional-top-bar a:hover {
    color: var(--primary-light);
}

.main-header {
    background: #101c31;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    top: 0 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    background: rgba(16, 28, 49, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-section img {
    height: 50px;
    transition: height 0.3s ease;
}

.main-header.scrolled .logo-section img {
    height: 40px;
}

.company-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.company-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 2px solid white;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.call-btn:hover {
    color: white;
    background: var(--primary-color);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.call-icon {
    width: 24px;
    height: 24px;
    background: white;
    color: #101c31;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.call-btn:hover .call-icon {
    background: white;
    color: var(--primary-color);
}

/* Professional Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 1.5rem;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 80px;
}

.current-language:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.current-language .flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.current-language:hover .flag-img {
    border-color: rgba(255, 255, 255, 0.4);
}

.current-language .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    opacity: 0.8;
    margin-left: auto;
}

.language-dropdown:hover .current-language .fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
}

.language-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.language-dropdown:hover .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #f8fafc;
    color: #2563eb;
    text-decoration: none;
}

.lang-option .flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #e2e8f0;
}

.lang-option .lang-name {
    flex: 1;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-dropdown {
        margin-right: 1rem;
    }
    
    .current-language {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .current-language .flag-img {
        width: 20px;
        height: 14px;
    }
    
    .language-options {
        min-width: 200px;
        right: -10px;
    }
    
    .lang-option {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    
    .lang-option .flag-img {
        width: 24px;
        height: 16px;
    }
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .company-info {
        display: none;
    }
}

/* Professional Footer Styles */
.professional-footer {
    background: var(--background-dark);
    color: var(--text-white);
    padding: 3rem 0 1.5rem 0;
    margin-top: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.contact-item:hover {
    color: var(--primary-light);
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.375rem 0;
    border-bottom: 1px solid transparent;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
    padding-left: 0.5rem;
}

.business-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    margin-top: 1rem;
}

.business-info h4 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.business-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
}

.business-detail:last-child {
    border-bottom: none;
}

.business-detail strong {
    color: var(--text-white);
    font-weight: 600;
}

.business-detail span {
    color: rgba(255, 255, 255, 0.8);
    font-family: monospace;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
}

.certification-badge i {
    color: var(--success-color);
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    .header-cta {
        gap: 0.75rem;
    }
    
    .call-btn {
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

/* Override existing styles - More comprehensive reset */
.fusion-fullwidth,
.fusion-builder-row,
.fusion-layout-column,
.fusion-column-wrapper,
.fusion-flex-container,
.fusion-row,
.fusion-flex-column {
    all: unset !important;
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Reset all fusion classes */
[class*="fusion-"],
[class*="awb-"],
[style*="--awb-"] {
    all: unset !important;
    display: block !important;
}

/* Hide old animations */
[data-animationtype],
.fusion-animated {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
}

/* Force modern layout */
#content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.post-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* WhatsApp Floating Button - Now using inline styles for better compatibility */