:root {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    background: #ffffff;
    color: #000;
}
.customer-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
}
.customer-content {
    width: 100%;
    max-width: 380px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.google-logo {
    width: 140px;
    max-width: 100%;
    display: block;
    margin: 0 auto 14px;
}
.customer-title {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.customer-subtitle {
    margin: 6px 0 24px;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
}
.review-card {
    position: relative;
    background: radial-gradient(circle at top, rgba(255, 245, 205, 0.98), rgba(255, 248, 230, 1) 40%, #fff 100%);
    border: 4px solid rgba(217, 181, 79, 0.55);
    border-radius: 28px;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    box-shadow: 0 20px 55px rgba(204, 150, 42, 0.22);
    overflow: hidden;
    min-height: 220px;
    max-height: 220px;
}
.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: -6px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(217, 181, 79, 0.35), rgba(247, 210, 99, 0.28), rgba(217, 181, 79, 0.35));
    filter: blur(16px);
    opacity: 0.85;
    pointer-events: none;
}
.card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    color: #b37f05;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    z-index: 2;
}
.card-arrow:hover {
    background: rgba(255, 255, 255, 0.55);
}
.card-arrow-left {
    left: 10px;
}
.card-arrow-right {
    right: 10px;
}
.review-card .review-text {
    position: relative;
    z-index: 1;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 600;
    color: #1d1d1d;
    padding: 0 10px;
    word-break: break-word;
    text-align: center;
    overflow-y: auto;
    max-height: 140px;
}

@keyframes borderGlow {
    0%, 100% {
        background: linear-gradient(135deg, rgba(217, 181, 79, 0.25), rgba(247, 210, 99, 0.18), rgba(217, 181, 79, 0.25));
    }
    50% {
        background: linear-gradient(135deg, rgba(247, 210, 99, 0.28), rgba(217, 181, 79, 0.22), rgba(247, 210, 99, 0.28));
    }
}
.customer-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.btn-service,
.btn-submit {
    border-radius: 14px;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 24px;
    min-width: 150px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-service {
    background: #0b57c7;
}
.btn-submit {
    background: #0f8a3e;
}
.btn-service:hover,
.btn-submit:hover {
    transform: translateY(-1px);
}
.btn-service::after,
.btn-submit::after {
    display: none;
    margin-left: 10px;
    font-size: 18px;
}
.btn-service::after {
    content: '→';
}
.btn-submit::after {
    content: '✔';
}
.company-name {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
}
.modal-content {
    border: none;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #fff8e6 100%);
}
.modal-header {
    border-bottom: none;
    padding: 22px 24px 16px;
}
.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f1f1f;
}
.modal-header .btn-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(128, 0, 32, 0.16);
    opacity: 1;
    border: 1px solid rgba(128, 0, 32, 0.35);
    color: #800020;
}
.modal-header .btn-close::before,
.modal-header .btn-close::after {
    background-color: #800020;
}
.modal-body {
    padding: 0 20px 22px;
}
.list-group-item {
    border: 1px solid rgba(15, 138, 62, 0.15);
    border-radius: 14px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    transition: transform 0.15s ease, background-color 0.15s ease;
}
.list-group-item:hover,
.list-group-item:focus {
    background-color: rgba(15, 138, 62, 0.08);
    transform: translateX(4px);
}
.modal-backdrop.show {
    opacity: 0.65;
}
@media (max-width: 576px) {
    .customer-wrapper {
        padding: 14px 10px;
    }
    .customer-content {
        max-width: 100%;
        justify-content: space-between;
    }
    .google-logo {
        width: 120px;
        margin-bottom: 12px;
    }
    .customer-title {
        font-size: 20px;
    }
    .customer-subtitle {
        font-size: 34px;
        margin-bottom: 14px;
    }
    .review-card {
        padding: 20px 16px;
        min-height: 200px;
        max-height: 200px;
    }
    .review-card .review-text {
        font-size: 17px;
        max-height: 130px;
    }
    .customer-actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    .btn-service,
    .btn-submit {
        width: 100%;
        min-width: 0;
        padding: 14px 20px;
        font-size: 17px;
    }
    .company-name {
        font-size: 20px;
        margin-top: 8px;
    }
}
