/* Page-Specific Styles for GrowwithROI Theme */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #112240 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Service Cards Hover */
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Case Study Cards */
.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Spy Tool Spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#spy-loader p {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ROI Results Animation */
#roi-results {
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Industry Cards Hover */
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Blog Post Cards */
.blog-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }
    .hero-section p {
        font-size: 1rem !important;
    }
}
