* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: clamp(14px, 2vw, 18px);
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
    scroll-behavior: smooth;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    animation: loaderPulse 2s ease-in-out infinite;
}

.loader-logo {
    margin-bottom: 1.5rem;
    animation: loaderFloat 3s ease-in-out infinite;
}

.loader-logo svg {
    filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.5));
}

.loader-hex {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: loaderDraw 2s ease-in-out infinite;
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff6600, #ff8533, #ffaa00);
    border-radius: 4px;
    animation: loaderProgress 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
}

.loader-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes loaderDraw {
    0% {
        stroke-dashoffset: 400;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -400;
    }
}

@keyframes loaderFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes loaderPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes loaderProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
img {
    content-visibility: auto;
}

img.lazy-loaded {
    animation: fadeIn 0.3s ease-out;
}

section, .hero, .page-header {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

section.section-visible {
    content-visibility: visible;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* GPU acceleration for animated elements */
.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-rotate,
.product-card, .service-card, .feature-card, .value-card, .stat-card {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

a, button, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
}

:root {
    --anthracite: #2d2d2d;
    --anthracite-light: #3a3a3a;
    --anthracite-dark: #1a1a1a;
    --orange: #ff6600;
    --orange-light: #ff8533;
    --orange-dark: #cc5200;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --gray: #999999;
    --gray-dark: #666666;
    --gradient-primary: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Modern Elegant Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-subheading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    /* Responsive spacing */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 2vw, 1rem);
    --space-md: clamp(1rem, 3vw, 1.5rem);
    --space-lg: clamp(1.5rem, 4vw, 2.5rem);
    --space-xl: clamp(2rem, 5vw, 4rem);
    --space-2xl: clamp(3rem, 8vw, 6rem);
    /* Container width */
    --container-width: min(92%, 1400px);
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--gray-light);
    background-color: var(--anthracite-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-rotate {
    opacity: 0;
    transform: perspective(1000px) rotateX(30deg) translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-rotate.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.container {
    width: var(--container-width);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== NAVIGATION - CLEAN MODERN ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

.navbar::before {
    display: none;
}

.nav-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.5), transparent);
    pointer-events: none;
}

.nav-particles {
    display: none;
}

.navbar.scrolled {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    position: relative;
    z-index: 2;
}

/* Logo Redesign */
.logo {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo-icon {
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
    animation: logoIconPulse 3s ease-in-out infinite;
}

@keyframes logoIconPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.8)); }
}

.logo-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.4));
    transition: all 0.4s ease;
}

.logo:hover .logo-icon svg {
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.6));
    transform: scale(1.05);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 102, 0, 0.8),
        0 0 40px rgba(255, 102, 0, 0.5),
        1px 1px 0 #ffaa00,
        2px 2px 0 #ff8800,
        3px 3px 0 #ff6600,
        4px 4px 0 #cc5500,
        5px 5px 0 #994400,
        6px 6px 12px rgba(0, 0, 0, 0.8);
}

.logo-accent {
    color: var(--orange);
    text-shadow: 
        0 0 15px rgba(255, 102, 0, 1),
        0 0 30px rgba(255, 102, 0, 0.8),
        1px 1px 0 #ffcc00,
        2px 2px 0 #ff9900,
        3px 3px 0 #ff6600,
        4px 4px 0 #cc4400,
        5px 5px 10px rgba(0, 0, 0, 0.7);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo-tagline {
    font-family: var(--font-subheading);
    font-size: 0.6rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.8;
}

.logo:hover {
    transform: scale(1.02);
}

.logo:hover .logo-tagline {
    color: var(--orange);
}

/* Nav Menu Redesign */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
}

.nav-icon {
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.nav-text {
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ff6600;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 102, 0, 0.1);
}

.nav-link:hover .nav-icon {
    opacity: 1;
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link.active {
    color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
}

.nav-link.active .nav-icon {
    opacity: 1;
}

.nav-link.active::before {
    width: 60%;
}

/* CTA Button in Nav */
.nav-link-cta {
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
    color: white !important;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-link-cta .nav-icon {
    opacity: 1;
}

.nav-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-svg svg {
    stroke: white;
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, #ff7722 0%, #ff9944 100%);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    transform: translateY(-2px);
}

.nav-link-cta::before {
    display: none;
}

/* Dropdown Menu - WOW Redesign */
.nav-dropdown {
    position: relative;
}

/* Desktop dropdown arrow */
.dropdown-toggle::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    margin-left: 0.5rem;
    color: #ff6600;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover > .dropdown-toggle::after,
.nav-dropdown.active > .dropdown-toggle::after {
    content: '−';
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    list-style: none;
    padding: 1rem 0;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 102, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.2);
    overflow: visible;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 102, 0, 0.3);
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

/* Show dropdown on hover OR when active class is added */
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown.active > .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--gray-light);
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.dropdown-icon {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    filter: grayscale(70%);
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.15) 0%, transparent 100%);
    color: var(--white);
    padding-left: 2rem;
}

.dropdown-link:hover .dropdown-icon {
    filter: grayscale(0%);
    transform: scale(1.2);
}

.dropdown-link:hover::before {
    transform: scaleY(1);
}

