.service-main-title { font-size: 4rem; font-weight: 800; margin-bottom: 60px; letter-spacing: 4px; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.service-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
}
.service-card img, .service-placeholder {
    width: 140px; height: 140px;
    border-radius: 20px;
    object-fit: cover;
}
.service-placeholder {
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-style: italic;
}

.service-list {
    display: flex;
    flex-direction: column; 
    gap: 35px; 
    margin-top: 20px;
}

.service-wide-card {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 30px;
    display: flex; 
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.card-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.card-image-wrapper > img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.mini-logo {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 5;
}

.mini-logo img { width: 40px; }

.card-content {
    flex-grow: 1;
    color: var(--white);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-header h3 { font-size: 2rem; font-weight: 700; letter-spacing: 0.5px; }
.card-header .price { font-size: 1.8rem; font-weight: 700; opacity: 0.9; }

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 90%;
    text-align: justify;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-book {
    background: var(--white);
    color: var(--brand-red);
    text-decoration: none;
    padding: 12px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: inline-block;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: #f8f8f8;
}

@media (max-width: 768px) {
    .service-main-title { font-size: 2.5rem; text-align: center; }
    .service-wide-card {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        width: 90%;
        margin: 0 auto;
    }

    .card-image-wrapper > img {
        width: 100%;
        height: auto;
    }

    .card-content p {
        text-align: justify;
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 20px auto;
    }

    .card-header {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .card-content p {
        text-align: justify;
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 20px auto;
    }
}

.service-description-list {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 90%;
    padding-left: 20px;
    color: var(--white);
}

.service-description-list li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .service-description-list {
        text-align: left;
        padding: 0 10px 0 30px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 20px auto;
    }
}
