/* =========================================================
   AS MASSAGE
   BOOKING PAGE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #17283a;
    --green: #315274;
    --tosca: #4568b4;
    --lime: #b9ee45;
    --cream: #f6faf5;
    --white: #ffffff;
    --text: #262e35;
    --muted: #787f85;
    --border: #dce4e8;
    --shadow: 0 20px 60px rgba(23, 40, 58, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    width: min(1180px, 92%);
    min-height: 76px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--dark);
    color: var(--lime);
    font-size: 13px;
    font-weight: 900;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    color: var(--dark);
    font-size: 15px;
    letter-spacing: 2px;
}

.logo-text small {
    margin-top: 5px;
    color: var(--tosca);
    font-size: 8px;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    position: relative;
    color: #606870;
    font-size: 13px;
    font-weight: 600;
    transition: .25s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--dark);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 3px;
    border-radius: 10px;
    background: var(--lime);
}

.nav-booking {
    padding: 11px 19px;
    border-radius: 30px;
    background: var(--lime);
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    transition: .25s;
}

.nav-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 238, 69, .3);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--dark);
    font-size: 25px;
}


/* =========================================================
   HERO
   ========================================================= */

.booking-hero {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    display: flex;
    align-items: center;
    background: linear-gradient( 135deg, #16283a, #2d4a66 55%, #4669b5);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 55px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.hero-content h1 {
    max-width: 650px;
    color: white;
    font-size: clamp(45px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -2px;
}

.hero-content h1 em {
    color: var(--lime);
    font-style: normal;
}

.hero-content p {
    margin-top: 18px;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
}

.hero-circle-one {
    width: 450px;
    height: 450px;
    right: -160px;
    top: -250px;
    background: rgba(185, 238, 69, .2);
}

.hero-circle-two {
    width: 300px;
    height: 300px;
    left: -130px;
    bottom: -180px;
    background: rgba(69, 104, 180, .2);
}


/* =========================================================
   BOOKING SECTION
   ========================================================= */

.booking-section {
    padding: 70px 0 90px;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, .8fr);
    gap: 30px;
    align-items: start;
}


/* =========================================================
   BOOKING CARD
   ========================================================= */

.booking-card {
    padding: 38px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.booking-heading {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding-bottom: 27px;
    border-bottom: 1px solid var(--border);
}

.heading-number {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #e5edf6;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.booking-heading span {
    color: var(--tosca);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.booking-heading h2 {
    margin-top: 4px;
    color: var(--dark);
    font-size: 29px;
    line-height: 1.2;
}

.booking-heading p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}


/* =========================================================
   FORM SECTION
   ========================================================= */

.form-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: 0;
}

.section-title {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.section-title>span {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    font-size: 10px;
    font-weight: 800;
}

.section-title h3 {
    color: var(--dark);
    font-size: 18px;
}

.section-title p {
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
    margin-bottom: 17px;
}


/* =========================================================
   INPUT
   ========================================================= */

.input-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.input-group label {
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
}

.input-group label small {
    color: #9ca3a8;
    font-weight: 400;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fbfdfb;
    color: var(--text);
    outline: none;
    padding: 12px 14px;
    font-size: 13px;
    transition: .2s;
}

.input-group input,
.input-group select {
    min-height: 47px;
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #a5abaf;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--tosca);
    background: white;
    box-shadow: 0 0 0 4px rgba(69, 104, 180, .1);
}

.input-group select:disabled {
    cursor: not-allowed;
    opacity: .65;
}


/* =========================================================
   PRICE BOX
   ========================================================= */

.price-box {
    min-height: 70px;
    padding: 12px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid #cdd9eb;
    border-radius: 13px;
    background: linear-gradient( 135deg, #eff4fa, #e4ecf7);
}

.price-box span {
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.price-box strong {
    color: var(--dark);
    font-size: 20px;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.submit-area {
    padding-top: 27px;
}

.submit-btn {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px 0 22px;
    border: 0;
    border-radius: 15px;
    background: var(--dark);
    color: white;
    font-size: 13px;
    font-weight: 800;
    transition: .25s;
}

.submit-btn b {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    font-size: 17px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(23, 40, 58, .2);
}

.submit-area p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}


/* =========================================================
   SUMMARY
   ========================================================= */

.summary-card {
    position: sticky;
    top: 100px;
    padding: 29px;
    border-radius: 25px;
    background: var(--dark);
    color: white;
    box-shadow: 0 25px 60px rgba(23, 40, 58, .2);
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-header span {
    color: var(--lime);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.summary-header strong {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(185, 238, 69, .12);
    color: var(--lime);
}

.summary-card h2 {
    margin-top: 20px;
    font-size: 29px;
    line-height: 1.1;
}

.summary-card h2 em {
    display: block;
    color: var(--lime);
    font-style: normal;
}

.summary-empty {
    margin-top: 23px;
    padding: 21px;
    border: 1px dashed rgba(255, 255, 255, .2);
    border-radius: 15px;
}

.summary-empty span {
    color: var(--lime);
    font-size: 11px;
    font-weight: 900;
}

.summary-empty p {
    margin-top: 7px;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}


/* =========================================================
   SUMMARY ITEMS
   ========================================================= */

.summary-list {
    margin-top: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.summary-item span {
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
}

.summary-item strong {
    max-width: 190px;
    color: white;
    font-size: 12px;
    text-align: right;
    overflow-wrap: anywhere;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 15px;
    border-radius: 13px;
    background: rgba(185, 238, 69, .1);
}

.summary-total span {
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
}

.summary-total strong {
    color: var(--lime);
    font-size: 19px;
}


/* =========================================================
   SUMMARY INFO
   ========================================================= */

.summary-info {
    display: flex;
    gap: 9px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.summary-info span {
    color: var(--lime);
}

.summary-info p {
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 45px 0 20px;
    background: #111e2c;
    color: white;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px;
    padding-bottom: 30px;
}

.footer-inner>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-inner>div>strong {
    font-size: 17px;
}

.footer-inner p {
    margin-top: 8px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
}

.footer-links {
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-label {
    margin-bottom: 5px;
    color: var(--lime);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-bottom {
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .35);
    font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 5% 20px;
        background: white;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
    }
    .main-nav.show {
        display: flex;
    }
    .main-nav a {
        padding: 12px 0;
    }
    .main-nav a.active::after {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .summary-card {
        position: static;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .nav-container {
        min-height: 68px;
    }
    .nav-booking {
        display: none;
    }
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    .logo-text strong {
        font-size: 13px;
    }
    .booking-hero {
        min-height: 280px;
    }
    .hero-content {
        padding: 45px 0;
    }
    .hero-content h1 {
        font-size: 45px;
    }
    .hero-content p {
        font-size: 13px;
    }
    .booking-section {
        padding: 35px 0 60px;
    }
    .booking-card {
        padding: 22px 18px;
        border-radius: 20px;
    }
    .booking-heading h2 {
        font-size: 25px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .summary-card {
        padding: 23px 20px;
        border-radius: 20px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 5px;
    }
}