/* Submenu - Accordion Style */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-link::after {
    content: '+';
    font-size: 1rem;
    font-weight: 300;
    color: #ff6600;
    transition: all 0.3s ease;
}

.dropdown-submenu:hover > .dropdown-link::after,
.dropdown-submenu.active > .dropdown-link::after {
    content: '−';
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #1a1a1a;
    list-style: none;
    padding: 1rem 0;
    min-width: 320px;
    border-radius: 12px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 102, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.3);
    margin-left: 5px;
    z-index: 1000;
}

.submenu::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -8px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid rgba(255, 102, 0, 0.4);
}

.submenu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #ff6600, #ff8833, #ff6600);
    border-radius: 3px 0 0 3px;
}

/* Show submenu on hover OR when active class is added */
.dropdown-submenu:hover > .submenu,
.dropdown-submenu.active > .submenu {
    opacity: 1;
    visibility: visible;
}

.submenu-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    background: transparent;
}

.submenu-link:hover {
    background: rgba(255, 102, 0, 0.15);
    color: #ff6600;
    padding-left: 2rem;
}

.submenu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.submenu-link:hover {
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.1) 0%, transparent 100%);
    color: var(--orange);
    padding-left: 2rem;
}

.submenu-link:hover::before {
    width: 15px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
    padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-lg);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 133, 51, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    padding: var(--space-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    letter-spacing: clamp(1px, 0.4vw, 3px);
    text-transform: uppercase;
    text-shadow: 
        /* Intense glow layers */
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 102, 0, 1),
        0 0 40px rgba(255, 102, 0, 1),
        0 0 60px rgba(255, 102, 0, 0.9),
        0 0 80px rgba(255, 102, 0, 0.7),
        0 0 100px rgba(255, 102, 0, 0.5),
        /* Deep 3D extrusion */
        1px 1px 0 #ffcc00,
        2px 2px 0 #ffaa00,
        3px 3px 0 #ff8800,
        4px 4px 0 #ff6600,
        5px 5px 0 #ee5500,
        6px 6px 0 #dd4400,
        7px 7px 0 #cc3300,
        8px 8px 0 #aa2200,
        9px 9px 0 #881100,
        10px 10px 0 #660000,
        12px 12px 30px rgba(0, 0, 0, 0.9);
    transform: perspective(800px) rotateX(10deg) translateZ(30px);
    transform-style: preserve-3d;
    animation: float3D 4s ease-in-out infinite;
}

@keyframes float3D {
    0%, 100% { transform: perspective(800px) rotateX(10deg) translateZ(30px) translateY(0); }
    50% { transform: perspective(800px) rotateX(8deg) translateZ(40px) translateY(-10px); }
}

.highlight {
    color: #ff6600;
    position: relative;
    display: inline-block;
    text-shadow: 
        /* Subtle glow - not too strong */
        0 0 3px rgba(255, 102, 0, 0.4),
        0 0 8px rgba(255, 102, 0, 0.2),
        /* 3D extrusion - orange to dark */
        1px 1px 0 #ff8833,
        2px 2px 0 #ee6600,
        3px 3px 0 #dd5500,
        4px 4px 0 #cc4400,
        5px 5px 0 #bb3300,
        6px 6px 0 #aa2200,
        7px 7px 0 #881100,
        8px 8px 0 #660000,
        9px 9px 0 #440000,
        10px 10px 20px rgba(0, 0, 0, 0.7);
    -webkit-text-fill-color: #ff6600;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ffaa00, #ff6600);
    border-radius: 2px;
    box-shadow: 
        0 2px 0 #cc5200,
        0 4px 0 #993d00,
        0 4px 10px rgba(255, 102, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--gray-light);
    margin-bottom: var(--space-lg);
    font-weight: 400;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 var(--space-sm);
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    background: var(--gradient-primary);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: clamp(150px, 25vw, 300px);
    height: clamp(150px, 25vw, 300px);
    background: var(--gradient-primary);
    bottom: 10%;
    right: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: clamp(100px, 15vw, 200px);
    height: clamp(100px, 15vw, 200px);
    background: var(--gradient-primary);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 3D BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(180deg, #ff9544 0%, #ff7722 25%, #ff6600 50%, #e65c00 75%, #cc5200 100%);
    color: var(--white);
    box-shadow: 
        0 6px 0 #8a3a00,
        0 8px 0 #6b2d00,
        0 10px 0 #4a1f00,
        0 12px 25px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(3px);
    box-shadow: 
        0 3px 0 #8a3a00,
        0 4px 0 #6b2d00,
        0 5px 0 #4a1f00,
        0 6px 15px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.25);
}

