/* ============================================
   HOMEPAGE — Hero, Services Section, Testimonials,
   CTA Section
   Loaded ONLY on the Homepage
   ============================================ */

/* Hero Section styles moved to content-elements.css */

/* Services Section */
.services-section,
.services-preview {
    background: #f8f9fa;
    padding: 80px 0;
}

.services-section h2,
.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f6f6, #f8f6f6);
    color: black;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
}

/* Hero text overlay (colPos 0 rendered on top of the hero video) */

.hero-overlay-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay-content p {
    font-size: 20px;
    margin-bottom: 28px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-overlay-content h1 {
        font-size: 32px;
    }

    .hero-overlay-content p {
        font-size: 16px;
    }
}