/* Services Page Custom Styles */
.services-hero {
    background: var(--light-gray);
    text-align: center;
    padding: 60px 0 30px 0;
}
.services-hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 0;
}
.services-hero-content h1 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 18px;
}
.services-hero-lead {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.section-title p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlight What We Offer Section */
.services-page-section {
    background: #fffbe6;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(212,175,55,0.08);
    margin-bottom: 40px;
}
.section-title h2 {
    color: var(--primary-yellow);
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.section-title p {
    color: #333;
    font-size: 1.25rem;
    font-weight: 500;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-page-card {
    background: #fff;
    border: 1px solid #f5e6b2;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.10);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-yellow);
    position: relative;
}

.service-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(44,44,44,0.12);
    border-left: 5px solid var(--secondary-yellow);
}

.service-page-icon {
    background: var(--primary-yellow);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 18px auto;
    box-shadow: 0 2px 8px rgba(212,175,55,0.10);
}

.service-page-card h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.service-features li {
    color: var(--gray);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features i {
    color: var(--primary-yellow);
    font-size: 1.1em;
}

.service-page-card p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn {
    margin-top: 10px;
}

/* Footer Styles for Consistency */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}
.footer-brand p {
    color: rgba(44,44,44,0.7);
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(44,44,44,0.1);
    color: var(--primary-yellow);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary-yellow);
    color: white;
    transform: translateY(-3px);
}
.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: rgba(44,44,44,0.7);
    transition: var(--transition);
}
.footer-links ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(44,44,44,0.1);
    color: rgba(44,44,44,0.7);
}

@media (max-width: 900px) {
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-page-card {
        padding: 25px 15px;
    }
    .services-hero-content h1 {
        font-size: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}