.btn-primary:active {
    transform: translateY(6px);
    box-shadow: 
        0 1px 0 #8a3a00,
        0 2px 0 #6b2d00,
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(180deg, #4a4a4a 0%, #3d3d3d 25%, #333333 50%, #2a2a2a 75%, #222222 100%);
    color: #ffffff;
    border: 2px solid var(--orange);
    box-shadow: 
        0 6px 0 #1a1a1a,
        0 8px 0 #111111,
        0 10px 0 #080808,
        0 12px 25px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(255, 102, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 1),
        0 0 20px rgba(255, 102, 0, 0.8),
        0 0 30px rgba(255, 102, 0, 0.6),
        1px 1px 0 #cc5500,
        2px 2px 0 #993300,
        3px 3px 5px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
}

.btn-secondary:hover {
    background: linear-gradient(180deg, #555555 0%, #444444 25%, #3a3a3a 50%, #333333 75%, #2a2a2a 100%);
    border-color: var(--orange-light);
    transform: translateY(3px);
    box-shadow: 
        0 3px 0 #1a1a1a,
        0 4px 0 #111111,
        0 5px 0 #080808,
        0 6px 15px rgba(0, 0, 0, 0.4),
        0 0 35px rgba(255, 102, 0, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.25);
    text-shadow: 
        0 0 15px rgba(255, 102, 0, 1),
        0 0 30px rgba(255, 102, 0, 0.9),
        0 0 45px rgba(255, 102, 0, 0.7),
        1px 1px 0 #cc5500,
        2px 2px 0 #993300,
        3px 3px 5px rgba(0, 0, 0, 0.5);
}

.btn-secondary:active {
    transform: translateY(6px);
    box-shadow: 
        0 1px 0 #1a1a1a,
        0 2px 0 #111111,
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 102, 0, 0.4),
        inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: linear-gradient(180deg, rgba(60, 60, 60, 0.9) 0%, rgba(40, 40, 40, 0.9) 50%, rgba(30, 30, 30, 0.9) 100%);
    color: #ffffff;
    border: 2px solid var(--orange);
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    margin-top: var(--space-sm);
    box-shadow: 
        0 5px 0 rgba(100, 50, 0, 0.8),
        0 7px 0 rgba(70, 35, 0, 0.6),
        0 9px 20px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 102, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 1),
        0 0 20px rgba(255, 102, 0, 0.7),
        1px 1px 0 #cc5500,
        2px 2px 0 #993300,
        3px 3px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
}

.btn-outline:hover {
    border-color: var(--orange-light);
    transform: translateY(2px);
    box-shadow: 
        0 3px 0 rgba(100, 50, 0, 0.8),
        0 4px 0 rgba(70, 35, 0, 0.6),
        0 5px 12px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(255, 102, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 
        0 0 15px rgba(255, 102, 0, 1),
        0 0 30px rgba(255, 102, 0, 0.8),
        1px 1px 0 #cc5500,
        2px 2px 0 #993300,
        3px 3px 4px rgba(0, 0, 0, 0.5);
}

.btn-outline:active {
    transform: translateY(5px);
    box-shadow: 
        0 1px 0 rgba(100, 50, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.3),
        0 0 35px rgba(255, 102, 0, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 1.4rem 4rem;
    font-size: 1.1rem;
    border-radius: 16px;
    box-shadow: 
        0 8px 0 #8a3a00,
        0 11px 0 #6b2d00,
        0 14px 0 #4a1f00,
        0 18px 35px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
}

.btn-large:hover {
    transform: translateY(4px);
    box-shadow: 
        0 4px 0 #8a3a00,
        0 6px 0 #6b2d00,
        0 7px 0 #4a1f00,
        0 10px 20px rgba(0, 0, 0, 0.4);
}

.btn-large:active {
    transform: translateY(8px);
    box-shadow: 
        0 1px 0 #8a3a00,
        0 2px 0 #6b2d00,
        0 3px 10px rgba(0, 0, 0, 0.3);
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-dark {
    background: var(--anthracite);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: min(90%, 700px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 var(--space-sm);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 10vw, 80px);
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    text-transform: uppercase;
    text-shadow: 
        /* Glow layers */
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 102, 0, 1),
        0 0 40px rgba(255, 102, 0, 1),
        0 0 60px rgba(255, 102, 0, 0.9),
        0 0 80px rgba(255, 102, 0, 0.7),
        0 0 100px rgba(255, 102, 0, 0.5),
        0 0 140px rgba(255, 102, 0, 0.3),
        /* 3D depth layers */
        1px 1px 0 #ffaa00,
        2px 2px 0 #ff8800,
        3px 3px 0 #ff6600,
        4px 4px 0 #ee5500,
        5px 5px 0 #dd4400,
        6px 6px 0 #cc3300,
        7px 7px 0 #aa2200,
        8px 8px 0 #881100,
        9px 9px 0 #660000,
        10px 10px 0 #440000,
        12px 12px 25px rgba(0, 0, 0, 0.9);
    transform: perspective(800px) rotateX(8deg);
    transform-style: preserve-3d;
}

.section-title .highlight {
    animation: pulse 2s ease-in-out infinite;
}

.section-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: var(--gray-light);
    font-weight: 400;
    letter-spacing: 1px;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-lg);
    justify-items: center;
    padding: 0 var(--space-sm);
}

