/* =========================================================
STAYHUB PAKISTAN — BOOKING PAGE
Premium / Responsive / Dark-Light / Interactive
========================================================= */

/* =========================================================
1. BOOKING HERO
========================================================= */

.booking-hero {
position: relative;
min-height: 100vh;
width: 100%;
display: flex;
align-items: center;
overflow: hidden;
isolation: isolate;
background: #071421;
}

.booking-hero__image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
z-index: -3;
animation: bookingHeroZoom 16s ease-in-out infinite alternate;
}

.booking-hero__overlay {
position: absolute;
inset: 0;
z-index: -2;
background:
linear-gradient(
90deg,
rgba(3, 13, 24, 0.92) 0%,
rgba(3, 13, 24, 0.76) 38%,
rgba(3, 13, 24, 0.42) 70%,
rgba(3, 13, 24, 0.24) 100%
);
}

.booking-hero__content {
width: min(760px, 90%);
margin-left: max(5vw, calc((100vw - 1200px) / 2));
padding-top: 90px;
color: #fff;
animation: bookingHeroContent 1s ease-out both;
}

.booking-eyebrow {
position: relative;
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 22px;
color: #d8a83e !important;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
}

.booking-eyebrow::before {
content: "";
width: 42px;
height: 1px;
background: #d8a83e;
}

.booking-hero h1 {
max-width: 760px;
margin: 0;
color: #fff;
font-size: clamp(48px, 6vw, 82px);
line-height: 0.98;
font-weight: 700;
letter-spacing: -0.045em;
}

.booking-hero h1 span {
display: block;
margin-top: 10px;
color: #d8a83e;
}

.booking-hero__text {
max-width: 610px;
margin: 30px 0 0;
color: rgba(255, 255, 255, 0.78);
font-size: 17px;
line-height: 1.8;
}

/* HERO IMAGE ANIMATION */

@keyframes bookingHeroZoom {
0% {
transform: scale(1);
}

100% {
transform: scale(1.08);
}
}

@keyframes bookingHeroContent {
from {
opacity: 0;
transform: translateY(35px);
}

to {
opacity: 1;
transform: translateY(0);
}
}

/* =========================================================
2. BOOKING MAIN SECTION
========================================================= */

.booking-section {
position: relative;
padding-top: 100px;
padding-bottom: 110px;
background: #f5f2eb;
}

.booking-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 360px;
gap: 34px;
align-items: start;
}

/* =========================================================
3. BOOKING FORM CARD
========================================================= */

.booking-card {
position: relative;
padding: clamp(28px, 4vw, 52px);
border: 1px solid rgba(12, 30, 47, 0.08);
border-radius: 24px;
background: #fff;
box-shadow:
0 25px 70px rgba(10, 24, 40, 0.09),
0 5px 20px rgba(10, 24, 40, 0.04);
overflow: hidden;
}

.booking-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(
90deg,
#0a1d2f,
#d8a83e,
#0a1d2f
);
}

.booking-card__head {
padding-bottom: 35px;
border-bottom: 1px solid #e8e5de;
}

.booking-card__head .eyebrow {
margin-bottom: 12px;
color: #a87818;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.17em;
text-transform: uppercase;
}

.booking-card__head h2 {
margin: 0;
color: #091a2b;
font-size: clamp(28px, 3vw, 40px);
line-height: 1.15;
letter-spacing: -0.025em;
}

.booking-card__head > p:last-child {
max-width: 680px;
margin: 15px 0 0;
color: #68727b;
font-size: 15px;
line-height: 1.75;
}

/* =========================================================
4. FORM SECTIONS
========================================================= */

.booking-form {
margin-top: 8px;
}

.form-section {
padding: 34px 0;
border-bottom: 1px solid #e8e5de;
}

.form-section:last-of-type {
border-bottom: 0;
}

.form-section__title {
display: flex;
align-items: center;
gap: 13px;
margin-bottom: 24px;
color: #10243a;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.02em;
}

.form-section__title span {
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
border-radius: 50%;
background: #10243a;
color: #d8a83e;
font-size: 11px;
font-weight: 700;
}

/* =========================================================
5. FORM GRID
========================================================= */

.form-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
}

.form-group {
min-width: 0;
}

.form-group--full {
grid-column: 1 / -1;
}

/* =========================================================
6. FORM LABELS
========================================================= */

.form-group label {
display: block;
margin-bottom: 9px;
color: #273848;
font-size: 13px;
font-weight: 700;
}

.form-group label span {
color: #c58d20;
}

/* =========================================================
7. INPUTS
========================================================= */

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
border: 1px solid #d9d7d0;
border-radius: 11px;
outline: none;
background: #faf9f6;
color: #172738;
font-family: inherit;
font-size: 14px;
transition:
border-color 0.25s ease,
background 0.25s ease,
box-shadow 0.25s ease,
transform 0.25s ease;
}

