* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
scroll-behavior: smooth;
scroll-padding-top: 72px;
font-size: 17px;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}
body {
height: 100%;
font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: #111111;
background-color: #ffffff;
font-size: 1.25rem;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
color: inherit;
}
button {
font-family: inherit;
}
:root {
--taxi-yellow: #f9c934;
--taxi-yellow-dark: #d9a816;
--taxi-black: #111111;
--taxi-grey: #f4f4f4;
--taxi-border: #e2e2e2;
--shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.16);
--radius-lg: 18px;
--radius-md: 12px;
--radius-pill: 999px;
}
#preloader {
position: fixed;
inset: 0;
background: #000000;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader .preloader-inner {
 text-align: center;
}
#preloader img {
 width: 180px;
 height: auto;
 animation: float 1.8s ease-in-out infinite;
 display: block;
 margin: 0 auto;
}
#preloader .preloader-text {
 margin-top: 0.9rem;
 font-size: 0.95rem;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: rgba(255, 255, 255, 0.86);
}
#preloader.hidden {
opacity: 0;
visibility: hidden;
}
.redirect-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.78);
display: none;
align-items: center;
justify-content: center;
z-index: 9999;
}
.redirect-overlay.is-visible {
display: flex;
}
.redirect-box {
display: inline-flex;
align-items: center;
gap: 0.9rem;
padding: 1.1rem 1.6rem;
border-radius: var(--radius-lg);
background: #000000;
border: 1px solid rgba(249, 201, 52, 0.5);
box-shadow: 0 22px 52px rgba(0, 0, 0, 0.9);
color: #ffffff;
font-size: 0.9rem;
}
.redirect-spinner {
width: 20px;
height: 20px;
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.25);
border-top-color: #f9c934;
animation: redirectSpin 0.7s linear infinite;
}
.redirect-text {
font-weight: 500;
letter-spacing: 0.05em;
text-transform: uppercase;
}
@keyframes redirectSpin {
to {
transform: rotate(360deg);
}
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
@keyframes availabilityPulse {
0% {
transform: scale(1);
box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.45);
}
60% {
transform: scale(1.18);
box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
}
100% {
transform: scale(1);
box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
}
}
@keyframes whatsappGlow {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.04);
}
}
.review-fade-in {
animation: reviewFadeIn 0.45s ease-out;
}
.gallery-fade-in {
animation: reviewFadeIn 0.45s ease-out;
}
@keyframes reviewFadeIn {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.page {
min-height: 100vh;
display: flex;
flex-direction: column;
background: radial-gradient(circle at top left, rgba(249, 201, 52, 0.12), transparent 55%), radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.08), transparent 60%);
}
main {
scroll-snap-type: y proximity;
}
.container {
width: 100%;
max-width: 1160px;
margin: 0 auto;
padding: 0 1.5rem;
}
.header {
position: sticky;
top: 0;
z-index: 90;
backdrop-filter: none;
background: #000000;
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.header-inner {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 0.75rem 0;
gap: 1rem;
}
.brand {
display: flex;
align-items: center;
gap: 0.65rem;
}
.brand-logo-wrap {
width: 170px;
height: 55px;
border-radius: 0;
background: transparent;
padding: 0;
box-shadow: none;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.brand-logo-link {
display: inline-block;
}
.brand-logo {
width: 100%;
height: 100%;
object-fit: contain;
}
.brand-text {
display: flex;
flex-direction: column;
gap: 0.05rem;
}
.brand-name {
font-size: 1rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #ffffff;
}
.brand-tagline {
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.7);
}
.nav {
display: flex;
align-items: center;
gap: 1.25rem;
margin-left: auto;
margin-right: 1.5rem;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 0.35rem;
font-size: 0.86rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.8);
padding: 0.35rem 0.75rem;
border-radius: 999px;
transition: color 0.25s ease, background 0.25s ease, transform 0.15s ease;
}
.nav-link-icon {
font-size: 1.35rem;
line-height: 1;
color: var(--taxi-yellow);
}
.nav-link:hover {
color: #111111;
background: var(--taxi-yellow);
transform: translateY(-1px);
}
.nav-link:hover .nav-link-icon {
color: #111111;
}
.nav-cta {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.55rem 1.3rem;
font-size: 0.86rem;
font-weight: 600;
letter-spacing: 0.09em;
text-transform: uppercase;
border-radius: 999px;
border: 1px solid rgba(249, 201, 52, 0.2);
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
color: #111111;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.44);
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
animation: whatsappGlow 2.2s ease-in-out infinite;
}
.nav-cta-icon {
width: 20px;
height: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.nav-cta-icon img {
width: 100%;
height: 100%;
object-fit: contain;
}
.nav-lang {
position: relative;
display: inline-flex;
align-items: center;
margin-left: 0.75rem;
margin-right: 1.5rem;
}
.nav-lang-toggle {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.3rem 0.7rem;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.18);
background: rgba(0, 0, 0, 0.4);
color: #ffffff;
font-size: 0.78rem;
cursor: pointer;
}
.nav-lang-flag {
display: inline-block;
width: 20px;
height: 14px;
border-radius: 2px;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
background-size: cover;
background-position: center;
flex-shrink: 0;
}
.nav-lang-flag-en {
background-image: url("../img/usa.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.nav-lang-flag-de {
background: linear-gradient(
  to bottom,
  #000000 0,
  #000000 33%,
  #dd0000 33%,
  #dd0000 66%,
  #ffce00 66%,
  #ffce00 100%
);
}
.nav-lang-flag-fr {
background: linear-gradient(
  90deg,
  #0055a4 0,
  #0055a4 33%,
  #ffffff 33%,
  #ffffff 66%,
  #ef4135 66%,
  #ef4135 100%
);
}
.nav-lang-arrow {
font-size: 1rem;
}
.nav-lang-menu {
position: absolute;
top: 120%;
right: 0;
min-width: 150px;
border-radius: 12px;
background: #111111;
border: 1px solid rgba(255, 255, 255, 0.18);
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
padding: 0.35rem 0.25rem;
display: none;
z-index: 50;
}
.nav-lang-menu.is-open {
display: block;
}
.nav-lang-option {
width: 100%;
display: flex;
align-items: center;
gap: 0.4rem;
padding: 0.35rem 0.6rem;
background: transparent;
border: none;
color: #ffffff;
font-size: 0.8rem;
cursor: pointer;
border-radius: 999px;
}
.nav-lang-option:hover {
background: rgba(249, 201, 52, 0.16);
}
.nav-cta:hover {
transform: translateY(-1px);
box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
background: linear-gradient(135deg, var(--taxi-yellow-dark), var(--taxi-yellow));
animation: none;
}
.menu-toggle {
display: none;
background: none;
border: none;
color: #ffffff;
font-size: 1.4rem;
}
.hero {
padding: 3.25rem 0 3.2rem;
background: radial-gradient(circle at left, rgba(249, 201, 52, 0.32), transparent 70%);
color: #ffffff;
scroll-snap-align: start;
}
.hero-inner {
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
gap: 2.75rem;
align-items: flex-start;
}
.hero-copy {
max-width: 620px;
}
.hero-label {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.25rem 0.85rem;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.16);
background: #000000;
backdrop-filter: blur(12px);
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 1rem;
}
.hero-label-pill {
display: inline-flex;
align-items: center;
justify-content: center;
width: 18px;
height: 18px;
border-radius: 4px;
background: rgba(0, 0, 0, 0.7);
color: var(--taxi-yellow);
font-size: 1rem;
}
.hero-title {
font-size: 2.7rem;
line-height: 1.1;
letter-spacing: 0.02em;
margin-bottom: 1rem;
color: #000000;
font-family: "Barlow Condensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hero-title span {
color: var(--taxi-yellow);
}
.hero-subtitle {
font-size: 0.98rem;
line-height: 1.6;
color: #444444;
max-width: 30rem;
margin-bottom: 1.75rem;
}
.hero-badges {
display: flex;
flex-wrap: wrap;
gap: 0.9rem;
margin-bottom: 1.9rem;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.35rem 0.9rem;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.16);
background: #000000;
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.88);
}
.hero-badge-icon {
font-size: 1.3rem;
line-height: 1;
color: var(--taxi-yellow);
}
.hero-cta-row {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 1rem;
margin-bottom: 1.6rem;
}
.btn-whatsapp {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.9rem 1.8rem;
border-radius: 999px;
border: none;
cursor: pointer;
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
background: linear-gradient(135deg, #22c55e, #16a34a);
color: #ffffff;
box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.hero .btn-whatsapp {
animation: whatsappGlow 1.8s ease-in-out infinite;
}
.booking-form .btn-whatsapp.booking-submit {
animation: whatsappGlow 2.2s ease-in-out infinite;
}
.btn-whatsapp-icon {
width: 20px;
height: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-whatsapp-icon img {
width: 100%;
height: 100%;
object-fit: contain;
}
.btn-whatsapp:hover {
transform: translateY(-2px);
box-shadow: 0 22px 45px rgba(0, 0, 0, 0.75);
background: linear-gradient(135deg, #16a34a, #15803d);
animation: none;
}
.booking-form .btn-whatsapp.booking-submit:hover,
.review-form .btn-whatsapp.review-submit:hover,
.review-add .btn-whatsapp.review-add-button:hover {
background: linear-gradient(135deg, #fff3b0, var(--taxi-yellow));
box-shadow: 0 24px 52px rgba(0, 0, 0, 0.9);
color: #111111;
transform: translateY(-3px);
}
.hero-phone {
font-size: 0.86rem;
color: rgba(255, 255, 255, 0.82);
}
.hero-phone strong {
font-weight: 600;
letter-spacing: 0.05em;
}
.hero-meta {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.7);
}
.hero-meta-item span {
display: block;
font-weight: 600;
font-size: 0.85rem;
color: #ffffff;
}
.hero-media-wrap {
position: relative;
}
.hero-card {
position: relative;
border-radius: 32px;
overflow: hidden;
background: radial-gradient(circle at top left, #f9c934, #111111);
box-shadow: var(--shadow-soft);
}
.hero-card-image {
position: relative;
overflow: hidden;
aspect-ratio: 16 / 9;
}
.hero-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
 transform: scale(1.02);
 transition: transform 0.6s ease;
}
.hero-card-image img.is-zooming {
 transform: scale(1.07);
}
.floating-whatsapp-btn {
position: fixed;
right: 1.5rem;
bottom: 1.5rem;
z-index: 120;
text-decoration: none;
}
.floating-instagram-btn,
.floating-facebook-btn {
position: fixed;
right: 1.5rem;
z-index: 120;
text-decoration: none;
}
.floating-booking-btn {
position: fixed;
right: 1.5rem;
bottom: 14.7rem;
z-index: 120;
border: none;
background: transparent;
padding: 0;
cursor: pointer;
}
.floating-instagram-btn {
bottom: 5.9rem;
}
.floating-facebook-btn {
bottom: 10.3rem;
}
.floating-whatsapp-inner {
display: flex;
align-items: center;
justify-content: flex-start;
width: 52px;
height: 52px;
border: none;
border-radius: 50%;
cursor: pointer;
position: relative;
overflow: hidden;
transition-duration: 0.3s;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
background-color: #00d757;
}
.floating-booking-inner {
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
}
.floating-instagram-btn .floating-whatsapp-inner {
background: radial-gradient(circle at 30% 30%, #fdf497 0, #fdf497 15%, #fd5949 45%, #d6249f 65%, #285aeb 95%);
}
.floating-facebook-btn .floating-whatsapp-inner {
background-color: #1877f2;
}
.floating-whatsapp-sign {
width: 100%;
transition-duration: 0.3s;
display: flex;
align-items: center;
justify-content: center;
}
.floating-whatsapp-svg {
width: 25px;
height: 25px;
}
.floating-whatsapp-btn .floating-whatsapp-svg path,
.floating-facebook-btn .floating-whatsapp-svg path {
fill: #ffffff;
}
.floating-instagram-btn .insta-outline,
.floating-instagram-btn .insta-lens {
fill: none;
stroke: #ffffff;
stroke-width: 1.3;
}
.floating-instagram-btn .insta-dot {
fill: #ffffff;
}
.floating-whatsapp-text {
position: absolute;
right: 0%;
width: 0%;
opacity: 0;
color: #ffffff;
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
transition-duration: 0.3s;
}
.floating-booking-btn .floating-whatsapp-text {
color: #111111;
white-space: nowrap;
font-size: 0.78rem;
letter-spacing: 0.04em;
}
.floating-whatsapp-inner:hover {
width: 150px;
border-radius: 40px;
}
.floating-whatsapp-inner:hover .floating-whatsapp-sign {
width: 30%;
padding-left: 10px;
}
.floating-whatsapp-inner:hover .floating-whatsapp-text {
opacity: 1;
width: 70%;
padding-right: 10px;
}
.floating-booking-btn .floating-whatsapp-inner:hover {
width: 190px;
}
.floating-booking-btn .floating-whatsapp-inner:hover .floating-whatsapp-sign {
width: 26%;
}
.floating-booking-btn .floating-whatsapp-inner:hover .floating-whatsapp-text {
width: 74%;
}
.floating-whatsapp-inner:active {
transform: translate(2px, 2px);
}
.hero-card-gradient {
position: absolute;
inset: 0;
background: linear-gradient(to top right, rgba(17, 17, 17, 0.9), transparent 60%);
}
.hero-card-overlay {
position: absolute;
inset: 0;
padding: 1.4rem 1.3rem 1.9rem;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.hero-card-top {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}
.hero-chip {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.5rem 1.05rem;
border-radius: 999px;
background: rgba(17, 17, 17, 0.8);
border: 1px solid rgba(255, 255, 255, 0.22);
font-size: 0.82rem;
color: rgba(255, 255, 255, 0.88);
white-space: nowrap;
flex-shrink: 0;
}
.hero-badge-large {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.5rem 1.05rem;
border-radius: 999px;
background: rgba(249, 201, 52, 0.92);
color: #111111;
font-size: 0.8rem;
font-weight: 600;
white-space: nowrap;
flex-shrink: 0;
}
.hero-chip-icon {
font-size: 1.15rem;
line-height: 1;
color: var(--taxi-yellow);
}
.hero-badge-large .hero-chip-icon {
color: #111111;
}
.hero-card-bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.8rem;
}
.hero-distance {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.82);
}
.hero-distance-icon {
 font-size: 1rem;
 line-height: 1;
 color: var(--taxi-yellow);
 margin-right: 0.25rem;
 vertical-align: middle;
}
.hero-distance span {
font-size: 1.4rem;
font-weight: 600;
color: var(--taxi-yellow);
}
.hero-availability {
display: flex;
align-items: center;
gap: 0.6rem;
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.85);
flex-wrap: wrap;
max-width: 100%;
}
.hero-availability-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: #22c55e;
box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.45);
animation: availabilityPulse 1.4s ease-in-out infinite;
}
.hero-floating-card {
position: relative;
margin: 1.6rem auto 0;
max-width: 460px;
padding: 1.05rem 1.1rem 1.25rem;
border-radius: 18px;
background: rgba(17, 17, 17, 0.96);
backdrop-filter: blur(16px);
border: 1px solid rgba(249, 201, 52, 0.32);
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 0.9rem;
color: #ffffff;
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}
.hero-floating-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
background: radial-gradient(
 circle at top left,
 rgba(249, 201, 52, 0.18),
 transparent 70%
);
opacity: 0.85;
}
.hero-floating-card::after {
content: "";
position: absolute;
width: 140px;
height: 90px;
background: rgba(249, 201, 52, 0.35);
filter: blur(36px);
top: -32%;
left: -28%;
pointer-events: none;
opacity: 0.6;
}
.hero-floating-main {
display: flex;
flex-direction: column;
gap: 0.1rem;
font-size: 0.8rem;
width: 100%;
}
.hero-floating-title {
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
}
.hero-floating-title span {
 font-size: 0.92rem;
 font-weight: 600;
}
.hero-floating-icon {
 font-size: 1.25rem;
 line-height: 1;
 color: var(--taxi-yellow);
}
.hero-floating-price {
font-size: 0.76rem;
color: rgba(255, 255, 255, 0.74);
display: inline-flex;
align-items: center;
gap: 0.25rem;
}
.hero-floating-line {
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.82);
display: inline-flex;
align-items: center;
gap: 0.25rem;
margin-bottom: 0.06rem;
}
.hero-floating-line-icon {
font-size: 1rem;
line-height: 1;
color: var(--taxi-yellow);
}
.hero-floating-tag {
display: inline-flex;
align-items: center;
gap: 0.35rem;
font-size: 0.82rem;
padding: 0.35rem 0.8rem;
border-radius: 999px;
background: rgba(249, 201, 52, 0.16);
border: 1px solid rgba(249, 201, 52, 0.6);
color: rgba(255, 255, 255, 0.9);
cursor: pointer;
 white-space: nowrap;
 flex-shrink: 0;
 margin-top: 0.8rem;
 align-self: center;
transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
animation: whatsappGlow 2.2s ease-in-out infinite;
}
.hero-floating-tag:hover {
background: rgba(249, 201, 52, 0.26);
box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
transform: translateY(-1px);
animation: none;
}
.hero-floating-tag:active {
transform: translateY(0);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}
.section {
padding: 3rem 0;
scroll-snap-align: start;
}
#about {
padding-top: 1.5rem;
}
#gallery {
padding-top: 1.5rem;
}
#contact {
padding-top: 1.5rem;
padding-bottom: 1.8rem;
}
#about {
padding-top: 1.5rem;
}
.section-heading {
display: flex;
flex-direction: column;
gap: 0.6rem;
margin-bottom: 2rem;
}
.section-kicker {
display: inline-flex;
align-items: center;
gap: 0.35rem;
font-size: 0.78rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: #777777;
}
.section-kicker-icon {
font-size: 1.15rem;
line-height: 1;
color: var(--taxi-yellow);
}
.section-title {
font-size: 1.6rem;
letter-spacing: 0.03em;
}
.section-title span {
color: var(--taxi-yellow);
}
.section-subtitle {
font-size: 0.95rem;
color: #555555;
max-width: 34rem;
}
.split {
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
gap: 2.5rem;
align-items: start;
}
.card {
background: #ffffff;
border-radius: var(--radius-lg);
border: 1px solid var(--taxi-border);
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
padding: 1.6rem 1.7rem;
}
.about-highlight {
font-size: 1rem;
font-weight: 500;
margin-bottom: 1rem;
}
.about-highlight-icon {
 font-size: 1.4rem;
 line-height: 1;
 color: var(--taxi-yellow);
 margin-right: 0.45rem;
 vertical-align: middle;
}
.about-highlight span {
 vertical-align: middle;
}
.about-text {
font-size: 0.96rem;
line-height: 1.7;
color: #444444;
margin-bottom: 1.6rem;
}
.feature-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.1rem 1.5rem;
margin-bottom: 1.6rem;
}
.feature-item {
display: flex;
align-items: flex-start;
gap: 0.6rem;
}
.feature-icon {
width: 26px;
height: 26px;
border-radius: 999px;
background: rgba(249, 201, 52, 0.12);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: var(--taxi-yellow);
}
.feature-content {
font-size: 0.88rem;
color: #444444;
}
.feature-content strong {
display: block;
font-size: 0.9rem;
margin-bottom: 0.1rem;
}
.feature-content-line {
display: flex;
align-items: flex-start;
gap: 0.35rem;
}
.feature-content-icon {
font-size: 1.1rem;
line-height: 1.2;
color: var(--taxi-yellow);
margin-top: 0.05rem;
}
.services-divers-hero {
background: #ffffff;
}
.services-divers-hero#services {
display: none;
}
.services-divers-hero#services:target {
display: block;
}
.services-divers-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.5rem;
margin-top: 1.6rem;
}
.services-divers-card {
background: #111111;
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid rgba(249, 201, 52, 0.28);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
display: flex;
flex-direction: column;
}
.services-divers-image {
overflow: hidden;
}
.services-divers-image img {
display: block;
width: 100%;
height: auto;
object-fit: cover;
transform: scale(1.02);
transition: transform 4s ease;
}
.services-divers-card:hover .services-divers-image img {
transform: scale(1.08);
}
.services-divers-body {
padding: 1.4rem 1.5rem 1.6rem;
color: #ffffff;
}
.services-divers-title {
font-size: 1.25rem;
margin-bottom: 0.6rem;
}
.services-divers-text {
font-size: 0.95rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.86);
margin-bottom: 1.1rem;
}
.services-divers-btn {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.55rem 1.1rem;
border-radius: 999px;
border: none;
background: var(--taxi-yellow);
color: #111111;
font-weight: 600;
font-size: 0.9rem;
text-decoration: none;
}
.services-divers-btn:hover {
background: #ffdd55;
color: #000000;
}
.services-divers-btn-icon {
font-size: 1.2rem;
}
.hero-secondary-btn {
display: inline-flex;
align-items: center;
gap: 0.35rem;
padding: 0.52rem 1.1rem;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.28);
background: rgba(0, 0, 0, 0.72);
color: #ffffff;
font-size: 0.82rem;
text-decoration: none;
}
.hero-secondary-btn:hover {
background: rgba(0, 0, 0, 0.9);
border-color: var(--taxi-yellow);
color: #ffffff;
}
.hero-secondary-icon {
font-size: 1.2rem;
}
.about-location-visual {
margin-top: 2.2rem;
display: flex;
justify-content: center;
}
.about-location-visual img {
max-width: 300px;
width: 100%;
height: auto;
display: block;
transform-origin: center bottom;
animation: aboutLocationZoom 3.2s ease-in-out infinite;
}
@keyframes aboutLocationZoom {
0% {
transform: scale(1);
}
50% {
transform: scale(1.06);
}
100% {
transform: scale(1);
}
}
.why-card {
background: #111111;
color: #ffffff;
border-radius: var(--radius-lg);
padding: 1.6rem 1.7rem;
position: relative;
overflow: hidden;
border: 1px solid rgba(249, 201, 52, 0.32);
box-shadow: 0 22px 52px rgba(0, 0, 0, 0.8);
}
.why-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
background: radial-gradient(
 circle at top left,
 rgba(249, 201, 52, 0.22),
 transparent 60%
);
opacity: 0.9;
}
.why-card::after {
content: "";
position: absolute;
width: 220px;
height: 150px;
 background: rgba(249, 201, 52, 0.4);
filter: blur(50px);
top: -40%;
left: -35%;
pointer-events: none;
opacity: 0.7;
}
.why-card-inner {
position: relative;
z-index: 1;
}
.why-title {
display: flex;
align-items: center;
gap: 0.4rem;
font-size: 1.1rem;
margin-bottom: 0.6rem;
}
.why-title-icon {
font-size: 1.3rem;
line-height: 1;
color: var(--taxi-yellow);
}
.why-text {
font-size: 0.92rem;
color: rgba(255, 255, 255, 0.88);
margin-bottom: 1.4rem;
}
.why-cta {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 1rem;
}
.gallery {
background: linear-gradient(to bottom, #ffffff, #fafafa);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.2rem;
 margin-top: 1.6rem;
}
.gallery-item.is-hidden {
display: none;
}
.reviews {
background: #ffffff;
}
.reviews-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
margin-top: 1.6rem;
}
.review-card.is-hidden {
display: none;
}
.review-card {
background: #111111;
color: #ffffff;
border-radius: var(--radius-lg);
padding: 1.4rem 1.5rem;
border: 1px solid rgba(249, 201, 52, 0.32);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
position: relative;
overflow: hidden;
transition: opacity 0.4s ease, transform 0.4s ease;
}
.review-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
background: radial-gradient(circle at top left, rgba(249, 201, 52, 0.22), transparent 70%);
opacity: 0.9;
}
.review-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.65rem;
}
.review-stars {
display: inline-flex;
gap: 0.12rem;
color: var(--taxi-yellow);
font-size: 1rem;
}
.review-badge {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.72rem;
padding: 0.2rem 0.7rem;
border-radius: 999px;
background: rgba(249, 201, 52, 0.12);
border: 1px solid rgba(249, 201, 52, 0.5);
color: rgba(255, 255, 255, 0.9);
white-space: normal;
line-height: 1.25;
}
.review-badge-icon {
font-size: 1rem;
line-height: 1;
color: var(--taxi-yellow);
}
.review-text {
font-size: 0.86rem;
line-height: 1.6;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 0.8rem;
}
.review-meta {
display: flex;
flex-direction: column;
gap: 0.08rem;
font-size: 0.78rem;
color: rgba(148, 163, 184, 0.95);
}
.review-name-row {
display: inline-flex;
align-items: center;
gap: 0.25rem;
}
.review-name {
font-weight: 600;
color: rgba(255, 255, 255, 0.96);
}
.review-flag {
font-size: 0.9rem;
line-height: 1;
}
.review-add {
margin-top: 1.6rem;
margin-bottom: 0.3rem;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
gap: 0.8rem;
padding: 0.9rem 1.4rem;
border-radius: var(--radius-lg);
background: #000000;
border: 1px solid rgba(249, 201, 52, 0.32);
box-shadow: 0 22px 52px rgba(0, 0, 0, 0.85);
max-width: 900px;
margin-left: auto;
margin-right: auto;
position: relative;
overflow: hidden;
}
.review-add::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
background: radial-gradient(
  circle at top left,
  rgba(249, 201, 52, 0.22),
  transparent 60%
);
opacity: 0.9;
}
.review-add::after {
content: "";
position: absolute;
width: 220px;
height: 150px;
background: rgba(249, 201, 52, 0.4);
filter: blur(48px);
top: -40%;
left: -35%;
pointer-events: none;
opacity: 0.75;
}
.review-add-text {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.9);
}
.review-add-icon {
font-size: 1.3rem;
line-height: 1;
color: var(--taxi-yellow);
}
.review-add-button {
font-size: 0.8rem;
padding-inline: 1.5rem;
}
.review-add .btn-whatsapp.review-add-button {
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
border: 1px solid rgba(249, 201, 52, 0.9);
color: #111111;
box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
padding: 0.5rem 1.4rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.review-add-button-icon {
font-size: 1.1rem;
line-height: 1;
}
.review-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.82);
display: none;
align-items: center;
justify-content: center;
z-index: 130;
}
.review-modal.is-open {
display: flex;
}
.review-modal-dialog {
width: min(480px, 92vw);
border-radius: var(--radius-lg);
background: #000000;
border: 1px solid rgba(249, 201, 52, 0.32);
box-shadow: 0 22px 52px rgba(0, 0, 0, 0.9);
overflow: hidden;
max-height: calc(100vh - 2rem);
position: relative;
}
.review-modal-dialog::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
background: radial-gradient(
  circle at top left,
  rgba(249, 201, 52, 0.22),
  transparent 60%
);
opacity: 0.9;
}
.review-modal-dialog::after {
content: "";
position: absolute;
width: 260px;
height: 180px;
background: rgba(249, 201, 52, 0.4);
filter: blur(52px);
top: -40%;
left: -35%;
pointer-events: none;
opacity: 0.75;
}
.review-modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.8rem 1rem;
background: #111111;
color: rgba(255, 255, 255, 0.9);
font-size: 0.9rem;
}
.review-modal-title {
display: inline-flex;
align-items: center;
gap: 0.45rem;
}
.review-modal-icon {
font-size: 1.3rem;
line-height: 1;
color: var(--taxi-yellow);
}
.review-modal-close {
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
border: 1px solid rgba(249, 201, 52, 0.9);
color: #111111;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 50%;
padding: 0;
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.6);
transition: transform 0.12s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.review-modal-close .material-symbols-outlined {
font-size: 1.4rem;
}
.review-modal-close:hover {
transform: translateY(-1px);
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.75);
}
.review-modal-close:active {
transform: translateY(0);
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.8);
}
.review-form {
padding: 1.1rem 1.1rem 1.1rem;
display: flex;
flex-direction: column;
gap: 0.8rem;
font-size: 0.84rem;
color: rgba(255, 255, 255, 0.9);
max-height: calc(100vh - 3.6rem);
overflow-y: auto;
}
.review-form-row {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
}
.review-field {
flex: 1 1 0;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.review-field label {
font-size: 0.78rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(148, 163, 184, 0.9);
}
.review-field input,
.review-field textarea {
background: #000000;
border-radius: 14px;
border: 1px solid rgba(148, 163, 184, 0.35);
padding: 0.6rem 0.9rem;
color: #ffffff;
font-size: 0.86rem;
outline: none;
}
.review-field input:focus,
.review-field textarea:focus {
border-color: var(--taxi-yellow);
box-shadow: 0 0 0 1px rgba(249, 201, 52, 0.7);
}
.review-field input::placeholder,
.review-field textarea::placeholder {
color: rgba(148, 163, 184, 0.9);
}
.review-rating {
display: inline-flex;
align-items: center;
gap: 0.18rem;
}
.review-rating-star {
font-size: 1.3rem;
line-height: 1;
color: rgba(148, 163, 184, 0.7);
cursor: pointer;
transition: color 0.18s ease, transform 0.12s ease;
}
.review-rating-star.is-active {
color: var(--taxi-yellow);
transform: translateY(-1px);
}
.review-form-actions {
display: flex;
justify-content: center;
margin-top: 0.3rem;
}
.review-submit {
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
border: 1px solid rgba(249, 201, 52, 0.9);
color: #111111;
}
.review-toast {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
opacity: 0;
transform: translateY(10px) scale(0.96);
transition: opacity 0.22s ease, transform 0.22s ease;
z-index: 140;
background: rgba(0, 0, 0, 0.7);
}
.review-toast.is-visible {
opacity: 1;
transform: translateY(0) scale(1);
}
.review-toast-inner {
display: inline-flex;
align-items: center;
gap: 0.7rem;
padding: 0.85rem 1.4rem;
border-radius: var(--radius-lg);
background: #111111;
border: 1px solid rgba(249, 201, 52, 0.8);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
position: relative;
overflow: hidden;
}
.legal-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.82);
display: flex;
align-items: center;
justify-content: center;
z-index: 150;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease;
}
.legal-modal:target {
opacity: 1;
pointer-events: auto;
}
.legal-modal-dialog {
width: min(560px, 92vw);
border-radius: var(--radius-lg);
background: #000000;
border: 1px solid rgba(249, 201, 52, 0.32);
box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9);
overflow: hidden;
max-height: calc(100vh - 2rem);
position: relative;
}
.legal-modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.8rem 1rem;
background: #111111;
color: rgba(255, 255, 255, 0.9);
font-size: 0.9rem;
}
.legal-modal-title {
display: inline-flex;
align-items: center;
gap: 0.45rem;
}
.legal-modal-icon {
font-size: 1.3rem;
line-height: 1;
color: var(--taxi-yellow);
}
.legal-modal-close {
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
border: 1px solid rgba(249, 201, 52, 0.9);
color: #111111;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 50%;
padding: 0;
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.6);
transition: transform 0.12s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.legal-modal-close .material-symbols-outlined {
font-size: 1.4rem;
}
.legal-modal-close:hover {
transform: translateY(-1px);
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.75);
}
.legal-modal-close:active {
transform: translateY(0);
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.8);
}
.legal-modal-body {
padding: 1.1rem 1.2rem 1.1rem;
font-size: 0.86rem;
color: rgba(255, 255, 255, 0.9);
max-height: calc(100vh - 4rem);
overflow-y: auto;
}
.legal-modal-body p {
margin: 0 0 0.7rem;
}
.legal-modal-body p:last-child {
margin-bottom: 0;
}
.legal-sitemap-list {
margin: 0;
padding-left: 1.1rem;
display: flex;
flex-direction: column;
gap: 0.35rem;
}
.legal-sitemap-list a {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
}
.legal-sitemap-list a:hover {
color: var(--taxi-yellow);
}
.review-toast-inner::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
background: radial-gradient(circle at top left, rgba(249, 201, 52, 0.22), transparent 70%);
opacity: 0.9;
}
.review-toast-icon {
position: relative;
z-index: 1;
font-size: 1.5rem;
line-height: 1;
color: var(--taxi-yellow);
}
.review-toast-text {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: 0.1rem;
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.95);
}
.review-toast-text strong {
font-size: 0.9rem;
}
.gallery-item {
position: relative;
border-radius: 20px;
overflow: hidden;
background: #000000;
cursor: pointer;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
transition: transform 0.2s ease, box-shadow 0.2s ease;
aspect-ratio: 4 / 3;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1.03);
transition: transform 0.25s ease;
}
.gallery-item-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 55%);
opacity: 0;
display: flex;
align-items: flex-end;
justify-content: space-between;
padding: 0.9rem 1rem;
font-size: 0.8rem;
color: #ffffff;
transition: opacity 0.22s ease;
}
.gallery-item:hover {
transform: translateY(-4px);
box-shadow: 0 24px 46px rgba(15, 23, 42, 0.3);
}
.gallery-item:hover img {
transform: scale(1.07);
}
.gallery-item:hover .gallery-item-overlay {
opacity: 1;
}
.gallery-tag {
display: inline-flex;
align-items: center;
gap: 0.25rem;
padding: 0.15rem 0.6rem;
border-radius: 999px;
background: rgba(249, 201, 52, 0.88);
color: #111111;
font-weight: 600;
font-size: 0.82rem;
 white-space: nowrap;
 flex-shrink: 0;
}
.gallery-overlay-main {
display: inline-flex;
align-items: center;
gap: 0.35rem;
}
.gallery-overlay-icon {
font-size: 1.2rem;
line-height: 1;
color: var(--taxi-yellow);
}
.gallery-tag-icon {
font-size: 1rem;
line-height: 1;
}
.contact {
background: #111111;
color: #ffffff;
}
.contact-inner {
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
gap: 2.4rem;
align-items: stretch;
}
.contact-card,
.contact-map-card {
background: #000000;
border-radius: var(--radius-lg);
border: 1px solid rgba(249, 201, 52, 0.32);
box-shadow: 0 22px 52px rgba(0, 0, 0, 0.8);
position: relative;
}
.contact-card {
padding: 1.7rem 1.8rem;
overflow: hidden;
}
.contact-card::before,
.contact-map-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
background: radial-gradient(
  circle at top left,
  rgba(249, 201, 52, 0.22),
  transparent 60%
);
opacity: 0.9;
}
.contact-card::after,
.contact-map-card::after {
content: "";
position: absolute;
width: 260px;
height: 180px;
 background: rgba(249, 201, 52, 0.4);
filter: blur(52px);
top: -40%;
left: -35%;
pointer-events: none;
opacity: 0.75;
}
.contact-title {
display: flex;
align-items: center;
gap: 0.45rem;
font-size: 1.3rem;
margin-bottom: 0.5rem;
}
.contact-title-icon {
font-size: 1.4rem;
line-height: 1;
color: var(--taxi-yellow);
}
.contact-subtitle {
font-size: 0.93rem;
color: rgba(255, 255, 255, 0.86);
margin-bottom: 1.4rem;
}
.contact-row {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
align-items: center;
margin-bottom: 1.6rem;
}
.contact-badge {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.36rem 0.9rem;
border-radius: 999px;
background: rgba(0, 0, 0, 0.7);
border: 1px solid rgba(255, 255, 255, 0.16);
font-size: 0.8rem;
}
.contact-badge-icon {
font-size: 1rem;
line-height: 1;
color: var(--taxi-yellow);
}
.contact-details {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.9rem 1.1rem;
font-size: 0.86rem;
}
.contact-detail-label {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 0.13em;
color: rgba(255, 255, 255, 0.56);
margin-bottom: 0.15rem;
}
.contact-detail-icon {
font-size: 1rem;
line-height: 1;
color: var(--taxi-yellow);
}
.contact-detail-value {
font-weight: 500;
}
.contact-map-card {
overflow: hidden;
}
.contact-map-header {
padding: 1rem 1.2rem 0.5rem;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.82rem;
color: rgba(255, 255, 255, 0.8);
}
.contact-map-header strong {
font-size: 0.9rem;
}
.contact-map-tag {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.45rem 1.1rem;
border-radius: 999px;
border: 1px solid rgba(249, 201, 52, 0.2);
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
color: #111111;
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.09em;
text-transform: uppercase;
cursor: pointer;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.44);
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
animation: whatsappGlow 2.2s ease-in-out infinite;
white-space: nowrap;
flex-shrink: 0;
}
.contact-map-icon {
font-size: 1rem;
line-height: 1;
color: var(--taxi-yellow);
}
.contact-map-tag-icon {
font-size: 1.05rem;
line-height: 1;
color: #111111;
}
.contact-map-tag:hover {
transform: translateY(-1px);
box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
background: linear-gradient(135deg, var(--taxi-yellow-dark), var(--taxi-yellow));
animation: none;
}
.contact-map-embed {
width: 100%;
height: 280px;
border: 0;
}
.map-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.82);
display: none;
align-items: center;
justify-content: center;
z-index: 130;
}
.map-modal.is-open {
display: flex;
}
.map-modal-dialog {
width: min(900px, 92vw);
border-radius: var(--radius-lg);
background: #000000;
border: 1px solid rgba(249, 201, 52, 0.35);
box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9);
overflow: hidden;
max-height: calc(100vh - 2rem);
}
.map-modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1rem;
background: #111111;
color: rgba(255, 255, 255, 0.9);
font-size: 0.9rem;
}
.map-modal-title {
display: inline-flex;
align-items: center;
gap: 0.4rem;
}
.map-modal-title-icon {
font-size: 1.3rem;
line-height: 1;
color: var(--taxi-yellow);
}
.map-modal-close {
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
border: 1px solid rgba(249, 201, 52, 0.9);
color: #111111;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 50%;
padding: 0;
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.6);
transition: transform 0.12s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.map-modal-close .material-symbols-outlined {
font-size: 1.4rem;
}
.map-modal-close:hover {
transform: translateY(-1px);
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.75);
}
.map-modal-close:active {
transform: translateY(0);
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.8);
}
.map-modal-embed {
width: 100%;
height: 420px;
border: 0;
display: block;
}
.booking-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.82);
display: none;
align-items: center;
justify-content: center;
z-index: 130;
}
.booking-modal.is-open {
display: flex;
}
.booking-modal-dialog {
width: min(540px, 92vw);
border-radius: var(--radius-lg);
background: #000000;
border: 1px solid rgba(249, 201, 52, 0.32);
box-shadow: 0 22px 52px rgba(0, 0, 0, 0.9);
overflow: hidden;
max-height: calc(100vh - 2rem);
transform: scale(0.86) translateY(22px);
opacity: 0;
transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease-out;
}
.booking-modal.is-open .booking-modal-dialog {
transform: scale(1) translateY(0);
opacity: 1;
}
.booking-modal-dialog::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
background: radial-gradient(
  circle at top left,
  rgba(249, 201, 52, 0.22),
  transparent 60%
);
opacity: 0.9;
}
.booking-modal-dialog::after {
content: "";
position: absolute;
width: 260px;
height: 180px;
background: rgba(249, 201, 52, 0.4);
filter: blur(52px);
top: -40%;
left: -35%;
pointer-events: none;
opacity: 0.75;
}
.booking-modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.8rem 1.1rem;
background: #111111;
color: rgba(255, 255, 255, 0.9);
font-size: 0.9rem;
}
.booking-modal-title {
display: inline-flex;
align-items: center;
gap: 0.45rem;
}
.booking-modal-icon {
font-size: 1.3rem;
line-height: 1;
color: var(--taxi-yellow);
}
.booking-modal-close {
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
border: 1px solid rgba(249, 201, 52, 0.9);
color: #111111;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 50%;
padding: 0;
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.6);
transition: transform 0.12s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.booking-modal-close .material-symbols-outlined {
font-size: 1.4rem;
}
.booking-modal-close:hover {
transform: translateY(-1px);
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.75);
}
.booking-modal-close:active {
transform: translateY(0);
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.8);
}
.booking-form {
padding: 1.2rem 1.1rem 1.1rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
font-size: 0.84rem;
color: rgba(255, 255, 255, 0.9);
max-height: calc(100vh - 3.6rem);
overflow-y: auto;
}
.booking-form-row {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
}
.booking-field {
flex: 1 1 0;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.booking-field label {
font-size: 0.78rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(148, 163, 184, 0.9);
}
.booking-field input,
.booking-field textarea {
background: #000000;
border-radius: 14px;
border: 1px solid rgba(148, 163, 184, 0.35);
padding: 0.6rem 0.9rem;
color: #ffffff;
font-size: 0.86rem;
outline: none;
}
.booking-field input:focus,
.booking-field textarea:focus {
border-color: var(--taxi-yellow);
box-shadow: 0 0 0 1px rgba(249, 201, 52, 0.7);
}
.booking-field input::placeholder,
.booking-field textarea::placeholder {
color: rgba(148, 163, 184, 0.9);
}
.booking-form-actions {
display: flex;
justify-content: center;
margin-top: 0.25rem;
}
.booking-submit {
font-size: 0.8rem;
padding-inline: 1.4rem;
background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
color: #111111;
border: 1px solid rgba(249, 201, 52, 0.9);
box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
animation: none;
}
.footer {
background: #000000;
color: rgba(255, 255, 255, 0.75);
padding: 1.6rem 0 1.7rem;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
}
.footer-brand {
display: flex;
align-items: center;
gap: 0.9rem;
}
.footer-logo-wrap {
width: 170px;
height: 55px;
border-radius: 0;
background: transparent;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.footer-logo {
width: 100%;
height: 100%;
object-fit: contain;
}
.footer-text-main {
font-size: 0.86rem;
font-weight: 700;
}
.footer-text-sub {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.7);
}
.footer-meta {
margin-top: 1rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.3rem;
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.7);
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 0.55rem;
}
.footer-links a {
color: rgba(255, 255, 255, 0.78);
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.25rem;
}
.footer-links a:hover {
color: var(--taxi-yellow);
}
.footer-links-icon {
font-size: 1rem;
line-height: 1;
color: var(--taxi-yellow);
}
.footer-link-separator {
opacity: 0.5;
}
.footer-copy {
text-align: center;
}
.footer-info {
display: flex;
flex-wrap: wrap;
gap: 1.4rem;
font-size: 0.8rem;
}
.footer-info-item span {
display: block;
font-size: 0.76rem;
text-transform: uppercase;
letter-spacing: 0.14em;
color: rgba(255, 255, 255, 0.55);
margin-bottom: 0.1rem;
}
.footer-info-icon {
font-size: 1rem;
line-height: 1;
color: var(--taxi-yellow);
margin-right: 0.25rem;
}
.footer-cta {
display: flex;
align-items: center;
gap: 0.7rem;
font-size: 0.8rem;
}
.footer-cta-icon {
font-size: 1rem;
line-height: 1;
color: var(--taxi-yellow);
margin-right: 0.35rem;
}
.footer-cta a {
text-decoration: none;
}
@media (max-width: 960px) {
.hero-inner {
grid-template-columns: minmax(0, 1fr);
}
.hero {
padding-top: 3.4rem;
}
.hero-card {
max-width: 430px;
margin: 0 auto;
}
.services-divers-grid {
grid-template-columns: minmax(0, 1fr);
}
.contact-details {
grid-template-columns: minmax(0, 1fr);
}
.split {
grid-template-columns: minmax(0, 1fr);
}
.contact-inner {
grid-template-columns: minmax(0, 1fr);
}
.feature-list {
grid-template-columns: minmax(0, 1fr);
}
.gallery-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.reviews-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 768px) {
.header-inner {
padding: 0.4rem 1.1rem;
justify-content: center;
position: relative;
}
.brand {
margin: 0 auto;
}
.nav-lang {
position: absolute;
right: 3.1rem;
top: 50%;
transform: translateY(-50%);
margin: 0;
}
.nav-lang-label {
display: none;
}
.hero-chip,
.hero-badge-large {
white-space: normal;
max-width: 100%;
}
.hero-card-image {
aspect-ratio: 4 / 3;
}
.hero-card-bottom {
flex-direction: column;
align-items: flex-start;
}
.hero-floating-card {
align-items: flex-start;
}
.hero-floating-main {
width: 100%;
}
.hero-floating-tag {
margin-top: 0.9rem;
align-self: center;
white-space: nowrap;
}
.contact-map-header {
flex-direction: column;
align-items: flex-start;
gap: 0.6rem;
}
.contact-map-tag {
align-self: stretch;
justify-content: center;
max-width: 100%;
white-space: normal;
text-align: center;
}
.brand-logo-wrap {
width: 140px;
height: 55px;
}
.nav {
position: fixed;
inset: 60px 1.1rem auto;
border-radius: 18px;
background: rgba(0, 0, 0, 0.94);
border: 1px solid rgba(255, 255, 255, 0.08);
padding: 0.9rem 1rem 0.95rem;
flex-direction: column;
align-items: flex-start;
gap: 0.7rem;
transform: translateY(-14px);
opacity: 0;
pointer-events: none;
transition: opacity 0.18s ease;
}
.nav.nav-open {
opacity: 1;
pointer-events: auto;
}
.menu-toggle {
display: inline-flex;
position: absolute;
right: 1.1rem;
top: 50%;
transform: translateY(-50%);
}
.hero-title {
font-size: 2.3rem;
}
.section {
padding: 3rem 0;
}
.gallery-grid {
grid-template-columns: minmax(0, 1fr);
}
.reviews-grid {
grid-template-columns: minmax(0, 1fr);
}
.review-add {
flex-direction: column;
align-items: center;
text-align: center;
max-width: 430px;
}
.review-add-text {
justify-content: center;
}
.review-add .btn-whatsapp.review-add-button {
align-self: center;
margin-top: 0.2rem;
}
.contact-card {
padding: 1.4rem 1.35rem;
}
.contact-map-embed {
height: 220px;
}
.footer-inner {
flex-direction: column;
align-items: flex-start;
}
}
@media (max-width: 480px) {
.hero-cta-row {
flex-direction: column;
align-items: center;
}
.hero-meta {
flex-direction: column;
align-items: flex-start;
}
.contact-details {
grid-template-columns: minmax(0, 1fr);
}
.map-modal-dialog {
width: 94vw;
border-radius: 20px;
}
.map-modal-embed {
height: 260px;
}
.booking-modal-dialog {
width: 94vw;
border-radius: 20px;
}
.booking-form {
padding: 1rem 0.9rem 0.9rem;
font-size: 0.8rem;
}
.booking-field label {
font-size: 0.82rem;
}
.booking-form-row:first-child {
flex-direction: column;
}
}
