/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 110px 0;
    background: var(--cream);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Grid - Flex for centering 5 cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

/* Service Card */
.service-card {
    width: calc(33.333% - 19px);
    position: relative;
    background: var(--warm-white);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(160, 120, 48, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(160, 120, 48, 0.18);
    border-color: rgba(201, 168, 76, 0.4);
}

/* Icon Wrap */
.service-icon-wrap {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}

.service-icon-styled {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Image */
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

/* Image overflow hidden wrapper */
.service-card > img {
    overflow: hidden;
}

/* Content */
.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    display: inline-block;
    padding: 5px 16px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(160, 120, 48, 0.08));
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 16px;
    width: fit-content;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.35s ease;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    width: fit-content;
}

.service-btn:hover {
    gap: 14px;
    border-bottom-color: var(--gold);
    color: var(--gold);
}

/* ========== TABLET - 2 COLUMNS ========== */
@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }

    .services-grid {
        gap: 22px;
    }

    .service-card {
        width: calc(50% - 11px);
    }

    .service-card img {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }
}

/* ========== SMALL TABLET ========== */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    .services-grid {
        gap: 18px;
    }

    .service-card {
        width: calc(50% - 9px);
    }

    .service-card img {
        height: 180px;
    }

    .service-content {
        padding: 16px;
    }

    .service-content h3 {
        font-size: 1rem;
    }

    .service-content p {
        font-size: 0.82rem;
        margin-bottom: 12px;
    }

    .service-icon-styled {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 1.05rem;
    }

    .service-price {
        font-size: 0.78rem;
        padding: 4px 12px;
    }

    .service-btn {
        font-size: 0.82rem;
    }
}

/* ========== MOBILE - 1 COLUMN ========== */
@media (max-width: 576px) {
    .services-section {
        padding: 50px 0;
    }

    .services-grid {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
        flex-direction: row;
        border-radius: 16px;
    }

    .service-card img {
        width: 130px;
        height: 100%;
        min-height: 160px;
        border-radius: 16px 0 0 16px;
        flex-shrink: 0;
    }

    .service-content {
        padding: 14px;
        flex: 1;
    }

    .service-content h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .service-content p {
        font-size: 0.78rem;
        margin-bottom: 8px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-price {
        font-size: 0.72rem;
        padding: 3px 10px;
        margin-bottom: 8px;
    }

    .service-btn {
        font-size: 0.78rem;
    }

    .service-icon-wrap {
        top: 10px;
        right: auto;
        left: 90px;
        transform: translateX(-50%);
    }

    .service-icon-styled {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 0.85rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 6px 18px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }
}

/* ========== VERY SMALL MOBILE ========== */
@media (max-width: 400px) {
    .service-card {
        max-width: 100%;
    }

    .service-card img {
        width: 110px;
        min-height: 140px;
    }

    .service-content {
        padding: 12px;
    }

    .service-content h3 {
        font-size: 0.88rem;
    }

    .service-content p {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }

    .service-price {
        font-size: 0.7rem;
    }

    .service-btn {
        font-size: 0.75rem;
    }

    .service-icon-wrap {
        left: 75px;
    }

    .service-icon-styled {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* ========== LANDSCAPE PHONE ========== */
@media (max-width: 576px) and (orientation: landscape) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 8px);
        flex-direction: column;
        max-width: none;
    }

    .service-card img {
        width: 100%;
        height: 150px;
        border-radius: 16px 16px 0 0;
    }

    .service-icon-wrap {
        top: 10px;
        right: 10px;
        left: auto;
        transform: none;
    }
}