.form-group input,
.form-group select {
height: 53px;
padding: 0 16px;
}

.form-group textarea {
min-height: 135px;
padding: 15px 16px;
resize: vertical;
line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
color: #9ba0a4;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
border-color: #b9a77e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: #c99732;
background: #fff;
box-shadow:
0 0 0 4px rgba(201, 151, 50, 0.12),
0 8px 20px rgba(14, 29, 43, 0.05);
transform: translateY(-1px);
}

/* =========================================================
8. CUSTOM SELECT
========================================================= */

.select-wrap {
position: relative;
}

.select-wrap::after {
content: "\f107";
position: absolute;
top: 50%;
right: 17px;
transform: translateY(-50%);
color: #68737d;
font-family: "Font Awesome 6 Free";
font-size: 12px;
font-weight: 900;
pointer-events: none;
}

.select-wrap select {
appearance: none;
-webkit-appearance: none;
padding-right: 45px;
cursor: pointer;
}

/* =========================================================
9. PAYMENT OPTIONS
========================================================= */

.payment-options {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}

.payment-option {
position: relative;
display: block;
cursor: pointer;
}

.payment-option > input {
position: absolute;
opacity: 0;
pointer-events: none;
}

.payment-option__box {
display: flex;
align-items: center;
gap: 13px;
min-height: 76px;
padding: 14px;
border: 1px solid #dedbd3;
border-radius: 13px;
background: #faf9f6;
transition:
border-color 0.25s ease,
background 0.25s ease,
transform 0.25s ease,
box-shadow 0.25s ease;
}

.payment-option__box:hover {
transform: translateY(-3px);
border-color: #caa044;
box-shadow: 0 10px 25px rgba(16, 35, 52, 0.08);
}

.payment-option__icon {
display: flex;
align-items: center;
justify-content: center;
flex: 0 0 40px;
width: 40px;
height: 40px;
border-radius: 10px;
background: #10243a;
color: #d8a83e;
}

.payment-option strong {
display: block;
color: #172738;
font-size: 13px;
}

.payment-option small {
display: block;
margin-top: 3px;
color: #7d858c;
font-size: 11px;
}

.payment-option input:checked + .payment-option__box {
border-color: #c99732;
background: #fffaf0;
box-shadow:
0 0 0 2px rgba(201, 151, 50, 0.12),
0 12px 30px rgba(16, 35, 52, 0.07);
}

.payment-option input:checked + .payment-option__box::after {
content: "\f058";
position: absolute;
top: 8px;
right: 8px;
color: #c99732;
font-family: "Font Awesome 6 Free";
font-size: 14px;
font-weight: 900;
}

/* =========================================================
10. SUBMIT AREA
========================================================= */

.booking-submit {
padding-top: 34px;
}

.booking-submit__btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 13px;
min-height: 56px;
padding: 0 28px;
border: 0;
border-radius: 11px;
cursor: pointer;
transition:
transform 0.25s ease,
box-shadow 0.25s ease,
background 0.25s ease;
}

.booking-submit__btn i {
transition: transform 0.25s ease;
}

.booking-submit__btn:hover {
transform: translateY(-3px);
box-shadow: 0 14px 30px rgba(13, 29, 45, 0.18);
}

.booking-submit__btn:hover i {
transform: translateX(5px);
}

.booking-submit > p {
display: flex;
align-items: center;
gap: 8px;
margin: 14px 0 0;
color: #858b90;
font-size: 11px;
line-height: 1.5;
}

.booking-submit > p i {
color: #5d8668;
}

/* =========================================================
11. SIDEBAR
========================================================= */

.booking-sidebar {
position: sticky;
top: 110px;
display: flex;
flex-direction: column;
gap: 20px;
}

/* =========================================================
12. INFO CARD
========================================================= */

.booking-info-card {
position: relative;
padding: 32px;
border-radius: 20px;
background: #0b1e30;
color: #fff;
box-shadow:
0 25px 50px rgba(4, 18, 30, 0.18);
overflow: hidden;
}

.booking-info-card::before {
content: "";
position: absolute;
width: 190px;
height: 190px;
top: -90px;
right: -75px;
border: 1px solid rgba(216, 168, 62, 0.22);
border-radius: 50%;
}

.booking-info-card::after {
content: "";
position: absolute;
width: 260px;
height: 260px;
bottom: -190px;
left: -130px;
border: 1px solid rgba(216, 168, 62, 0.14);
border-radius: 50%;
}

.booking-info-card__icon {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
margin-bottom: 25px;
border-radius: 14px;
background: rgba(216, 168, 62, 0.13);
color: #d8a83e;
font-size: 19px;
}

