/* ── PAGE: SERVICE LIST ─────────────────────────────── */
.sv-page {
    background: #fdf8f4;
    min-height: 100vh;
    padding-top: 90px;
    padding-bottom: 100px;
}

/* ── HERO BANNER ─────── */
.sv-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b35 50%, #1a1a2e 100%);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b76e79' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
        repeat;
    pointer-events: none;
}
.mar {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a96e;
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 6px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    position: relative;
}
.sv-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    position: relative;
}
.sv-hero h1 span {
    color: #c9a96e;
}
.sv-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
    position: relative;
}

/* ── FILTER BAR ─────── */
.sv-filter-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.sv-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 36px 0 40px;
    border-bottom: 1px solid rgba(183, 110, 121, 0.12);
    margin-bottom: 60px;
}
.sv-filter-btn {
    font-family: "Quicksand", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1.5px solid #e8ddd8;
    background: #fff;
    color: #7a6e6a;
    cursor: pointer;
    transition: all 0.25s ease;
}
.sv-filter-btn:hover,
.sv-filter-btn.active {
    background: #b76e79;
    border-color: #b76e79;
    color: #fff;
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.25);
}

/* ── SERVICES GRID ─────── */
.sv-grid-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.sv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 1100px) {
    .sv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 680px) {
    .sv-grid {
        grid-template-columns: 1fr;
    }
}

/* ── SERVICE CARD ─────── */
.sv-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}
.sv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(183, 110, 121, 0.16);
}
.sv-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.sv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.sv-card:hover .sv-card-img img {
    transform: scale(1.06);
}
.sv-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 15, 20, 0.55) 0%,
        transparent 60%
    );
}
.sv-card-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b76e79;
    padding: 5px 14px;
    border-radius: 100px;
}
.sv-card-sale-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #b76e79;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}
.sv-card-price-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
}
.sv-card-price-overlay .price-val {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.sv-card-price-overlay .price-unit {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-left: 6px;
}
.sv-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sv-card-name {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    color: #2d2020;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.2s;
}
.sv-card:hover .sv-card-name {
    color: #b76e79;
}
.sv-card-desc {
    font-size: 14px;
    color: #7a6a65;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sv-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b76e79;
    padding: 12px 24px;
    border: 1.5px solid rgba(183, 110, 121, 0.3);
    border-radius: 100px;
    text-align: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}
.sv-card-link:hover {
    background: #b76e79;
    color: #fff;
    border-color: #b76e79;
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.3);
}

/* ── WHY US BANNER ─────── */
.sv-why {
    max-width: 1320px;
    margin: 80px auto 0;
    padding: 0 24px;
}
.sv-why-inner {
    background: linear-gradient(135deg, #2d1b35 0%, #1a1a2e 100%);
    border-radius: 24px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 900px) {
    .sv-why-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 32px;
    }
}
.sv-why-item {
    text-align: center;
}
.sv-why-icon {
    width: 60px;
    height: 60px;
    background: rgba(183, 110, 121, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: #c9a96e;
}
.sv-why-item h4 {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    color: #fff;
    margin-bottom: 10px;
}
.sv-why-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

/* ── ANIMATIONS ─────── */
.sv-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.sv-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
