:root {
    --primary: #33368F;
    --secondary: #5C6BC0;
    --background: #F7F8FC;
    --text: #1F2937;
    --border: #E5E7EB;
    --success: #22C55E;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.star {
    transition: 0.2s;
}

.star.hover,
.star.active {
    cursor: pointer;
    color: #ffb400;
    transform: scale(1.1);
    transition: 0.2s;
}

.hidden {
    display: none;
}

.toast {
    position: fixed;
    bottom: 20px;
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    display: none;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
}

.google-btn {
    background: #33368F;
    color: #fff;
    height: 56px;
    border-radius: 14px;
    font-weight: 600;
}

.google-btn:hover,
.google-btn:active,
.google-btn:focus {
    background: #33368F;
    color: #fff;
}

/* New */
.container {
    max-width: 900px;
    margin: auto;
}

.card {
    background: #fff;
    border: 1px solid #EEF2FF;
    border-radius: 28px;
    padding: 40px;
    margin: 30px auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    max-width: 700px;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
}

.logo {
    width: 160px;
    display: block;
}

h1 {
    text-align: center;
    color: #111827;
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 25px;
}

.rating {
    text-align: center;
    margin-bottom: 15px;
}

.rating i {
    color: #D4AF37;
    font-size: 28px;
}

.stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.stars i {
    font-size: 46px;
    color: #D7E0F8;
}

.star.hover i,
.star.active i {
    color: #ffb400;
    transform: scale(1.1);
    transition: 0.2s;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.service {
    padding: 16px;
    text-align: center;
    border: 1px solid #DCE6FF;
    border-radius: 16px;
    background: #F8FAFF;
    color: #33368F;
    font-weight: 600;
}

.form-grp label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111827;
}

.form-grp input,
.form-grp select,
.form-grp textarea {
    width: 100%;
    border: 1px solid #E5EAF7;
    border-radius: 14px;
    padding: 14px;
    font-size: 16px;
}

.form-grp textarea {
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    background: #33368F;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

@media(max-width:768px) {
    .card {
        padding: 25px;
        margin: 15px;
    }

    .logo {
        width: 130px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 28px;
    }
}