.feature-card {
    background: linear-gradient(145deg, rgba(60, 60, 60, 0.98) 0%, rgba(35, 35, 35, 0.98) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: var(--space-lg) var(--space-md);
    border-radius: clamp(16px, 3vw, 20px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 102, 0, 0.3);
    position: relative;
    z-index: 10;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    box-shadow: 
        0 12px 0 rgba(0, 0, 0, 0.4),
        0 24px 0 rgba(0, 0, 0, 0.2),
        0 36px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 102, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -3px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-15px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(0px) scale(1.02);
    background: linear-gradient(145deg, rgba(70, 70, 70, 0.98) 0%, rgba(45, 45, 45, 0.98) 100%);
    border-color: var(--orange);
    box-shadow: 
        0 3px 0 rgba(0, 0, 0, 0.5),
        0 6px 0 rgba(0, 0, 0, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 102, 0, 0.4),
        0 0 80px rgba(255, 102, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(145deg, #ff9944 0%, #ff7722 30%, #ff6600 50%, #dd5500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 6px 0 #994400,
        0 12px 0 #663300,
        0 18px 0 #331a00,
        0 22px 40px rgba(255, 102, 0, 0.6),
        0 0 50px rgba(255, 102, 0, 0.4),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
}

.feature-card:hover .feature-icon {
    transform: translateY(0px) scale(1.05);
    box-shadow: 
        0 2px 0 #994400,
        0 4px 0 #663300,
        0 6px 15px rgba(255, 102, 0, 0.5),
        0 0 30px rgba(255, 102, 0, 0.5),
        inset 0 3px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 10px rgba(0, 0, 0, 0.4);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.5);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.6;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 15px rgba(255, 102, 0, 1),
        0 0 30px rgba(255, 102, 0, 0.8),
        0 0 45px rgba(255, 102, 0, 0.6),
        1px 1px 0 #ff8800,
        2px 2px 0 #ee6600,
        3px 3px 0 #cc5500,
        4px 4px 0 #aa4400,
        5px 5px 0 #883300,
        6px 6px 12px rgba(0, 0, 0, 0.8);
}

.feature-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 3;
}

/* ===== PRODUCTS - 3D STYLE ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-xl);
    padding: 0;
}

.product-card {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 102, 0, 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.4),
        0 15px 0 rgba(0, 0, 0, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 102, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffaa00, #ff6600);
    z-index: 10;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.4),
        0 8px 0 rgba(0, 0, 0, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 102, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #111;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(180deg, #ff8833 0%, #ff6600 50%, #dd5500 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 
        0 3px 0 #aa4400,
        0 5px 0 #773300,
        0 8px 15px rgba(255, 102, 0, 0.5);
    z-index: 2;
    transform: translateY(-3px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-badge {
    transform: translateY(-1px);
    box-shadow: 
        0 2px 0 #aa4400,
        0 3px 0 #773300,
        0 5px 10px rgba(255, 102, 0, 0.4);
}

.product-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 0.5),
        1px 1px 0 #ff8800,
        2px 2px 0 #cc5500,
        3px 3px 6px rgba(0, 0, 0, 0.5);
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-features li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    padding-left: 24px;
    position: relative;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
}

.product-features li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: white;
    font-weight: bold;
}

.product-card .btn-outline {
    margin-top: auto;
    align-self: flex-start;
    background: linear-gradient(180deg, rgba(50, 50, 50, 0.8) 0%, rgba(30, 30, 30, 0.8) 100%);
    border: 2px solid #ff6600;
    color: #ff6600;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.4),
        0 6px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.product-card .btn-outline:hover {
    background: linear-gradient(180deg, #ff8833 0%, #ff6600 100%);
    color: white;
    border-color: #ff8833;
    transform: translateY(-2px);
    box-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(255, 102, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== SERVICES - 3D STYLE ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: 0;
}

.service-card {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 102, 0, 0.25);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.4),
        0 15px 0 rgba(0, 0, 0, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 102, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffaa00, #ff6600);
}

.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.4),
        0 8px 0 rgba(0, 0, 0, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 102, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ff8833 0%, #ff6600 50%, #dd5500 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 4px 0 #aa4400,
        0 7px 0 #773300,
        0 10px 20px rgba(255, 102, 0, 0.4);
    transform: translateY(-4px);
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.service-card:hover .service-icon {
    transform: translateY(-2px);
    box-shadow: 
        0 2px 0 #aa4400,
        0 4px 0 #773300,
        0 6px 15px rgba(255, 102, 0, 0.5);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 0.5),
        1px 1px 0 #ff8800,
        2px 2px 0 #cc5500,
        3px 3px 6px rgba(0, 0, 0, 0.5);
}

.service-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(180deg, #ff8833 0%, #ff6600 100%);
    border-radius: 4px;
    box-shadow: 
        0 2px 0 #aa4400,
        0 3px 0 #773300,
        0 4px 8px rgba(255, 102, 0, 0.3);
}

.service-list li::after {
    content: '▸';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: white;
    font-weight: bold;
}

/* CTA Box - 3D STYLE */
.cta-box {
    background: linear-gradient(180deg, #ff8833 0%, #ff6600 50%, #dd5500 100%);
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 8px 0 #aa4400,
        0 14px 0 #773300,
        0 20px 40px rgba(255, 102, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    transition: all 0.4s ease;
}

.cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 4px 0 #aa4400,
        0 7px 0 #773300,
        0 12px 30px rgba(255, 102, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.cta-box .btn-primary {
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
    color: #ff6600;
    border: none;
    box-shadow: 
        0 4px 0 #cccccc,
        0 6px 0 #aaaaaa,
        0 8px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
    font-weight: 700;
}

.cta-box .btn-primary:hover {
    background: linear-gradient(180deg, #ffffff 0%, #fff5ee 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 2px 0 #cccccc,
        0 4px 0 #aaaaaa,
        0 5px 10px rgba(0, 0, 0, 0.25);
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        2px 2px 0 rgba(150, 50, 0, 1),
        4px 4px 0 rgba(100, 30, 0, 1),
        6px 6px 10px rgba(0, 0, 0, 0.5);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>');
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.5),
        3px 3px 0 rgba(200, 60, 0, 1),
        6px 6px 0 rgba(150, 40, 0, 1),
        9px 9px 0 rgba(100, 30, 0, 1),
        12px 12px 25px rgba(0, 0, 0, 0.8);
    transform: perspective(600px) rotateX(8deg);
    transform-style: preserve-3d;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-section .btn-large {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 25%, #eeeeee 50%, #e5e5e5 75%, #dddddd 100%);
    color: var(--orange);
    font-weight: 700;
    box-shadow: 
        0 6px 0 #bbbbbb,
        0 8px 0 #999999,
        0 10px 0 #777777,
        0 12px 25px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 0.8),
        0 0 20px rgba(255, 102, 0, 0.5),
        1px 1px 0 #cc5500,
        2px 2px 0 #993300,
        3px 3px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
}

.cta-section .btn-large:hover {
    transform: translateY(3px);
    box-shadow: 
        0 3px 0 #bbbbbb,
        0 4px 0 #999999,
        0 5px 0 #777777,
        0 6px 15px rgba(0, 0, 0, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15);
    text-shadow: 
        0 0 15px rgba(255, 102, 0, 1),
        0 0 30px rgba(255, 102, 0, 0.7),
        1px 1px 0 #cc5500,
        2px 2px 0 #993300,
        3px 3px 4px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-large:active {
    transform: translateY(6px);
    box-shadow: 
        0 1px 0 #bbbbbb,
        0 2px 0 #999999,
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER - 3D MODERN STYLE ===== */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, transparent, var(--orange), transparent) 1;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
    animation: footerLogoPulse 3s ease-in-out infinite;
}

@keyframes footerLogoPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.8)); }
}

