/* ============================================================
   Page-specific styles: service-group-all
   Extracted from inline <style> blocks. Loads AFTER
   service-pages-shared.css - order preserved from the original page.
   ============================================================ */

:root {
            --brand-primary: #066D77;
            --brand-primary-rgb: 6, 109, 119;
            --brand-dark: #066D77;
            --brand-soft: #f4fcfc;
            --text-title: #1a1a1a;
            --text-body: #4a4a4a;
            --text-light: #6b7280;
            --white: #ffffff;
            --bg-gray: #f9fafb;
            --border-ui: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --transition: all 0.3s ease;
        }

* {
            box-sizing: border-box;
        }

body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-body);
        }

.hero-section {
            position: relative;
            background: linear-gradient(135deg, var(--brand-primary) 0%, #0a8a94 100%);
            color: var(--white);
            padding: 175px 0 80px 0;
            overflow: hidden;
        }

.hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

.hero-title {
            font-size: 3rem;
            font-weight: 500;
            margin-bottom: 1rem;
            font-family: 'Libre Baskerville', serif;
        }

.hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

.breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

.breadcrumb a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
        }

.breadcrumb a:hover {
            opacity: 1;
        }

.services-section {
            padding: 80px 0;
            background: var(--bg-gray);
        }

.services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

.services-header {
            text-align: center;
            margin-bottom: 3rem;
        }

.services-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 1rem;
            font-family: 'Libre Baskerville', serif;
        }

.services-subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

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

.service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
            display: block;
        }

.service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

.service-card-bg {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

.service-card-body {
            padding: 1.5rem;
        }

.service-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 0.5rem;
            font-family: 'Libre Baskerville', serif;
        }

.service-card-desc {
            color: var(--text-light);
            font-size: 0.875rem;
            line-height: 1.5;
        }

.service-card-footer {
            padding: 1rem 1.5rem;
            background: var(--bg-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.service-card-tag {
            background: var(--brand-primary);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 500;
        }

.service-card-arrow {
            font-size: 1.25rem;
            color: var(--brand-primary);
            transition: var(--transition);
        }

.service-card:hover .service-card-arrow {
            transform: translateX(5px);
        }

.back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--brand-primary);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 2rem;
            transition: var(--transition);
        }

.back-button:hover {
            background: var(--brand-dark);
            color: var(--white);
        }

@media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .services-title {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
