/* Use Case Pages Styles */

/* Device Mockup Styles */
.device-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    padding: 2rem 0;
}

.device-mockup {
    position: relative;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.device-mockup:hover {
    transform: translateY(-10px);
}

/* Desktop/Laptop Mockup */
.device-desktop {
    background: #2c3e50;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.device-desktop::before {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    background: #34495e;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0.5rem;
}

.device-desktop .screen {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

/* Tablet Mockup */
.device-tablet {
    background: #34495e;
    border-radius: 15px;
    padding: 0.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.device-tablet::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #2c3e50;
    border-radius: 2px;
    margin: 0 auto 0.5rem;
}

.device-tablet .screen {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

/* Mobile Mockup */
.device-mobile {
    background: #2c3e50;
    border-radius: 25px;
    padding: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 250px;
    margin: 0 auto;
}

.device-mobile::before {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background: #34495e;
    border-radius: 3px;
    margin: 0 auto 0.5rem;
}

.device-mobile .screen {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
}

/* Live Blog Feed Preview */
.feed-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
}

.feed-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 0.5rem;
}

.feed-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.feed-item {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #667eea;
}

.feed-item-time {
    font-size: 0.7rem;
    color: #999;
    margin-bottom: 0.25rem;
}

.feed-item-content {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.feed-item-author {
    font-size: 0.7rem;
    color: #667eea;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Use Case Hero Section */
.use-case-hero {
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.use-case-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

/* Newsroom Hero with Watermark Image */
.newsroom-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: url('../images/newsday-productions.jpg');
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    mix-blend-mode: overlay;
}

.newsroom-hero .container {
    position: relative;
    z-index: 1;
}

/* Sports Hero with Watermark Image */
.sports-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: url('../images/gealicfootball.jpg');
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    mix-blend-mode: overlay;
}

.sports-hero .container {
    position: relative;
    z-index: 1;
}

/* Events Hero with Watermark Image */
.events-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: url('../images/events.jpeg');
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    mix-blend-mode: overlay;
}

.events-hero .container {
    position: relative;
    z-index: 1;
}

/* Emergency Hero with Watermark Image */
.emergency-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: url('../images/diasters.webp');
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    mix-blend-mode: overlay;
}

.emergency-hero .container {
    position: relative;
    z-index: 1;
}

/* Blogger Hero with Watermark Image */
.blogger-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: url('../images/vlogger+at+work.webp');
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    mix-blend-mode: overlay;
}

.blogger-hero .container {
    position: relative;
    z-index: 1;
}

/* Business Hero with Watermark Image */
.business-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: url('../images/business.jpg');
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    mix-blend-mode: overlay;
}

.business-hero .container {
    position: relative;
    z-index: 1;
}

.use-case-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.use-case-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-card h3 i {
    color: #667eea;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Highlight Section */
.features-highlight {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-highlight {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-highlight i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-highlight h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-highlight p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: white;
}

.testimonial {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: #667eea;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
}

/* Use Case Specific Styles */
.use-case-content {
    padding: 60px 0;
    background: white;
}

.use-case-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.use-case-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.use-case-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.use-case-content ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.use-case-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .device-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-case-hero h1 {
        font-size: 2.2rem;
    }
    
    .use-case-hero p {
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .features-highlight-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .device-mockup {
        padding: 1rem;
    }
    
    .feed-preview {
        padding: 0.75rem;
    }
    
    .feed-item {
        padding: 0.5rem;
    }
}

