/* ==================================================================
   Q-TRASH™ — Dedicated Stylesheet
   Only page-specific styles. Everything else comes from base.css
   ================================================================== */

:root {
    --q-cyan: #00eaff;
    --q-blue: #2db7ff;
}

/* HERO – Q-Trash */
.q-hero {
    text-align: center;
    padding: 140px 20px 110px;
    background: linear-gradient(45deg, #0a0e12 0%, #0d1218 90%);
}

.q-hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--q-cyan);
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.q-hero p {
    font-size: 1.8rem;
    max-width: 1100px;
    margin: 0 auto 40px;
    opacity: 0.94;
    line-height: 1.65;
}

.q-cta-btn {
    background: var(--q-blue);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(45, 183, 255, 0.3);
}

.q-cta-btn:hover {
    background: var(--q-cyan);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 234, 255, 0.4);
}

/* Highlight / Problem Section */
.q-highlight {
    background: #0c1117;
    padding: 100px 20px;
    text-align: center;
    border-top: 1px solid #1e2328;
    border-bottom: 1px solid #1e2328;
}

.q-highlight h2 {
    font-size: 2.6rem;
    color: var(--q-cyan);
    margin-bottom: 28px;
    font-weight: 700;
}

.q-highlight p {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.92;
}

/* Section Titles */
.q-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.q-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--q-cyan);
    margin-bottom: 20px;
}

.q-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    opacity: 0.88;
    line-height: 1.6;
}

/* Feature & Use Case Grid */
.q-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.q-card {
    background: var(--surface);
    border: 1px solid rgba(0, 234, 255, 0.15);
    border-radius: 18px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    height: 100%;
}

.q-card:hover {
    transform: translateY(-10px);
    border-color: var(--q-cyan);
    box-shadow: 0 20px 50px rgba(0, 234, 255, 0.18);
    background: rgba(17, 20, 24, 0.9);
}

.q-card h3 {
    color: var(--q-blue);
    font-size: 1.5rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.q-card p {
    opacity: 0.9;
    line-height: 1.65;
}

/* Final CTA Section */
.q-cta-footer {
    text-align: center;
    padding: 140px 20px;
    background: linear-gradient(180deg, #0a0e12 0%, #000 100%);
}

.q-cta-footer h2 {
    font-size: 3rem;
    color: var(--q-cyan);
    margin-bottom: 20px;
    font-weight: 800;
}

.q-cta-footer p {
    font-size: 1.35rem;
    max-width: 760px;
    margin: 0 auto 44px;
    opacity: 0.9;
}

/* Responsive overrides (will be enhanced by your responsive.css) */
@media (max-width: 920px) {
    .q-hero { padding: 110px 20px 90px; }
    .q-hero h1 { font-size: 3.4rem; }
    .q-hero p { font-size: 1.25rem; }
    .q-title { font-size: 2.4rem; }
}

@media (max-width: 640px) {
    .q-hero h1 { font-size: 2.8rem; }
    .q-hero p { font-size: 1.15rem; }
    .q-cta-btn { padding: 16px 32px; font-size: 1.1rem; }
    .q-highlight h2 { font-size: 2.1rem; }
    .q-grid { grid-template-columns: 1fr; }
}

/* === FIX: Make footer social icons small & neat again === */
footer .social-icons img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 0.8;
    transition: all 0.3s ease;
}

footer .social-icons a:hover img {
    opacity: 1;
    transform: scale(1.15);
    filter: none;
}

/* Re-use the exact same glow as video-glow-frame but for static images */
.image-glow-frame {
    position: relative;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    padding: 4px;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0.6), 
        rgba(100, 100, 255, 0.6), 
        rgba(242, 140, 40, 0.7)
    );
    background-size: 300% 300%;
    animation: glowShift 8s ease infinite;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4), 0 0 80px rgba(100, 100, 255, 0.3);
}

.image-glow-frame::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: #000;
    border-radius: 20px;
    z-index: 1;
}

.image-element {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Reuse the same breathing glow animation that’s already in base.css */
@keyframes glowShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}