.footer-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 102, 0, 0.8),
        0 0 40px rgba(255, 102, 0, 0.5),
        1px 1px 0 #ffaa00,
        2px 2px 0 #ff8800,
        3px 3px 0 #ff6600,
        4px 4px 0 #cc5500,
        5px 5px 0 #994400,
        6px 6px 12px rgba(0, 0, 0, 0.8);
}

.footer-title-accent {
    color: var(--orange);
    text-shadow: 
        0 0 15px rgba(255, 102, 0, 1),
        0 0 30px rgba(255, 102, 0, 0.8),
        1px 1px 0 #ffcc00,
        2px 2px 0 #ff9900,
        3px 3px 0 #ff6600,
        4px 4px 0 #cc4400,
        5px 5px 10px rgba(0, 0, 0, 0.7);
}

.footer-text {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #333 0%, #222 100%);
    border-radius: 12px;
    color: var(--gray-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 102, 0, 0.2);
    box-shadow: 
        0 4px 0 #111,
        0 6px 0 #000,
        0 8px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.social-link:hover {
    color: var(--orange);
    background: linear-gradient(145deg, #444 0%, #333 100%);
    border-color: var(--orange);
    transform: translateY(0);
    box-shadow: 
        0 1px 0 #111,
        0 2px 0 #000,
        0 4px 10px rgba(255, 102, 0, 0.3),
        0 0 20px rgba(255, 102, 0, 0.2);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 0.6),
        0 0 20px rgba(255, 102, 0, 0.3),
        1px 1px 0 #cc5500,
        2px 2px 0 #994400,
        3px 3px 8px rgba(0, 0, 0, 0.6);
}

.footer-heading-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.5));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    padding: 0.4rem 0;
}

.footer-links a .link-arrow {
    color: var(--orange);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: var(--space-xs);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.footer-links a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--orange) 0%, #cc5500 100%);
    border-radius: 10px;
    color: white;
    flex-shrink: 0;
    box-shadow: 
        0 3px 0 #994400,
        0 5px 0 #663300,
        0 6px 12px rgba(255, 102, 0, 0.4);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: translateY(0);
    box-shadow: 
        0 1px 0 #994400,
        0 2px 5px rgba(255, 102, 0, 0.3);
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-contact a:hover {
    color: var(--orange);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

/* Footer Partners - 3D Style */
.footer-partners {
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-lg);
    border-top: 1px solid rgba(255, 102, 0, 0.15);
    border-bottom: 1px solid rgba(255, 102, 0, 0.15);
}

.footer-partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-partners-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}

.footer-partners-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 0.5),
        1px 1px 0 #994400,
        2px 2px 5px rgba(0, 0, 0, 0.5);
}

.footer-partners-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.footer-partners-links a {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.15);
    box-shadow: 
        0 3px 0 #111,
        0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.footer-partners-links a:hover {
    background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 100%);
    color: var(--orange);
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(0);
    box-shadow: 
        0 1px 0 #111,
        0 2px 5px rgba(255, 102, 0, 0.2);
}

/* Footer Bottom - 3D Style */
.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 102, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: var(--orange);
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
}

.footer-credit a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--anthracite);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-large);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

