/* Custom CSS for Dubai-Pak Express */

/* Root Variables */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    scroll-behavior: smooth;
}

/* Smooth scrolling offset for fixed navbar */
html {
    scroll-padding-top: 76px;
}

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(139, 92, 246, 0.95) 50%, rgba(6, 182, 212, 0.95) 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    min-height: 80px;
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: #ffd700 !important;
    text-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover {
    color: #ffd700 !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 30%, rgba(6, 182, 212, 0.9) 70%, rgba(16, 185, 129, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="logistics" patternUnits="userSpaceOnUse" width="200" height="100"><path d="M10,50 Q50,10 90,50 T170,50" stroke="rgba(255,255,255,0.2)" stroke-width="2" fill="none"/><circle cx="20" cy="50" r="3" fill="rgba(245,158,11,0.4)"/><circle cx="80" cy="50" r="3" fill="rgba(245,158,11,0.4)"/><circle cx="140" cy="50" r="3" fill="rgba(245,158,11,0.4)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23logistics)"/></svg>');
    background-size: cover, 400px 200px;
    background-position: center, 0 0;
    background-repeat: no-repeat, repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 100px;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 211, 102, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(13, 110, 253, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
    animation: gradientShift 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    margin-top: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #f0f8ff, #e6f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 2px;
    animation: slideIn 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff59d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.hero-subtitle i {
    color: #ffd700 !important;
    margin: 0;
    font-size: 1.4em !important;
    text-shadow: 0 0 0 rgba(255, 215, 0, 0) !important;
    animation: truckBounce 2s ease-in-out infinite;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: relative;
    z-index: 100 !important;
    display: inline-block !important;
    font-weight: bold !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

@keyframes truckBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* Force truck icon to be sharp and clear */
.hero-subtitle .fa-truck {
    color: #ffd700 !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    font-smooth: never !important;
    -webkit-font-smoothing: none !important;
    -moz-osx-font-smoothing: unset !important;
    text-rendering: auto !important;
    image-rendering: auto !important;
    image-rendering: crisp-edges !important;
    image-rendering: -webkit-optimize-contrast !important;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 15;
    pointer-events: auto;
    cursor: pointer;
}

.hero-buttons .btn-success {
    background: linear-gradient(45deg, #25d366, #128c7e);
    border: none;
    animation: pulse-glow 2s infinite;
}

.hero-buttons .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.hero-buttons .btn-outline-primary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.hero-image {
    text-align: center;
    animation: fadeInRight 1s ease-out 0.6s both;
    position: relative;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(255, 140, 0, 0.9));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    margin-bottom: 2.5rem;
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: badgeGlow 3s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
    position: relative;
    z-index: 10;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 123, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(0, 123, 255, 0.9));
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 15px 50px rgba(255, 140, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.6);
    }
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff59d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Animations */
.hero-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Moving Trucks */
.moving-truck {
    position: absolute;
    color: rgba(255, 140, 0, 0.7);
    font-size: 2rem;
    animation: moveTruck 15s infinite linear;
}

.truck-1 {
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

.truck-2 {
    top: 70%;
    left: -100px;
    animation-delay: 7s;
}

@keyframes moveTruck {
    0% {
        left: -100px;
        transform: rotate(0deg);
    }
    100% {
        left: calc(100% + 100px);
        transform: rotate(0deg);
    }
}

/* Flying Planes */
.flying-plane {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: flyPlane 20s infinite linear;
}

.plane-1 {
    top: 15%;
    left: -80px;
    animation-delay: 0s;
}

.plane-2 {
    top: 85%;
    left: -80px;
    animation-delay: 10s;
}

@keyframes flyPlane {
    0% {
        left: -80px;
        transform: rotate(-10deg);
    }
    100% {
        left: calc(100% + 80px);
        transform: rotate(-10deg);
    }
}

/* Floating Food Icons */
.floating-food {
    position: absolute;
    color: rgba(40, 167, 69, 0.6);
    font-size: 1.8rem;
    animation: floatFood 8s infinite ease-in-out;
}

.food-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.food-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.food-3 {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes floatFood {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
}

/* Delivery Path */
.delivery-path {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 140, 0, 0.5) 20%, rgba(40, 167, 69, 0.5) 80%, transparent 100%);
    animation: pathPulse 3s infinite ease-in-out;
}

.delivery-path::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 20px;
    height: 4px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 2px;
    animation: pathMove 4s infinite linear;
}

@keyframes pathPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(1.5);
    }
}

