
        :root {
            --primary-red: #c41e3a;
            --secondary-red: #a01627;
            --accent-red: #e53e3e;
            --light-red: #fed7d7;
            --dark-red: #822727;
            --premium-white: #fafbfc;
            --premium-black: #1a1a1a;
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
            --text-light: #718096;
            --border-subtle: #e2e8f0;
            --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.12);
            --gradient-primary: linear-gradient(135deg, #c41e3a 0%, #a01627 50%, #822727 100%);
            --gradient-accent: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
            --gradient-light: linear-gradient(135deg, #fed7d7 0%, #fbb6ce 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
				max-width: 100vw;
				            overflow-x: hidden;
			
        }

        body {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.65;
            color: var(--text-primary);
            background: var(--premium-white);
            overflow-x: hidden;
            font-size: 15px;
            font-weight: 400;
			max-width: 100vw;
        }

        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--gradient-accent);
            z-index: 10000;
            transition: width 0.1s ease;
            box-shadow: 0 2px 10px rgba(196, 30, 58, 0.3);
        }

        /* Mouse Follower */
      .mouse-follower {

}

.mouse-follower::before {

}

/* Enhanced hover states */
.mouse-follower.hover {

}

.mouse-follower.click {

}

        /* Floating Particles */
        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.7;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(196, 30, 58, 0.4);
            border-radius: 50%;
            animation: float 20s infinite linear;
            box-shadow: 0 0 10px rgba(196, 30, 58, 0.3);
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0px) rotate(0deg) scale(0);
                opacity: 0;
            }
            5% {
                opacity: 1;
                transform: scale(1);
            }
            95% {
                opacity: 1;
                transform: scale(1);
            }
            100% {
                transform: translateY(-100px) translateX(150px) rotate(360deg) scale(0);
                opacity: 0;
            }
        }

        /* Premium Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: all 0.8s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
            transform: scale(0.9);
        }

        .loader-content {
            text-align: center;
            color: white;
        }

        .loader-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: loaderPulse 2.5s infinite ease-in-out;
        }

        @keyframes loaderPulse {
            0%, 100% { 
                transform: scale(1) rotate(0deg); 
                opacity: 1; 
                filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
            }
            50% { 
                transform: scale(1.3) rotate(180deg); 
                opacity: 0.8; 
                filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
            }
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, var(--premium-black) 0%, #2a2a2a 100%);
            color: white;
            padding: 8px 0;
            font-size: 13px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            transition: all 0.3s ease;
            transform: translateY(-100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .top-bar.visible {
            transform: translateY(0);
        }

        .top-bar-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .top-bar-phone {
            display: flex;
            align-items: center;
            gap: 6px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .top-bar-phone:hover {
            color: var(--accent-red);
            border-color: var(--accent-red);
            background: rgba(228, 62, 62, 0.1);
            transform: translateY(-1px);
        }

        .top-bar-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stars {
            display: flex;
            gap: 1px;
        }

        .star {
            color: #ffd700;
            font-size: 12px;
            animation: starTwinkle 3s ease-in-out infinite;
        }

        .star:nth-child(2) { animation-delay: 0.2s; }
        .star:nth-child(3) { animation-delay: 0.4s; }
        .star:nth-child(4) { animation-delay: 0.6s; }
        .star:nth-child(5) { animation-delay: 0.8s; }

        @keyframes starTwinkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        .top-bar-cta {
            background: var(--gradient-accent);
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 12px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
        }

        .top-bar-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
            color: white;
        }

        /* Navbar positioning updates */
        .navbar-floating {
            position: fixed;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(25px);
            border-radius: 60px;
            padding: 15px 40px;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            width: auto;
            max-width: 98vw;
            min-width: 85vw;
        }

        .navbar-floating.with-topbar {
            top: 70px;
        }

        .navbar-floating.scrolled {
            top: 15px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(25px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .navbar-brand-floating {
            font-size: 1.3rem;
            font-weight: 700;
            color: white !important;
            text-decoration: none;
            margin-right: 50px;
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
            letter-spacing: -0.5px;
        }

        .navbar-floating.scrolled .navbar-brand-floating {
            color: var(--primary-red) !important;
        }

        .crown-icon {
            background: var(--gradient-accent);
            border-radius: 12px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 16px;
            color: white;
            animation: crownFloat 4s ease-in-out infinite;
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
        }

        @keyframes crownFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-4px) rotate(5deg); }
        }

        .nav-floating {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-floating .nav-item {
            margin: 0 6px;
            position: relative;
        }

        .nav-floating .nav-link {
            color: rgba(255, 255, 255, 0.95) !important;
            text-decoration: none;
            padding: 12px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
        }

        .navbar-floating.scrolled .nav-floating .nav-link {
            color: var(--text-primary) !important;
        }

        .nav-floating .nav-link:hover,
        .nav-floating .nav-link.active {
            color: var(--accent-red) !important;
            transform: translateY(-2px);
        }

        .navbar-floating.scrolled .nav-floating .nav-link:hover,
        .navbar-floating.scrolled .nav-floating .nav-link.active {
            color: var(--accent-red) !important;
        }

        /* Navigation Icon Links */
        .nav-icon-item {
            margin-left: 8px;
        }

        .nav-icon-link {
            color: rgba(255, 255, 255, 0.9) !important;
            text-decoration: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
        }

        .navbar-floating.scrolled .nav-icon-link {
            color: var(--text-secondary) !important;
            background: rgba(0, 0, 0, 0.04);
            border-color: rgba(0, 0, 0, 0.08);
        }

        .nav-icon-link:hover {
            color: white !important;
            background: var(--accent-red);
            border-color: var(--accent-red);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(228, 62, 62, 0.3);
        }

        .navbar-floating.scrolled .nav-icon-link:hover {
            color: white !important;
            background: var(--accent-red);
            border-color: var(--accent-red);
            box-shadow: 0 8px 20px rgba(228, 62, 62, 0.25);
        }

        /* WhatsApp specific styling */
        .nav-icon-link .fa-whatsapp:hover {
            animation: whatsappPulse 0.6s ease;
        }

        @keyframes whatsappPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Phone specific styling */
        .nav-icon-link .fa-phone:hover {
            animation: phoneBounce 0.6s ease;
        }

        @keyframes phoneBounce {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            75% { transform: rotate(10deg); }
        }

        /* Dropdown Menu */
        .dropdown-menu-custom {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(25px);
            border-radius: 20px;
            padding: 15px 0;
            min-width: 220px;
            margin-top: 10px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.05);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 1001;
        }

        .nav-item.dropdown:hover .dropdown-menu-custom {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item-custom {
            padding: 12px 25px;
            color: var(--text-primary);
            text-decoration: none;
            display: block;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .dropdown-item-custom:hover {
            background: var(--light-red);
            color: var(--primary-red);
            transform: translateX(5px);
        }

        .dropdown-divider-custom {
            height: 1px;
            background: var(--border-subtle);
            margin: 8px 15px;
        }

        /* Hero Section - Sophisticated Design */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 200px;
            padding-bottom: 100px;
            overflow: hidden;
            background: var(--gradient-primary);
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            filter: blur(3px) brightness(0.7);
            transform: scale(1.1);

        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0.9;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 60%, rgba(228, 62, 62, 0.4) 0%, transparent 60%),
                radial-gradient(circle at 75% 25%, rgba(196, 30, 58, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 50% 80%, rgba(160, 22, 39, 0.2) 0%, transparent 60%);
            animation: heroBackground 30s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes heroBackground {
            0%, 100% { 
                background: 
                    radial-gradient(circle at 25% 60%, rgba(228, 62, 62, 0.4) 0%, transparent 60%),
                    radial-gradient(circle at 75% 25%, rgba(196, 30, 58, 0.3) 0%, transparent 60%);
            }
            33% { 
                background: 
                    radial-gradient(circle at 70% 40%, rgba(228, 62, 62, 0.3) 0%, transparent 60%),
                    radial-gradient(circle at 30% 70%, rgba(196, 30, 58, 0.4) 0%, transparent 60%);
            }
            66% { 
                background: 
                    radial-gradient(circle at 50% 20%, rgba(228, 62, 62, 0.2) 0%, transparent 60%),
                    radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.3) 0%, transparent 60%);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 60px;
            padding: 10px 25px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 30px;
            gap: 8px;
            animation: fadeInUp 0.8s ease 0.3s both;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease 0.5s both;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .hero .lead {
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.95;
            margin-bottom: 40px;
            max-width: 650px;
            animation: fadeInUp 0.8s ease 0.7s both;
            line-height: 1.7;
        }

        .hero-cta {
            animation: fadeInUp 0.8s ease 0.9s both;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.6s both;
            perspective: 1200px;
			z-index: 10;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            transform-style: preserve-3d;	z-index: 10;
        }

        .hero-image:hover img {
            transform: rotateY(8deg) rotateX(3deg) translateZ(30px);
            box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
        }

        /* Sophisticated Section Headers */
        .section-header-sophisticated {
            text-align: center;
            margin-bottom: 0px;
            position: relative;
            padding: 0 20px;
        }

        .section-badge-sophisticated {
            display: inline-flex;
            align-items: center;
            background: var(--gradient-accent);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 25px;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.25);
            animation: float 8s ease-in-out infinite;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .section-badge-sophisticated::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 1s ease;
        }

        .section-badge-sophisticated:hover::before {
            left: 100%;
        }

        .section-title-sophisticated {
            font-size: clamp(1.4rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.3;
            position: relative;
            letter-spacing: -0.5px;
        }

        .section-title-sophisticated.gradient-text {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title-sophisticated.white-text {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle-sophisticated {
            font-size: 1.2rem;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.9;
			margin-bottom: 20px!important;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            margin: 30px auto 0;
            border-radius: 2px;
        }

        /* Enhanced Buttons */
        .btn-premium {
            background: var(--gradient-accent);
            border: none;
            color: white;
            padding: 18px 36px;
            font-weight: 700;
            font-size: 15px;
            border-radius: 60px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 13px;
        }

        .btn-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.6s ease;
        }

        .btn-premium:hover::before {
            left: 100%;
        }

        .btn-premium:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 40px rgba(196, 30, 58, 0.4);
            color: white;
        }

        .btn-outline-premium {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: white;
            padding: 16px 34px;
            font-weight: 700;
            font-size: 13px;
            border-radius: 60px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .btn-outline-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transition: width 0.4s ease;
            z-index: -1;
        }

        .btn-outline-premium:hover::before {
            width: 100%;
        }

        .btn-outline-premium:hover {
            border-color: rgba(255, 255, 255, 0.7);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
        }

        /* Premium Services Section */
        .services-section {
            padding: 140px 0;
            background: linear-gradient(135deg, #fafbfc 0%, #f7fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(228, 62, 62, 0.02) 0%, transparent 50%);
            animation: servicesBg 25s ease-in-out infinite;
        }

        @keyframes servicesBg {
            0%, 100% { 
                background: 
                    radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(228, 62, 62, 0.02) 0%, transparent 50%);
            }
            50% { 
                background: 
                    radial-gradient(circle at 30% 70%, rgba(196, 30, 58, 0.02) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(228, 62, 62, 0.03) 0%, transparent 50%);
            }
        }

       .services-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
   position: relative;
   z-index: 2;
}

.service-card-3d {
   background: white;
   border-radius: 16px;
   padding: 40px 30px;
   position: relative;
   transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
   border: 1px solid rgba(0, 0, 0, 0.08);
   overflow: hidden;
   text-align: center;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-3d::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: var(--gradient-accent);
   transform: scaleX(0);
   transition: transform 0.3s ease;
   transform-origin: left;
}

.service-card-3d:hover::before {
   transform: scaleX(1);
}

.service-card-3d:hover {
   transform: translateY(-8px);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
   border-color: rgba(196, 30, 58, 0.1);
}

.service-icon-3d {
   width: 64px;
   height: 64px;
   background: var(--gradient-accent);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 24px;
   font-size: 24px;
   color: white;
   transition: all 0.3s ease;
   box-shadow: 0 8px 24px rgba(196, 30, 58, 0.2);
}

.service-card-3d:hover .service-icon-3d {
   transform: scale(1.05);
   box-shadow: 0 12px 32px rgba(196, 30, 58, 0.3);
}

.service-title-3d {
   font-size: 1.3rem;
   font-weight: 600;
   color: var(--text-primary);
   margin-bottom: 16px;
   transition: color 0.3s ease;
   letter-spacing: -0.2px;
   line-height: 1.3;
}

.service-card-3d:hover .service-title-3d {
   color: var(--primary-red);
}

.service-description-3d {
   color: var(--text-secondary);
   line-height: 1.6;
   font-size: 14px;
   font-weight: 400;
}

        /* About Section - Sophisticated Dark Design */
        .about-section-new {
            padding: 140px 0;
            background: var(--premium-black);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .about-section-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 75%, rgba(196, 30, 58, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 75% 25%, rgba(228, 62, 62, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(160, 22, 39, 0.08) 0%, transparent 60%);
            animation: aboutBackground 35s ease-in-out infinite;
        }

        @keyframes aboutBackground {
            0%, 100% { 
                background: 
                    radial-gradient(circle at 25% 75%, rgba(196, 30, 58, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 75% 25%, rgba(228, 62, 62, 0.1) 0%, transparent 60%);
            }
            33% { 
                background: 
                    radial-gradient(circle at 70% 60%, rgba(196, 30, 58, 0.1) 0%, transparent 60%),
                    radial-gradient(circle at 30% 40%, rgba(228, 62, 62, 0.15) 0%, transparent 60%);
            }
            66% { 
                background: 
                    radial-gradient(circle at 50% 20%, rgba(196, 30, 58, 0.08) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(228, 62, 62, 0.12) 0%, transparent 60%);
            }
        }

        .about-content-wrapper {
            position: relative;
            z-index: 2;
        }

        .about-floating-text {
            position: relative;
            z-index: 2;
        }

        .about-lead-text {
            font-size: 1.4rem;
            font-weight: 500;
            line-height: 1.7;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .about-description {
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 400;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 35px;
            margin: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 35px 25px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(25px);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-item:hover {
            transform: translateY(-8px) scale(1.02);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-red);
            margin-bottom: 15px;
            display: block;
            letter-spacing: -1px;
        }

        .stat-label {
            font-size: 14px;
            font-weight: 600;
            opacity: 0.85;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .about-image-3d {
            position: relative;
            perspective: 1200px;
            margin-top: 60px;
        }

        .about-image-3d img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            transform-style: preserve-3d;
        }

        .about-image-3d:hover img {
            transform: rotateY(-8deg) rotateX(4deg) translateZ(40px);
            box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
        }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .scroll-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-animate-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .scroll-animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .scroll-animate-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .scroll-animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Photo Gallery Section */
        .photo-gallery-section {
            padding: 120px 0;
            background: white;
            position: relative;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .photo-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .photo-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .photo-card {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            border-radius: 20px;
        }

        .photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .photo-item:hover .photo-card img {
            transform: scale(1.1);
            filter: brightness(0.8);
        }

        .photo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(196, 30, 58, 0.85) 0%, rgba(160, 22, 39, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            border-radius: 20px;
        }

        .photo-item:hover .photo-overlay {
            opacity: 1;
        }

        .photo-content {
            text-align: center;
            color: white;
            padding: 30px;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .photo-item:hover .photo-content {
            transform: translateY(0);
        }

        .photo-content h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .photo-content p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .photo-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            margin: 0 auto;
        }

        .photo-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.7);
            transform: scale(1.1);
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            transform: scale(1.2);
        }

        .brands-section {
            background: white;
            padding: 120px 0;
            position: relative;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .brand-item {
            background: white;
            border-radius: 25px;
            padding: 45px;
            text-align: center;
            box-shadow: var(--shadow-subtle);
            border: 1px solid var(--border-subtle);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .brand-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-light);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .brand-item:hover::before {
            opacity: 1;
        }

        .brand-item:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
        }

        .brand-logo-img,
        .brand-name {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 18px;
            position: relative;
            z-index: 2;
            letter-spacing: -0.5px;
        }

        .brand-description {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }

        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, #fafbfc 0%, #f7fafc 100%);
            padding: 120px 0;
        }

        .faq-item {
            background: white;
            border-radius: 25px;
            margin-bottom: 25px;
            box-shadow: var(--shadow-subtle);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid var(--border-subtle);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-medium);
            transform: translateY(-3px);
        }

        .faq-question {
            padding: 32px 38px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--light-red);
            transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: -1;
        }

        .faq-question:hover::before {
            left: 0;
        }

        .faq-question:hover {
            color: var(--primary-red);
        }

        .faq-answer {
            padding: 0 38px 32px;
            color: var(--text-secondary);
            line-height: 1.8;
            display: none;
            font-weight: 400;
        }

        .faq-item.active .faq-answer {
            display: block;
            animation: slideDown 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .faq-icon {
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            color: var(--primary-red);
            font-size: 18px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Contact Section */
        .contact-section {
            background: var(--gradient-primary);
            color: white;
            position: relative;
            padding: 120px 0;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            filter: blur(2px);
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 45px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: -60%;
            left: -60%;
            width: 220%;
            height: 220%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .contact-card:hover::before {
            opacity: 1;
        }

        .contact-card:hover {
            transform: translateY(-12px) scale(1.02);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-red);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 28px;
            color: white;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 15px 40px rgba(228, 62, 62, 0.3);
        }

        .contact-card:hover .contact-icon {
            transform: rotateY(20deg) scale(1.1);
            box-shadow: 0 20px 50px rgba(228, 62, 62, 0.4);
        }

        .contact-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 18px;
            letter-spacing: -0.3px;
        }

        .contact-text {
            opacity: 0.95;
            line-height: 1.8;
            font-size: 15px;
            font-weight: 400;
        }

        /* Footer */
        .footer {
            background: var(--premium-black);
            color: white;
            padding: 120px 0 60px;
            position: relative;
        }

        .footer-brand {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            letter-spacing: -0.5px;
        }

        .footer-brand .crown-icon {
            background: var(--gradient-accent);
            border-radius: 15px;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            font-size: 20px;
        }

        .footer h5 {
            color: var(--accent-red);
            font-weight: 700;
            margin-bottom: 30px;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: block;
            padding: 10px 0;
            font-size: 14px;
            position: relative;
            font-weight: 400;
        }

        .footer a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .footer a:hover::before {
            width: 100%;
        }

        .footer a:hover {
            color: var(--accent-red);
            transform: translateX(8px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 100px;
            padding-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            font-weight: 400;
        }

     .social-links {
   display: flex;
   gap: 12px;
   margin-top: 30px;
}

.social-links {
   display: flex;
   gap: 12px;
   margin-top: 30px;
}

.social-link {
   width: 44px;
   height: 44px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
   position: relative;
   backdrop-filter: blur(10px);
}

.social-link:hover {
   background: var(--accent-red);
   border-color: var(--accent-red);
   color: white !important;
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.social-link i {
   font-size: 16px;
   line-height: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100%;
   transition: color 0.3s ease;
}

.social-link:hover i {
   color: white !important;
}

        /* Mobile Responsive */
        @media (max-width: 992px) {
            .top-bar-content {
                flex-direction: column;
                gap: 8px;
                text-align: center;
                padding: 8px 0;
            }

            .top-bar-left {
                flex-direction: row;
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .top-bar {
                padding: 6px 0;
            }

            .navbar-floating {
                max-width: 95vw;
                padding: 12px 25px;
                min-width: 300px;
            }
            
            .navbar-floating.with-topbar {
                top: 120px;
            }
            
            .nav-floating {
                display: none;
            }
            
            .navbar-toggler-floating {
                display: block;
            }
            
            .hero {
                padding-top: 180px;
                padding-bottom: 80px;
                text-align: center;
                background-attachment: scroll;
            }
            
            .hero-background {
                background-attachment: scroll;
            }
            
            .services-section,
            .about-section-new {
                padding: 100px 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .service-card-3d {
                padding: 35px;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .section-header-sophisticated {
                margin-bottom: 70px;
            }
        }

        @media (max-width: 768px) {
            .brands-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .photo-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .photo-card {
                height: 250px;
            }

            .navbar-floating {
                padding: 10px 20px;
                min-width: 280px;
            }
            
            .navbar-floating.with-topbar {
                top: 140px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.1rem;
            }
            
            .section-title-sophisticated {
                font-size: 1.6rem;
            }
            
            .btn-premium, .btn-outline-premium {
                padding: 14px 28px;
                font-size: 12px;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile menu styles */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(25px);
            border-radius: 25px;
            margin-top: 15px;
            padding: 25px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .mobile-menu.show {
            display: block;
            animation: slideDown 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .navbar-toggler-floating {
            border: none;
            background: none;
            color: white;
            font-size: 20px;
            padding: 10px;
            margin-left: 25px;
            display: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border-radius: 10px;
        }

        .navbar-floating.scrolled .navbar-toggler-floating {
            color: var(--primary-red);
        }

        .navbar-toggler-floating:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 992px) {
            .navbar-toggler-floating {
                display: block;
            }
            
            .mobile-menu .nav-link {
                display: block;
                padding: 15px 0;
                color: var(--text-primary) !important;
                border-bottom: 1px solid var(--border-subtle);
                text-decoration: none;
                font-weight: 600;
                transition: all 0.3s ease;
            }
            
            .mobile-menu .nav-link:hover {
                color: var(--primary-red) !important;
                transform: translateX(5px);
            }

            .mobile-menu .nav-link:last-child {
                border-bottom: none;
            }
            
            .mobile-menu .mobile-icon {
                display: inline-flex;
                width: 42px;
                height: 42px;
                margin: 8px 8px 0 0;
                background: linear-gradient(135deg, var(--light-red), rgba(254, 215, 215, 0.8));
                color: var(--primary-red) !important;
                border: 1px solid var(--primary-red);
                border-radius: 50%;
                backdrop-filter: blur(10px);
                box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
            }
            
            .mobile-menu .mobile-icon:hover {
                background: var(--gradient-accent);
                color: white !important;
                transform: translateY(-2px) scale(1.05);
                box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
            }
        }
		


.navbar-brand-floating {
    font-size: 1.3rem;
    font-weight: 700;
    color: white !important;
    text-decoration: none;
    margin-right: 50px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    letter-spacing: -0.5px;
    position: relative;
}

.navbar-brand-floating .logo-white {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.navbar-brand-floating .logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar-floating.scrolled .navbar-brand-floating .logo-white {
    opacity: 0;
}

.navbar-floating.scrolled .navbar-brand-floating .logo-dark {
    opacity: 1;
}