.modal-header h2 {
    color: var(--white);
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--orange);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(255, 102, 0, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--orange);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== FOOTER PARTNERS ===== */
.footer-partners {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partners-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-partners-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.footer-partners-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--orange);
    text-shadow: 
        0 0 8px rgba(255, 102, 0, 0.6),
        0 0 16px rgba(255, 102, 0, 0.4);
}

.footer-partners-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-partners-links a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-partners-links a:hover {
    background: rgba(255, 102, 0, 0.2);
    transform: translateY(-2px);
}

.footer-credit {
    margin-top: 0.5rem;
    color: #999;
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    /* Mobile Menu Container */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 102, 0, 0.15);
    }

    .nav-menu > li > .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem 0.5rem;
        color: #fff;
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Dropdown - reset desktop styles */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        min-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        display: none;
    }
    
    .dropdown-menu::before,
    .dropdown-menu::after {
        display: none !important;
    }

    .nav-dropdown.active > .dropdown-menu {
        display: block;
    }

    /* Dropdown items */
    .dropdown-menu > li {
        border-bottom: none;
    }

    .dropdown-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        border-left: 2px solid rgba(255, 102, 0, 0.3);
        margin-left: 0.5rem;
        background: rgba(255, 102, 0, 0.05);
    }

    .dropdown-link:hover {
        background: rgba(255, 102, 0, 0.1);
        color: #ff6600;
    }

    .dropdown-icon {
        font-size: 1rem;
    }

    /* Submenu - reset desktop styles */
    .submenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        min-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        display: none;
    }
    
    .submenu::before,
    .submenu::after {
        display: none !important;
    }

    .dropdown-submenu.active > .submenu {
        display: block;
    }

    .submenu-link {
        display: block;
        padding: 0.6rem 1rem 0.6rem 2rem;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        border-left: 2px solid rgba(255, 102, 0, 0.2);
        margin-left: 1rem;
    }

    .submenu-link:hover {
        color: #ff6600;
        background: rgba(255, 102, 0, 0.08);
    }

    /* Arrow indicators */
    .dropdown-toggle::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 300;
        color: #ff6600;
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active > .dropdown-toggle::after {
        content: '−';
    }
    
    .dropdown-submenu > .dropdown-link {
        justify-content: space-between;
    }
    
    .dropdown-submenu > .dropdown-link::after {
        content: '+';
        font-size: 1rem;
        font-weight: 300;
        color: #ff6600;
    }
    
    .dropdown-submenu.active > .dropdown-link::after {
        content: '−';
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    /* Reduce 3D effects on mobile */
    .product-card,
    .feature-card,
    .service-card {
        transform: translateY(-10px);
    }
    
    .product-card:hover,
    .feature-card:hover,
    .service-card:hover {
        transform: translateY(0) scale(1.01);
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: min(100%, 280px);
    }

    .features-grid,
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .product-card,
    .feature-card,
    .service-card {
        max-width: min(100%, 400px);
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }
    
    .logo-tagline {
        font-size: clamp(0.55rem, 2vw, 0.7rem);
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 260px;
    }

    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .modal-content {
        width: 95%;
        margin: var(--space-sm);
    }
    
    /* Smanjenje 3D senki na malim ekranima za bolju performansu */
    .hero-title,
    .section-title,
    .product-title,
    .feature-title,
    .service-title {
        text-shadow: 
            0 0 5px rgba(255, 102, 0, 0.5),
            1px 1px 0 #ff8800,
            2px 2px 0 #ee6600,
            3px 3px 0 #cc5500,
            4px 4px 8px rgba(0, 0, 0, 0.7);
    }
}

/* Extra large screens - TV */
@media (min-width: 1800px) {
    :root {
        --space-xs: 0.75rem;
        --space-sm: 1rem;
        --space-md: 1.5rem;
        --space-lg: 2.5rem;
        --space-xl: 4rem;
        --space-2xl: 6rem;
    }
    
    .container {
        max-width: 1600px;
    }
    
    .products-grid,
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 102, 0, 0.8),
            0 0 20px rgba(255, 102, 0, 0.6),
            0 0 30px rgba(255, 102, 0, 0.4),
            0 0 40px rgba(255, 102, 0, 0.2),
            2px 2px 4px rgba(0, 0, 0, 0.8),
            4px 4px 8px rgba(0, 0, 0, 0.6);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 102, 0, 1),
            0 0 30px rgba(255, 102, 0, 0.8),
            0 0 45px rgba(255, 102, 0, 0.6),
            0 0 60px rgba(255, 102, 0, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.9),
            4px 4px 8px rgba(0, 0, 0, 0.7);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 102, 0, 0.2);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== CUSTOM CHECKBOX STYLING ===== */
.checkbox-group {
    margin-bottom: 0.75rem;
}

