/* ================================================
   MODERN VISUAL ENHANCEMENTS
   Beautiful images, gradients, and modern design
   ================================================ */

/* Hero Section Backgrounds */
.hero-section {
	background: linear-gradient(135deg, rgba(0, 128, 128, 0.9), rgba(0, 31, 63, 0.9)),
	            url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1600&h=900&fit=crop') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* About Page Image */
.about-hero {
	background: linear-gradient(135deg, rgba(0, 128, 128, 0.85), rgba(0, 31, 63, 0.85)),
	            url('https://images.unsplash.com/photo-1556761175-4b46a572b786?w=1600&h=800&fit=crop') center/cover;
}

/* Services Page Images */
.service-printing {
    background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=600&h=400&fit=crop') center/cover;
}

.service-merchandising {
    background: url('https://images.unsplash.com/photo-1523381210434-271e8be1f52b?w=600&h=400&fit=crop') center/cover;
}

.service-gifting {
    background: url('https://images.unsplash.com/photo-1513201099705-a9746e1e201f?w=600&h=400&fit=crop') center/cover;
}

.service-marketing {
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=600&h=400&fit=crop') center/cover;
}

/* Product Card Images */
.product-image-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.product-image-placeholder::before {
    content: '📦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.3;
}

/* Contact Page Background */
.contact-section {
	background: linear-gradient(135deg, rgba(0, 128, 128, 0.95), rgba(0, 31, 63, 0.95)),
	            url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&h=900&fit=crop') center/cover;
}

/* Portfolio Grid Images */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* REMOVED: Black gradient overlay on hover
.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover::before {
    opacity: 1;
}
*/

/* Feature Icons with Backgrounds */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

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

/* Modern Card Images */
.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-image {
    transform: scale(1.1);
}

/* Category Backgrounds */
.category-printing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-merchandising {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-gifting {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-marketing {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Team Member Placeholders */
.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Testimonial Images */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

/* Process Steps Icons */
.process-step {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed #667eea;
    opacity: 0.5;
    animation: rotate 10s linear infinite;
}

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

/* Statistics Background */
.stats-section {
	background: linear-gradient(135deg, rgba(0, 128, 128, 0.95), rgba(0, 31, 63, 0.95)),
	            url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600&h=600&fit=crop') center/cover;
    color: white;
    padding: 80px 0;
}

/* CTA Section Background */
.cta-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95)),
                url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1600&h=600&fit=crop') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

/* Modern Patterns */
.pattern-dots {
	background-image: radial-gradient(circle, rgba(0,128,128,0.2) 1px, transparent 1px);
    background-size: 20px 20px;
}

.pattern-grid {
	background-image: 
		linear-gradient(rgba(0,128,128,0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,128,128,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Floating Elements */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

/* Glass Morphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Image Overlay on Hover */
.image-overlay-container {
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,128,128,0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}

.image-overlay-container:hover .image-overlay {
    opacity: 1;
}

/* Responsive Images */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .process-step {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}

/* Print Ready Badge */
.print-ready-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Quality Guarantee Icon */
.quality-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