@keyframes pathMove {
    0% {
        left: 0;
    }
    100% {
        left: calc(100% - 20px);
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: particleFloat 6s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 10%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Hero Icon Container */
.hero-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 12rem;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 215, 0, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    z-index: 2;
    position: relative;
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    animation-duration: 8s;
}

.ring-2 {
    width: 250px;
    height: 250px;
    top: 25px;
    left: 25px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
    animation-duration: 15s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(1deg);
    }
    66% {
        transform: translateY(-25px) rotate(-1deg);
    }
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--success-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    display: block;
}

.feature-item h5 {
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

/* About Section */
.about-image {
    text-align: center;
    padding: 2rem;
}

.about-image i {
    font-size: 12rem;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--success-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Delivery Cities */
.delivery-cities {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.city-badge {
    background: linear-gradient(45deg, var(--primary-color), #0b5ed7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
}

.city-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.city-badge:last-child {
    background: linear-gradient(45deg, var(--success-color), #128c7e);
    font-weight: 600;
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border-left: 4px solid var(--success-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: var(--success-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-info h5 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.2rem;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    transition: var(--transition);
}

.product-card:hover .product-placeholder {
    transform: scale(1.1);
    opacity: 0.5;
}

/* Product Images */
.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* Steps Section */
.step-item {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--success-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.step-item h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-item {
    padding: 2rem 1rem;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-icon.fa-whatsapp {
    color: var(--success-color);
}

.contact-icon.fa-phone {
    color: var(--primary-color);
}

.contact-icon.fa-envelope {
    color: #dc3545;
}

/* Social Links */
.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--success-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    background: #128c7e;
    color: var(--white);
}

.floating-whatsapp i {
    font-size: 1.8rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Button Styles */
.btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin: 0.3rem;
    }
    
    .hero-icon-container {
        width: 250px;
        height: 250px;
    }
    
    .hero-icon {
        font-size: 8rem;
    }
    
    .ring-1 {
        width: 150px;
        height: 150px;
        top: 50px;
        left: 50px;
    }
    
    .ring-2 {
        width: 200px;
        height: 200px;
        top: 25px;
        left: 25px;
    }
    
    .ring-3 {
        width: 250px;
        height: 250px;
        top: 0;
        left: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-image i {
        font-size: 8rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp a {
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-placeholder {
        font-size: 3rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--success-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0b5ed7, #128c7e);
}

/* Product Modal Styles */
.product-modal {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: var(--border-radius);
    color: var(--white);
    min-height: 700px;
    overflow: visible;
}

.modal-xl {
    max-width: 1000px;
}

.modal-body {
    padding: 3rem;
    min-height: 600px;
    overflow: visible;
    position: relative;
}

.modal-product-image {
    max-width: 250px !important;
    max-height: 250px !important;
    width: auto !important;
    height: auto !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    display: block;
    margin: 0 auto;
    cursor: zoom-in;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.modal-product-image:hover {
    transform: scale(1.4);
    z-index: 9999;
    position: relative;
    max-width: 350px !important;
    max-height: 350px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-product-icon {
    position: relative;
    z-index: 1;
    overflow: visible;
    padding: 2rem;
}

.modal-product-icon:hover {
    z-index: 9998;
}

.modal-product-icon i {
    font-size: 5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: modalIconFloat 3s ease-in-out infinite;
}

.modal-product-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalIconFloat 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

@keyframes modalIconFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.modal-product-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.modal-product-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.modal-product-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.modal-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.modal-actions {
    position: relative;
    z-index: 2;
}

.modal-actions .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.modal-actions .btn-success {
    background: linear-gradient(45deg, #25d366, #128c7e);
    border: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.modal-actions .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.modal-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    backdrop-filter: blur(10px);
}

.modal-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-product-icon i {
        font-size: 4rem;
    }
    
    .modal-product-title {
        font-size: 1.5rem;
    }
    
    .modal-product-price {
        font-size: 2rem;
    }
    
    .modal-features {
        gap: 0.5rem;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .modal-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.3rem;
    }
}

/* Print Styles */
@media print {
    .floating-whatsapp,
    .navbar,
    .btn,
    .modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        background: none !important;
        color: var(--dark-color) !important;
    }
}

/* Custom Button Styles for New Color Scheme */
.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%) !important;
    border: none !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    font-weight: 600;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #FF6B35, var(--accent-color)) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    color: var(--white) !important;
}

.btn-success {
    background: linear-gradient(135deg, var(--secondary-color), #34CE57) !important;
    border: none !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #34CE57, var(--secondary-color)) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    color: var(--white) !important;
}

/* Testimonial Styling */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-style: normal;
    position: relative;
    padding: 0;
}

.testimonial-text::before,
.testimonial-text::after {
    content: none !important;
    display: none !important;
}



.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.testimonial-author h5 {
    margin-bottom: 0.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.testimonial-author span {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Product Search & Filter Styling */
.product-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-container {
    position: relative;
}

.search-input {
    padding-right: 45px;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    font-size: 1rem;
    padding: 12px 20px;
}

.search-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn-category {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-category:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-category.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.product-item {
    transition: var(--transition);
    /* GPU acceleration for better performance */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.product-item.hidden {
    display: none !important;
}

/* Performance optimizations */
.product-item.in-view {
    /* Loaded state - can add special styles here */
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
    .product-item {
        transition: none !important;
        animation: none !important;
    }
}

/* Virtual scrolling container for large datasets (future use) */
.products-virtual-container {
    height: 600px;
    overflow-y: auto;
    contain: layout style paint;
}

/* Product Card Styling - Compact Design */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    min-height: 320px;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    contain: layout style paint;
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Ensure buttons are visible in product cards */
.product-card .btn {
    margin-top: auto;
    z-index: 5;
    position: relative;
    font-weight: 600;
}

.product-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    flex-shrink: 0;
}

.product-placeholder {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.product-img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    line-height: 1.3;
    flex-shrink: 0;
}

.product-price {
    display: none;
}

.product-info .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-top: auto;
    flex-shrink: 0;
}

/* Product Grid Spacing */
.product-item {
    margin-bottom: 1.5rem !important;
}

/* Ensure products section is compact */
#products .container {
    max-width: 1200px;
}

/* Responsive adjustments for compact layout */
@media (max-width: 768px) {
    .product-card {
        min-height: 300px;
        max-height: 300px;
        padding: 0.8rem;
    }
    
    .product-image {
        height: 100px;
    }
    
    .product-placeholder {
        font-size: 2.5rem;
    }
    
    .product-info h5 {
        font-size: 1rem;
    }
    
    .product-info .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .product-item {
        margin-bottom: 1rem !important;
    }
}

/* Removed Show All Products Button - Using pagination only */

/* Pagination Styling */
.pagination-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin: 0 2px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal Styles */
.product-modal {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: var(--border-radius);
    color: var(--white);
    min-height: 500px;
    overflow: visible;
}

.modal-lg {
    max-width: 600px;
}

.modal-body {
    padding: 2rem;
    min-height: 400px;
    overflow: visible;
    position: relative;
}

.modal-product-image {
    max-width: 250px !important;
    max-height: 250px !important;
    width: auto !important;
    height: auto !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    display: block;
    margin: 0 auto;
    cursor: zoom-in;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.modal-product-image:hover {
    transform: scale(1.4);
    z-index: 9999;
    position: relative;
    max-width: 350px !important;
    max-height: 350px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-product-icon {
    position: relative;
    z-index: 1;
    overflow: visible;
    padding: 2rem;
}

.modal-product-icon:hover {
    z-index: 9998;
}

.modal-product-icon:hover ~ .modal-product-title,
.modal-product-icon:hover ~ .modal-product-description,
.modal-product-icon:hover ~ .modal-features,
.modal-product-icon:hover ~ .modal-actions {
    z-index: 1;
    position: relative;
}

/* Ensure modal can handle zoomed images */
.modal-content {
    overflow: visible;
}

.modal-dialog {
    overflow: visible;
}

/* Additional modal containment */
.modal {
    overflow: visible !important;
}

.modal-product-icon:hover ~ .modal-product-title,
.modal-product-icon:hover ~ .modal-product-description,
.modal-product-icon:hover ~ .modal-features,
.modal-product-icon:hover ~ .modal-actions {
    z-index: 1;
    position: relative;
}

.modal-product-title {
    color: var(--white);
    font-weight: bold;
    margin-bottom: 1rem;
}

.modal-product-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.modal-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.modal-actions {
    margin-top: 2rem;
}

/* Repackaging Service Styles */
.repackaging-examples {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 123, 255, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.examples-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.example-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
}

.example-badge:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Clickable Stats */
.clickable-stat {
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
    border-radius: var(--border-radius);
    padding: 1rem;
    display: block;
}

.clickable-stat:hover {
    color: inherit !important;
    text-decoration: none !important;
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.clickable-stat:active {
    transform: translateY(-2px) scale(1.02);
}

.clickable-stat .stat-number {
    transition: var(--transition);
}

.clickable-stat:hover .stat-number {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

/* Promotion Styles */
.promotion-card {
    position: relative;
    border: 2px solid var(--warning-color);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
    animation: promotionGlow 2s ease-in-out infinite alternate;
}

.promotion-card .btn {
    background: linear-gradient(135deg, #FF6B35, #F7931E) !important;
    border: none !important;
    color: white !important;
    font-weight: bold !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
    transition: all 0.3s ease !important;
}

.promotion-card .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6) !important;
    color: white !important;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--warning-color), var(--accent-color), var(--warning-color));
    border-radius: var(--border-radius);
    z-index: -1;
    animation: promotionBorder 3s linear infinite;
}

@keyframes promotionGlow {
    0% {
        box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
    }
    100% {
        box-shadow: 0 12px 35px rgba(255, 140, 0, 0.4);
    }
}

@keyframes promotionBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.promotion-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 10;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-yearly {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.badge-discount {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.badge-special {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.promotion-info {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border: none;
    border-radius: 12px;
    padding: 12px;
    margin: 8px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.promotion-title {
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.promotion-description {
    font-size: 0.8rem;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.promotion-modal-info {
    margin-bottom: 1rem;
}

.promotion-modal-info .alert {
    border: none;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 193, 7, 0.1));
    border-left: 4px solid var(--warning-color);
}

.promotion-modal-info h6 {
    color: var(--warning-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Full Width Promotion Banner */
.promotion-banner-section {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #10b981 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.promotion-banner-section .container-fluid {
    padding: 0 2rem;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.promotion-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.promotion-slider-container-full {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promotion-slider-container-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Promotion Slider Styles */
.promotion-slider-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.promotion-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 5;
}

.promotion-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 6px;
    display: flex;
}

.promotion-slider {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    animation: scrollBanner 20s linear infinite;
    width: max-content;
    min-width: 100%;
}

.promotion-slider:hover {
    animation-play-state: paused;
}

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

.promotion-slider::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.promotion-slide {
    min-width: 300px;
    flex: 1;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #8b5cf6 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
    animation: slideGlow 3s ease-in-out infinite alternate;
}

.promotion-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: slideShine 3s linear infinite;
}


@keyframes slideGlow {
    0% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    }
}

@keyframes slideShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.promotion-slide-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.promotion-slide h4 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promotion-slide .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promotion-slide .offer-text {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.promotion-slide .btn {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #FF6B35 !important;
    border: none !important;
    font-weight: bold !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
}

.promotion-slide .btn:hover {
    background: white !important;
    color: #FF6B35 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.promotion-badge-slider {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

/* Responsive promotion styles */
@media (max-width: 768px) {
    .promotion-banner-section {
        padding: 2rem 0;
    }
    
    .promotion-slider-container-full {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
    }
    
    .promotion-slider-container {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .promotion-slide {
        min-width: 250px;
        padding: 1rem;
    }
    
    .promotion-slide-image {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .promotion-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .promotion-info {
        padding: 8px;
    }
    
    .promotion-title {
        font-size: 0.8rem;
    }
    
    .promotion-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-category {
        width: 200px;
    }
    
    .modal-product-image {
        max-width: 150px;
        max-height: 150px;
    }
} 