.checkbox-group:last-of-type {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding-left: 2rem;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 102, 0, 0.4);
    border-radius: 6px;
    background: rgba(26, 26, 26, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.checkbox-label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    width: 8px;
    height: 13px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-label::before,
.checkbox-label:has(input[type="checkbox"]:checked)::before {
    background: var(--gradient-primary);
    border-color: var(--orange);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-label::after,
.checkbox-label:has(input[type="checkbox"]:checked)::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

.checkbox-label:hover::before {
    border-color: var(--orange);
    background: rgba(255, 102, 0, 0.1);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:focus-visible ~ .checkbox-label::before,
.checkbox-label:has(input[type="checkbox"]:focus-visible)::before {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.checkbox-label span {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-label a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--orange-light);
    text-decoration: underline;
}

/* ===== PAGE HEADER - 3D STYLE ===== */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 133, 51, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 102, 0, 1),
        0 0 40px rgba(255, 102, 0, 0.8),
        0 0 60px rgba(255, 102, 0, 0.6),
        1px 1px 0 #ffaa00,
        2px 2px 0 #ff8800,
        3px 3px 0 #ff6600,
        4px 4px 0 #ee5500,
        5px 5px 0 #dd4400,
        6px 6px 0 #cc3300,
        7px 7px 0 #aa2200,
        8px 8px 25px rgba(0, 0, 0, 0.9);
    transform: perspective(800px) rotateX(8deg);
    transform-style: preserve-3d;
}

.page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 1px;
}

/* ===== ABOUT CONTENT SECTION ===== */
.about-content {
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 
        0 10px 0 rgba(255, 102, 0, 0.3),
        0 15px 0 rgba(255, 102, 0, 0.2),
        0 20px 0 rgba(255, 102, 0, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 102, 0, 0.3);
}

/* ===== VALUES SECTION - 3D CARDS ===== */
.values-section {
    background: var(--anthracite);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.9) 0%, rgba(35, 35, 35, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 102, 0, 0.2);
    box-shadow: 
        0 8px 0 rgba(30, 30, 30, 1),
        0 12px 0 rgba(20, 20, 20, 1),
        0 16px 0 rgba(10, 10, 10, 1),
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: 
        0 15px 0 rgba(30, 30, 30, 1),
        0 20px 0 rgba(20, 20, 20, 1),
        0 25px 0 rgba(10, 10, 10, 1),
        0 35px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 102, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    box-shadow: 
        0 5px 0 #993300,
        0 8px 0 #662200,
        0 12px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 0 #993300,
        0 12px 0 #662200,
        0 18px 30px rgba(0, 0, 0, 0.5);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        1px 1px 0 #ff8833,
        2px 2px 0 #cc5500,
        3px 3px 5px rgba(0, 0, 0, 0.5);
}

.value-text {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== STATS SECTION - 3D STYLE ===== */
.stats-section {
    background: var(--dark);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.8) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 102, 0, 0.2);
    box-shadow: 
        0 6px 0 rgba(25, 25, 25, 1),
        0 10px 0 rgba(15, 15, 15, 1),
        0 15px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 
        0 10px 0 rgba(25, 25, 25, 1),
        0 15px 0 rgba(15, 15, 15, 1),
        0 25px 45px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 102, 0, 0.15);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 20px rgba(255, 102, 0, 0.8),
        0 0 40px rgba(255, 102, 0, 0.5),
        2px 2px 0 #cc5500,
        4px 4px 0 #993300,
        6px 6px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.stat-number.counted {
    animation: countComplete 0.5s ease;
}

@keyframes countComplete {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); text-shadow: 0 0 30px rgba(255, 102, 0, 1), 0 0 60px rgba(255, 102, 0, 0.8); }
    100% { transform: scale(1); }
}

.stat-label {
    color: var(--gray-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PROCESS SECTION - 3D TIMELINE ===== */
.process-section {
    background: var(--anthracite);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 4px;
    height: calc(100% - 40px);
    background: linear-gradient(180deg, var(--orange), rgba(255, 102, 0, 0.3));
    border-radius: 2px;
}

.step-number {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 
        0 5px 0 #993300,
        0 8px 0 #662200,
        0 12px 25px rgba(0, 0, 0, 0.4);
    text-shadow: 
        1px 1px 0 #cc5500,
        2px 2px 5px rgba(0, 0, 0, 0.5);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-shadow: 
        1px 1px 0 #ff8833,
        2px 2px 5px rgba(0, 0, 0, 0.4);
}

.step-text {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===== PRODUCT DETAIL CARDS - 3D STYLE ===== */
.products-detail {
    background: var(--dark);
}

.product-detail-card {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.9) 0%, rgba(35, 35, 35, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 102, 0, 0.2);
    box-shadow: 
        0 10px 0 rgba(30, 30, 30, 1),
        0 15px 0 rgba(20, 20, 20, 1),
        0 20px 0 rgba(10, 10, 10, 1),
        0 30px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 
        0 15px 0 rgba(30, 30, 30, 1),
        0 20px 0 rgba(20, 20, 20, 1),
        0 25px 0 rgba(10, 10, 10, 1),
        0 40px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(255, 102, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 0.5),
        1px 1px 0 #ff8833,
        2px 2px 0 #cc5500,
        3px 3px 8px rgba(0, 0, 0, 0.5);
}

.product-detail-description {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.product-detail-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.product-detail-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.product-detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

/* ===== SERVICE DETAIL CARDS ===== */
.services-detail {
    background: var(--dark);
}

.service-detail-card {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.9) 0%, rgba(35, 35, 35, 0.9) 100%);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 102, 0, 0.2);
    box-shadow: 
        0 10px 0 rgba(30, 30, 30, 1),
        0 15px 0 rgba(20, 20, 20, 1),
        0 20px 0 rgba(10, 10, 10, 1),
        0 30px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.4);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 
        0 6px 0 #993300,
        0 10px 0 #662200,
        0 15px 25px rgba(0, 0, 0, 0.4);
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        1px 1px 0 #ff8833,
        2px 2px 0 #cc5500,
        3px 3px 8px rgba(0, 0, 0, 0.5);
}