.booking-info-card .eyebrow {
position: relative;
z-index: 1;
margin-bottom: 9px;
color: #d8a83e;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.17em;
text-transform: uppercase;
}

.booking-info-card h3 {
position: relative;
z-index: 1;
margin: 0 0 26px;
color: #fff;
font-size: 27px;
line-height: 1.2;
}

/* =========================================================
13. BOOKING STEPS
========================================================= */

.booking-steps {
position: relative;
z-index: 1;
}

.booking-step {
display: grid;
grid-template-columns: 38px 1fr;
gap: 14px;
padding: 18px 0;
border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.booking-step > span {
display: flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
border: 1px solid rgba(216, 168, 62, 0.35);
border-radius: 50%;
color: #d8a83e;
font-size: 10px;
font-weight: 700;
}

.booking-step strong {
display: block;
margin-bottom: 5px;
color: #fff;
font-size: 13px;
}

.booking-step p {
margin: 0;
color: rgba(255, 255, 255, 0.59);
font-size: 12px;
line-height: 1.65;
}

/* =========================================================
14. CONTACT CARD
========================================================= */

.booking-contact-card {
padding: 30px;
border: 1px solid #e3dfd6;
border-radius: 20px;
background: #fff;
box-shadow: 0 12px 35px rgba(13, 28, 43, 0.06);
}

.booking-contact-card .eyebrow {
margin-bottom: 8px;
color: #a87818;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.17em;
text-transform: uppercase;
}

.booking-contact-card h3 {
margin: 0 0 10px;
color: #10243a;
font-size: 25px;
}

.booking-contact-card > p:not(.eyebrow) {
margin: 0 0 20px;
color: #737b82;
font-size: 13px;
line-height: 1.7;
}

.btn-block {
width: 100%;
justify-content: center;
}

/* =========================================================
15. TRUST CARD
========================================================= */

.booking-trust {
display: grid;
gap: 1px;
overflow: hidden;
border: 1px solid #e4e0d8;
border-radius: 18px;
background: #e4e0d8;
}

.booking-trust > div {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 18px;
background: #fff;
color: #394754;
font-size: 12px;
transition: background 0.25s ease;
}

.booking-trust > div:hover {
background: #faf7ef;
}

.booking-trust i {
color: #c99732;
font-size: 15px;
}

/* =========================================================
16. BOTTOM CTA
========================================================= */

.booking-bottom-cta {
padding: 80px 0;
background: #0b1e30;
}

.booking-bottom-cta__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
padding: 55px;
border: 1px solid rgba(216, 168, 62, 0.2);
border-radius: 24px;
background:
radial-gradient(
circle at 85% 20%,
rgba(216, 168, 62, 0.09),
transparent 35%
),
rgba(255, 255, 255, 0.025);
}

.booking-bottom-cta .eyebrow {
margin-bottom: 10px;
color: #d8a83e;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.17em;
text-transform: uppercase;
}

.booking-bottom-cta h2 {
margin: 0;
color: #fff;
font-size: clamp(28px, 3vw, 42px);
line-height: 1.15;
}

.booking-bottom-cta__inner > div > p:last-child {
max-width: 570px;
margin: 13px 0 0;
color: rgba(255, 255, 255, 0.62);
font-size: 14px;
line-height: 1.7;
}

/* =========================================================
17. DARK MODE
========================================================= */

[data-theme="dark"] .booking-section {
background: #07121e;
}

