/* Services Page Styles - FACR */

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
    background: #f9f9f9;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-video-container {
    width: 90%;
    max-width: 800px;
    border: 3px solid #fff;
    border-radius: 10px;
    overflow: hidden;
}

.hero-video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Breadcrumb */
.breadcrumb-container {
    background: #e0e0e0;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #333;
}

/* Services Section */
.section-block {
    background: #fff;
    margin: 40px auto;
    padding: 20px;
    max-width: 1100px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.section-block img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.section-block h3 {
    color: #1a73e8;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.section-block p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.cta-btn {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #0c59b2;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
    .section-block h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
    }
    .hero-overlay h1 {
        font-size: 1.6rem;
    }
    .section-block {
        margin: 20px 10px;
        padding: 15px;
    }
    .section-block img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.3rem;
    }
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}