/* =========================================================================
   SERVICES PAGE SPECIFIC STYLES
   ========================================================================= */

.services-page-wrap {
    background-color: #fdf5f5;
    /* Light pinkish background matching the image */
    padding: 80px 0;
    min-height: calc(100vh - 80px);
    /* Fill screen */
}

/* Intro Card */
.intro-section {
    margin-bottom: 60px;
}

.intro-card {
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f2e8e8;
    /* subtle border */
    border-top: 8px solid var(--primary-color);
    /* The maroon top bar */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-card:hover {
    box-shadow: 0 15px 35px rgba(74, 4, 4, 0.08);
    transform: translateY(-5px);
}

.intro-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    color: #8c7d7d;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.intro-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #bc9853;
    /* Pale gold/bronze color from the image */
    margin: 0 auto 30px;
    transition: width 0.4s ease;
}

.intro-card:hover .title-underline {
    width: 120px;
}

.intro-desc {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid-section {
    padding-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f2e8e8;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(74, 4, 4, 0.1);
    border-color: rgba(74, 4, 4, 0.15);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background-color: #fdf5f5;
    /* light pink circle matching the main bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.icon-wrap i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.4s ease;
}

/* Card Hover Animations */
.service-card:hover .icon-wrap {
    background-color: var(--primary-color);
    transform: scale(1.15);
}

.service-card:hover .icon-wrap i {
    color: var(--white);
    transform: rotate(15deg) scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-desc {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Phone CTA Banner */
.service-cta {
    background-color: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-phone-wrap {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 35px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-phone-wrap:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive Overrides */
@media screen and (max-width: 900px) {
    .intro-title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .intro-title {
        font-size: 2.5rem;
    }

    .intro-card {
        padding: 40px 20px;
    }

    .intro-desc {
        font-size: 1.05rem;
    }

    .services-page-wrap {
        padding: 40px 0 0 0;
    }
}