/* Solutions Pages Shared Styles */

/* Hero Section Styles */
.solution-hero {
    padding: 170px 0 80px;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.parks-hero {
    background: linear-gradient(rgba(46, 59, 44, 0.7), rgba(46, 59, 44, 0.7)),
                url('../images/parks-rec.png') center/cover;
    color: white;
    text-align: center;
}

.solution-hero h1 {
    font-family: 'Avenir';
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #FFFFFF;
}

.solution-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Horizontal Features Section */
.horizontal-features-section {
    padding: 100px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.horizontal-feature {
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.horizontal-feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.horizontal-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

.horizontal-feature-text {
    padding: 40px 0;
}

.horizontal-feature-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E3B2C;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.horizontal-feature-text p {
    font-size: 1.2rem;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.horizontal-feature-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
}

.feature-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.feature-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.horizontal-feature-visual:hover .feature-hero-image {
    transform: scale(1.05);
}

/* Feature list styling within horizontal features */
.horizontal-feature .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.horizontal-feature .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #444444;
    font-size: 1.1rem;
    line-height: 1.5;
}

.horizontal-feature .feature-list li::before {
    content: "✓";
    color: #35A854;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Legacy Feature/Facilities Section Styles (for backward compatibility) */
.features-section,
.facilities-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.features-grid,
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card,
.facility-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon,
.facility-icon {
    width: 80px;
    height: 80px;
    background: #93B47E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    padding: 20px;
}

.facility-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-card h3,
.facility-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2E3B2C;
}

.feature-card p,
.facility-card p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #444444;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "✓";
    color: #35A854;
    font-weight: bold;
    margin-bottom:0;
}