.services-hero {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url('../images/11062b_fce4349362194db9a95427b6d511ebaff000.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 12px; Removed gap to control spacing individually */
}

.services-hero h1 {
    font-family: 'rozha one', serif;
    font-size: 48px;
    color: #000;
    margin: 0 0 5px 0; /* Small gap between Title and Price */
    line-height: 1.2;
}

.services-hero .price {
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 18px; /* Slightly reduced from 20px */
    color: #000;
    margin: 0 0 25px 0; /* Larger gap between Price and Button */
    font-weight: bold;
}

.services-hero .contact-button {
    border-radius: 0; /* Rectangular button as per image */
    padding: 10px 40px;
    font-size: 14px;
    letter-spacing: 0.1em;
    background-color: #000;
    color: #fff;
    border: none;
    text-transform: capitalize; /* "Contact" not "CONTACT" */
    height: auto; /* Override default height if needed */
}

.services-hero .contact-button:hover {
    background-color: #333;
    color: #fff;
}

.services-content-wrapper {
    background-color: #d3d3d3;
    padding: 60px 20px;
    width: 100%;
}

.services-container {
    max-width: 1280px; /* Increased from 980px to allow wider cards */
    margin: 0 auto;
}

.services-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.service-card {
    position: relative;
    width: calc((100% - 80px) / 3); /* Dynamic width to fill container minus gaps */
    will-change: transform;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: visible; /* Allow icon to overflow if needed, but icon is inside relative container */
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.card-icon {
    position: absolute;
    top: 170px; /* Overlaps the bottom of the image (200px height) */
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #000; /* Black background */
    border-radius: 16px; /* Slightly more rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 2px solid #fff; /* Optional: stroke effect if desired, or just clean separation */
}

.card-icon i {
    font-size: 24px;
    color: #fff; /* White icon */
}

.card-content {
    padding: 50px 30px 40px 30px; /* Top padding pushed down to accommodate icon overlap */
    flex-grow: 1;
    background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.card-content h2 {
    font-family: 'rozha one', serif; /* Capture 2 font */
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    text-align: center; /* Capture 2 alignment */
}

.card-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.card-content li {
    font-family: 'avenir-lt-w01_35-light', sans-serif; /* Capture 2 font */
    font-size: 16px;
    line-height: 1.6; /* Spacing */
    color: #000;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    text-align: left;
}

.card-content li::before {
    content: "-"; /* Dash instead of bullet */
    position: absolute;
    left: 0;
    color: #000;
}

.services-disclaimer {
    text-align: center;
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 12px;
    color: #000;
    margin: 20px 0 40px;
}

@media (max-width: 1024px) {
    .services-hero {
        height: 180px;
    }
    .services-hero h1 {
        font-size: 36px;
    }
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .service-card {
        width: 100%;
        max-width: 450px; /* Increased max-width for mobile view */
    }
    /* Removed unused service-overlay styles */
}

/* Removed unused positional classes */
