* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: #f4f7fb;
    color: #182033;
}

.topbar {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #e8edf5;
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #1464f4;
}

.tagline {
    color: #7b8496;
    font-size: 14px;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}

.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero > div {
    max-width: 720px;
}

.badge {
    display: inline-block;
    padding: 9px 15px;
    border-radius: 100px;
    background: #e9f1ff;
    color: #1464f4;
    font-size: 14px;
    font-weight: 700;
}

.hero h1 {
    margin: 20px 0;
    font-size: clamp(45px, 7vw, 76px);
    line-height: .98;
    letter-spacing: -3px;
}

.hero h1 span {
    color: #1464f4;
}

.hero p {
    font-size: 20px;
    color: #697386;
    line-height: 1.6;
    max-width: 620px;
}

.primary-button,
.submit-button {
    display: inline-block;
    margin-top: 22px;
    background: #1464f4;
    color: white;
    border: 0;
    padding: 16px 25px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: .2s;
}

.primary-button:hover,
.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(20,100,244,.25);
}

.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 28px;
}

.services {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #e7ecf3;
    box-shadow: 0 10px 30px rgba(34,52,84,.05);
}

.service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #eaf2ff;
    color: #1464f4;
    border-radius: 12px;
    font-weight: 800;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.service-card p {
    color: #8590a4;
}

.price {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 800;
}

.booking-section {
    padding-bottom: 100px;
}

.booking-card {
    max-width: 720px;
    margin: auto;
    background: white;
    padding: 38px;
    border-radius: 26px;
    box-shadow: 0 20px 70px rgba(20,47,93,.1);
}

.booking-header span {
    color: #1464f4;
    font-weight: 700;
}

.booking-header h2 {
    margin-top: 8px;
}

form {
    display: grid;
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 650;
}

input,
select {
    width: 100%;
    border: 1px solid #dfe5ee;
    border-radius: 13px;
    padding: 15px;
    background: #f9fbfe;
    font-size: 16px;
    outline: none;
}

input:focus,
select:focus {
    border-color: #1464f4;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-button {
    width: 100%;
}

footer {
    text-align: center;
    padding: 35px;
    color: #8791a2;
}

.success-wrapper {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
}

.success-card {
    width: min(540px,100%);
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 20px 70px rgba(20,47,93,.1);
    text-align: center;
}

.success-icon {
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e8f7ee;
    color: #18a558;
    font-size: 30px;
    font-weight: 800;
}

.success-card h1 {
    margin-bottom: 5px;
}

.success-subtitle {
    color: #7b8496;
}

.booking-info {
    margin: 30px 0;
    display: grid;
    gap: 12px;
    text-align: left;
}

.booking-info div {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #eef1f5;
}

.booking-info span {
    color: #8791a2;
}

@media(max-width:700px) {

    .tagline {
        display:none;
    }

    .hero {
        min-height: auto;
        padding: 70px 0;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 24px;
    }
}