.service-detail-subtitle {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.service-detail-content h3 {
    color: var(--orange);
    font-size: 1.3rem;
    margin: 2rem 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-text {
    color: var(--gray-light);
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.service-features li {
    position: relative;
    padding-left: 2rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

/* ===== MATERIALS GRID ===== */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.material-item {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 102, 0, 0.15);
    transition: all 0.3s ease;
}

.material-item:hover {
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.material-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.material-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== PROCESS INFO (HORIZONTAL STEPS) ===== */
.process-info {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(255, 102, 0, 0.2);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step-horizontal {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 102, 0, 0.15);
    transition: all 0.3s ease;
}

.process-step-horizontal:hover {
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-number-horizontal {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 
        0 4px 0 #993300,
        0 6px 0 #662200,
        0 10px 20px rgba(0, 0, 0, 0.4);
}

.process-step-horizontal h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.process-step-horizontal p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== INFO SECTION (STIRODUR PAGE) ===== */
.info-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(255, 102, 0, 0.2);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.8) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(255, 102, 0, 0.15);
    box-shadow: 
        0 5px 0 rgba(25, 25, 25, 1),
        0 8px 0 rgba(15, 15, 15, 1),
        0 12px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 
        0 10px 0 rgba(25, 25, 25, 1),
        0 14px 0 rgba(15, 15, 15, 1),
        0 20px 40px rgba(0, 0, 0, 0.5);
}

.info-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===== ADVANTAGES SECTION (PLEKSIGLAS PAGE) ===== */
.advantages-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(255, 102, 0, 0.2);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.8) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 102, 0, 0.15);
    box-shadow: 
        0 6px 0 rgba(25, 25, 25, 1),
        0 10px 0 rgba(15, 15, 15, 1),
        0 15px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 
        0 12px 0 rgba(25, 25, 25, 1),
        0 18px 0 rgba(15, 15, 15, 1),
        0 28px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 102, 0, 0.1);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.advantage-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===== USE CASES SECTION (SAMPANJAC FONTANA) ===== */
.use-cases {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(255, 102, 0, 0.2);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.8) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 102, 0, 0.15);
    box-shadow: 
        0 6px 0 rgba(25, 25, 25, 1),
        0 10px 0 rgba(15, 15, 15, 1),
        0 15px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: 
        0 12px 0 rgba(25, 25, 25, 1),
        0 18px 0 rgba(15, 15, 15, 1),
        0 28px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 102, 0, 0.15);
}

.use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.use-case-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        1px 1px 0 #cc5500,
        2px 2px 4px rgba(0, 0, 0, 0.4);
}

.use-case-card p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== PRICING SECTION ===== */
.pricing-info {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(255, 102, 0, 0.2);
}

.pricing-text {
    color: var(--gray-light);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.9) 0%, rgba(35, 35, 35, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 102, 0, 0.25);
    box-shadow: 
        0 8px 0 rgba(25, 25, 25, 1),
        0 12px 0 rgba(15, 15, 15, 1),
        0 18px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.5);
}

.pricing-card h3 {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

.cta-box {
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.cta-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

/* ===== INTRO TEXT ===== */
.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.intro-description {
    color: var(--gray-light);
    font-size: 1.15rem;
    line-height: 1.9;
}

/* ===== CONTACT SECTION - 3D STYLE ===== */
.contact-section {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-intro {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 1.5rem 0 2.5rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 
        0 4px 0 #993300,
        0 6px 0 #662200,
        0 10px 20px rgba(0, 0, 0, 0.4);
}

.contact-item h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--orange);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--orange-light);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-cta {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.8) 0%, rgba(35, 35, 35, 0.8) 100%);
    border: 2px solid rgba(255, 102, 0, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 
        0 6px 0 rgba(25, 25, 25, 1),
        0 10px 0 rgba(15, 15, 15, 1),
        0 15px 30px rgba(0, 0, 0, 0.4);
}

.contact-cta h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.contact-cta p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.8) 0%, rgba(35, 35, 35, 0.8) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(255, 102, 0, 0.2);
    box-shadow: 
        0 10px 0 rgba(30, 30, 30, 1),
        0 15px 0 rgba(20, 20, 20, 1),
        0 20px 0 rgba(10, 10, 10, 1),
        0 30px 50px rgba(0, 0, 0, 0.5);
}

.form-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        1px 1px 0 #ff8833,
        2px 2px 0 #cc5500,
        3px 3px 8px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gray-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(255, 102, 0, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 3px 6px rgba(0, 0, 0, 0.3),
        0 2px 0 rgba(60, 60, 60, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(26, 26, 26, 1);
    box-shadow: 
        inset 0 3px 6px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 102, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1.2rem;
}

/* ===== RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 40vh;
        padding-top: 80px;
    }
    
    .product-detail-card,
    .service-detail-card {
        padding: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .values-grid,
    .stats-grid,
    .info-grid,
    .advantages-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

