.booking-flow * {
box-sizing: border-box;
}
.booking-flow {
--bf-green: #2f5e4e;
--bf-green-deep: #1f3b36;
--bf-bg-soft: #eef5f2;
--bf-bg-price: #eef6f3;
max-width: 1300px;
margin: 0 auto 30px;
padding: 0 20px;
} .booking-flow__landmarks {
max-width: 1000px;
margin: 40px auto 0;
text-align: center;
color: var(--bf-green);
}
.booking-flow__landmarks-title {
font-size: 1.6rem;
font-weight: bold;
margin-bottom: 30px;
}
.booking-flow__landmarks-text {
font-size: 1rem;
line-height: 1.8;
} .booking-flow__tradition {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: stretch;
margin: 20px auto 40px;
padding: 40px 20px;
background-color: var(--bf-bg-soft);
border-radius: 14px;
gap: 30px;
}
.booking-flow__tradition-media {
flex: 1 1 60%;
aspect-ratio: 4 / 3;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.booking-flow__tradition-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.booking-flow__tradition-content {
flex: 1 1 40%;
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 32px;
position: relative;
}
.booking-flow__tradition-content::before{
content:"";
position:absolute;
left:0;
top:50px;
bottom:50px;
width:4px;
background:var(--bf-green);
border-radius:2px;
}
.booking-flow__tradition-title {
font-size: 1.6rem;
color: var(--bf-green);
font-weight: bold;
margin-bottom: 12px;
}
.booking-flow__tradition-text {
font-size: 1rem;
line-height: 1.8;
color: #333;
margin: 0;
}
@media (max-width: 768px) {
.booking-flow__tradition {
flex-direction: column;
}
.booking-flow__tradition-content {
padding-left: 0;
padding-top: 24px;
}
.booking-flow__tradition-content::before {
left: 0;
top: 0;
width: 230px; height: 4px; bottom: auto;
}
} .booking-flow__prices-heading {
font-size: 1.8rem;
color: var(--bf-green);
font-weight: bold;
text-align: center;
margin-top: 50px;
margin-bottom: 30px;
}
.booking-flow__price-card {
max-width: 860px;
margin: 18px auto 26px;
padding: 16px;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 14px;
background: #ffffff;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.booking-flow__price-card-header {
display: flex;
align-items: baseline;
gap: 10px;
flex-wrap: wrap;
}
.booking-flow__price-card-title {
margin: 0;
font-size: 18px;
line-height: 1.2;
color: var(--bf-green-deep);
}
.booking-flow__price-card-note {
font-size: 13px;
color: rgba(31, 59, 54, 0.75);
}
.booking-flow__price-card-sub {
margin-top: 10px;
font-size: 13px;
color: rgba(31, 59, 54, 0.85);
}
.booking-flow__price-list {
list-style: none;
padding: 0;
margin: 12px 0 0;
display: grid;
gap: 10px;
}
.booking-flow__price-item {
display: flex;
justify-content: space-between;
gap: 12px;
padding: 10px 12px;
background: var(--bf-bg-price);
border-radius: 12px;
}
.booking-flow__price-name {
font-weight: 600;
color: var(--bf-green-deep);
}
.booking-flow__price-duration {
font-weight: 500;
opacity: 0.8;
}
.booking-flow__price-value {
font-weight: 700;
color: var(--bf-green-deep);
}
.booking-flow__price-footnote {
margin-top: 12px;
font-size: 12.5px;
color: rgba(31, 59, 54, 0.75);
line-height: 1.5;
} .booking-flow__map {
max-width: 860px;
margin: 30px auto 0;
padding: 16px 18px;
background: var(--bf-bg-price);
border-radius: 12px;
text-align: center;
border: 1px solid rgba(31, 59, 54, 0.1);
}
.booking-flow__map-link {
font-size: 15px;
line-height: 1.4;
margin: 0;
}
.booking-flow__map-link a {
color: var(--bf-green-deep);
font-weight: 700;
text-decoration: none;
}
.booking-flow__map-distance {
margin: 10px 0 0;
font-size: 12.5px;
color: rgba(31, 59, 54, 0.8);
line-height: 1.6;
} .booking-flow__top3 {
text-align: center;
max-width: 900px;
margin: 48px auto 40px;
padding: 0 20px;
font-size: 1rem;
color: var(--bf-green);
line-height: 1.7;
}
.booking-flow__top3-title {
font-weight: bold;
font-size: 1.2rem;
margin-bottom: 16px;
}
.booking-flow__top3-item {
text-align: left;
max-width: 700px;
margin: 0 auto 18px;
} .booking-flow__buttons {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
max-width: 900px;
margin: 0 auto 36px;
}
.booking-flow__button {
display: block;
text-align: center;
padding: 14px 10px;
background: var(--bf-green-deep);
color: #ffffff;
text-decoration: none;
font-weight: 700;
border-radius: 10px;
font-size: 0.9rem;
transition: filter 0.2s ease;
}
.booking-flow__button:hover {
filter: brightness(1.08);
}
.booking-flow__button--muted {
background: #d99a2b;
}
@media (max-width: 600px) {
.booking-flow__buttons {
grid-template-columns: repeat(2, 1fr);
}
} .booking-flow__whatsapp {
margin: 0 auto;
text-align: center;
}
.booking-flow__whatsapp-button {
display: block;
width: 100%;
max-width: 520px;
margin: 0 auto;
padding: 14px 18px;
background: #25d366;
color: #ffffff;
text-decoration: none;
font-weight: 700;
border-radius: 10px;
line-height: 1.2;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.booking-flow__whatsapp-button:hover {
filter: brightness(0.95);
}
.booking-flow__note{
max-width:560px;
margin:20px auto 0;
font-size:18px;
line-height:1.8;
color:#5f665f;
text-align:center;
position: relative;
padding-top: 24px;
}
.booking-flow__note::before{
content: "";
display: block;
width: 70px;
height: 2px;
margin: 0 auto 18px;
background: rgba(31,59,54,.18);
}
.booking-flow__note-highlight{
display:block;
margin-top:18px;
font-size:18px;
font-weight:600;
color:#1f3b36;
letter-spacing:.02em;
}