[data-theme="dark"] .booking-card {
border-color: rgba(255, 255, 255, 0.07);
background: #0d1d2c;
box-shadow:
0 25px 70px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .booking-card__head {
border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .booking-card__head h2 {
color: #f5f7f8;
}

[data-theme="dark"] .booking-card__head > p:last-child {
color: #8e9ba6;
}

[data-theme="dark"] .form-section {
border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .form-section__title {
color: #e9eef2;
}

[data-theme="dark"] .form-section__title span {
background: #d8a83e;
color: #0b1e30;
}

[data-theme="dark"] .form-group label {
color: #c9d0d6;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
border-color: rgba(255, 255, 255, 0.1);
background: #101f2e;
color: #edf1f4;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
color: #687783;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
border-color: #c99732;
background: #122536;
box-shadow: 0 0 0 4px rgba(201, 151, 50, 0.1);
}

[data-theme="dark"] .select-wrap::after {
color: #9ba8b2;
}

[data-theme="dark"] .payment-option__box {
border-color: rgba(255, 255, 255, 0.1);
background: #101f2e;
}

[data-theme="dark"] .payment-option__box:hover {
border-color: #b98a2f;
}

[data-theme="dark"] .payment-option strong {
color: #e9eef2;
}

[data-theme="dark"] .payment-option small {
color: #7f8d98;
}

[data-theme="dark"] .payment-option input:checked + .payment-option__box {
background: #182a35;
border-color: #c99732;
}

[data-theme="dark"] .booking-contact-card {
border-color: rgba(255, 255, 255, 0.08);
background: #0d1d2c;
}

[data-theme="dark"] .booking-contact-card h3 {
color: #f1f4f6;
}

[data-theme="dark"] .booking-contact-card > p:not(.eyebrow) {
color: #87949e;
}

[data-theme="dark"] .booking-trust {
border-color: rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .booking-trust > div {
background: #0d1d2c;
color: #b9c2c9;
}

[data-theme="dark"] .booking-trust > div:hover {
background: #122536;
}

[data-theme="dark"] .booking-submit > p {
color: #778691;
}

/* =========================================================
18. TABLET
========================================================= */

@media (max-width: 1100px) {

.booking-layout {
grid-template-columns: minmax(0, 1fr) 310px;
gap: 24px;
}

.booking-info-card,
.booking-contact-card {
padding: 26px;
}

.booking-bottom-cta__inner {
padding: 45px;
}
}

/* =========================================================
19. TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

.booking-hero {
min-height: 88vh;
}

.booking-hero__content {
margin-left: 7%;
width: 82%;
}

.booking-layout {
grid-template-columns: 1fr;
}

.booking-sidebar {
position: static;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: start;
}

.booking-info-card {
grid-column: 1 / -1;
}

.booking-trust {
height: 100%;
}

.booking-bottom-cta__inner {
align-items: flex-start;
flex-direction: column;
}
}

/* =========================================================
20. MOBILE
========================================================= */

@media (max-width: 700px) {

.booking-hero {
min-height: 82vh;
align-items: center;
}

.booking-hero__image {
object-position: 58% center;
}

.booking-hero__overlay {
background:
linear-gradient(
90deg,
rgba(3, 13, 24, 0.9),
rgba(3, 13, 24, 0.66)
);
}

.booking-hero__content {
width: 88%;
margin-left: 6%;
padding-top: 60px;
}

.booking-eyebrow {
margin-bottom: 18px;
font-size: 10px;
}

.booking-eyebrow::before {
width: 28px;
}

.booking-hero h1 {
font-size: clamp(42px, 12vw, 60px);
line-height: 1;
}

.booking-hero h1 span {
margin-top: 6px;
}

.booking-hero__text {
margin-top: 22px;
font-size: 14px;
line-height: 1.7;
}

.booking-section {
padding-top: 55px;
padding-bottom: 65px;
}

.booking-card {
padding: 25px 19px;
border-radius: 18px;
}

.booking-card__head {
padding-bottom: 25px;
}

.booking-card__head h2 {
font-size: 28px;
}

.booking-card__head > p:last-child {
font-size: 13px;
}

.form-section {
padding: 27px 0;
}

.form-grid {
grid-template-columns: 1fr;
gap: 17px;
}

.form-group--full {
grid-column: auto;
}

.form-section__title {
margin-bottom: 20px;
}

.payment-options {
grid-template-columns: 1fr;
}

.payment-option__box {
min-height: 68px;
}

.booking-submit__btn {
width: 100%;
}

.booking-sidebar {
display: flex;
}

.booking-info-card,
.booking-contact-card {
padding: 25px;
}

.booking-info-card h3 {
font-size: 24px;
}

.booking-bottom-cta {
padding: 55px 0;
}

.booking-bottom-cta__inner {
padding: 32px 23px;
border-radius: 18px;
}

.booking-bottom-cta h2 {
font-size: 29px;
}

.booking-bottom-cta__inner > div > p:last-child {
font-size: 13px;
}

.booking-bottom-cta .btn {
width: 100%;
justify-content: center;
}
}

/* =========================================================
21. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

.booking-hero {
min-height: 78vh;
}

.booking-hero__content {
width: 90%;
margin-left: 5%;
}

.booking-hero h1 {
font-size: 40px;
}

.booking-card {
padding: 23px 16px;
}

.booking-card__head h2 {
font-size: 25px;
}

.form-group input,
.form-group select {
height: 50px;
font-size: 13px;
}

.form-section__title {
font-size: 14px;
}

.booking-info-card,
.booking-contact-card {
padding: 22px;
}

.booking-step {
grid-template-columns: 34px 1fr;
gap: 11px;
}

.booking-bottom-cta__inner {
padding: 28px 20px;
}
}

/* =========================================================
22. REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

.booking-hero__image {
animation: none;
}

.booking-hero__content {
animation: none;
}

.form-group input,
.form-group select,
.form-group textarea,
.payment-option__box,
.booking-submit__btn,
.booking-submit__btn i {
transition: none;
}
}