
/* Block 1 */
.visual-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #0f172a;
  }

  .hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
    transition: transform 10s ease-in-out;
  }

  .visual-hero:hover .hero-bg {
    transform: scale(1.05);
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
  }

  .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  .hero-text {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
  }

  .btn-custom {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0ea5e9;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
    border: 2px solid transparent;
  }

  .btn-custom:hover {
    background-color: transparent;
    border-color: #0ea5e9;
    color: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
  }

  @media (max-width: 991px) {
    .hero-title {
      font-size: 2.5rem;
    }
    .hero-text {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 576px) {
    .visual-hero {
      height: 70vh;
    }
    .hero-title {
      font-size: 2rem;
    }
    .btn-custom {
      width: 100%;
      text-align: center;
    }
  }

/* Block 2 */
.futuristic-destinations {
padding: 6rem 0;
background-color: #f8f9fa;
position: relative;
overflow: hidden;
}
.futuristic-destinations::before {
content: "";
position: absolute;
top: -50%;
left: -10%;
width: 40%;
height: 200%;
background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
transform: rotate(15deg);
z-index: 0;
}
.section-header {
position: relative;
z-index: 1;
}
.section-title {
font-size: 2.5rem;
font-weight: 800;
letter-spacing: -0.05rem;
color: #1a1a1a;
margin-bottom: 1rem;
}
.section-subtitle {
font-size: 1.1rem;
color: #6c757d;
max-width: 600px;
margin: 0 auto;
}
.card-future {
background: #ffffff;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
z-index: 1;
border: 1px solid rgba(0, 0, 0, 0.03);
}
.card-future:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}
.card-future.featured {
border: 2px solid rgba(13, 110, 253, 0.3);
}
.card-image-wrapper {
position: relative;
height: 280px;
overflow: hidden;
}
.card-future-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.card-future:hover .card-future-img {
transform: scale(1.05);
}
.card-badge {
position: absolute;
top: 1rem;
right: 1rem;
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
background-color: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(5px);
color: #1a1a1a;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.card-badge.hot {
background-color: #0d6efd;
color: #ffffff;
}
.card-body-custom {
padding: 2rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.card-title {
font-size: 1.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 0.75rem;
}
.card-text {
color: #495057;
line-height: 1.6;
margin-bottom: 1.5rem;
flex-grow: 1;
}
.card-meta {
display: flex;
gap: 1.5rem;
border-top: 1px solid #f1f3f5;
padding-top: 1rem;
margin-top: auto;
}
.meta-item {
font-size: 0.85rem;
color: #6c757d;
font-weight: 500;
display: flex;
align-items: center;
gap: 0.5rem;
}
.meta-item i {
color: #0d6efd;
}
@media (max-width: 991px) {
.section-title {
font-size: 2rem;
}
.card-image-wrapper {
height: 240px;
}
}
@media (max-width: 767px) {
.futuristic-destinations {
padding: 4rem 0;
}
.card-body-custom {
padding: 1.5rem;
}
}

/* Block 3 */
.experience-zone {
background-color: #0b0c10;
color: #ffffff;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
padding: 80px 0;
position: relative;
overflow: hidden;
}
.zone-wrapper {
max-width: 1400px;
margin: 0 auto;
}
.zone-visual {
background: radial-gradient(circle at center, #1f2833 0%, #0b0c10 100%);
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
position: relative;
}
.visual-stack {
position: relative;
width: 100%;
max-width: 500px;
aspect-ratio: 1/1;
}
.stack-img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
position: absolute;
top: 0;
left: 0;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.stack-back {
transform: scale(0.8) translateY(40px);
z-index: 1;
opacity: 0.6;
filter: blur(2px) grayscale(80%);
}
.stack-mid {
transform: scale(0.9) translateY(20px);
z-index: 2;
opacity: 0.8;
filter: grayscale(40%);
}
.stack-front {
transform: scale(1) translateY(0);
z-index: 3;
}
.zone-visual:hover .stack-back {
transform: scale(0.85) translateY(60px) translateX(-20px);
}
.zone-visual:hover .stack-mid {
transform: scale(0.95) translateY(30px) translateX(-10px);
}
.zone-visual:hover .stack-front {
transform: scale(1.05) translateY(-10px);
}
.zone-content {
display: flex;
flex-direction: column;
justify-content: center;
padding: 60px 40px;
}
.content-padding {
max-width: 550px;
}
.zone-label {
color: #66fcf1;
text-transform: uppercase;
letter-spacing: 3px;
font-size: 0.85rem;
font-weight: 700;
margin-bottom: 16px;
display: inline-block;
padding: 6px 12px;
border: 1px solid rgba(102, 252, 241, 0.3);
border-radius: 50px;
background: rgba(102, 252, 241, 0.05);
}
.zone-title {
font-size: 3rem;
font-weight: 800;
line-height: 1.1;
margin-bottom: 24px;
background: linear-gradient(135deg, #ffffff 0%, #c5c6c7 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.zone-desc {
font-size: 1.125rem;
line-height: 1.7;
color: #c5c6c7;
margin-bottom: 40px;
}
.zone-features {
list-style: none;
padding: 0;
margin: 0 0 40px 0;
}
.feature-item {
display: flex;
align-items: flex-start;
margin-bottom: 24px;
}
.feature-icon {
width: 48px;
height: 48px;
background: rgba(102, 252, 241, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #66fcf1;
font-size: 1.2rem;
margin-right: 20px;
flex-shrink: 0;
border: 1px solid rgba(102, 252, 241, 0.2);
}
.feature-text {
display: flex;
flex-direction: column;
}
.feature-text strong {
font-size: 1.1rem;
margin-bottom: 4px;
display: block;
}
.feature-text span {
font-size: 0.95rem;
line-height: 1.5;
}
.zone-link {
color: #ffffff;
text-decoration: none;
font-size: 1.1rem;
font-weight: 600;
display: inline-flex;
align-items: center;
transition: color 0.3s ease;
position: relative;
}
.zone-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0%;
height: 2px;
background-color: #66fcf1;
transition: width 0.3s ease;
}
.zone-link:hover {
color: #66fcf1;
}
.zone-link:hover::after {
width: 100%;
}
.zone-link i {
transition: transform 0.3s ease;
}
.zone-link:hover i {
transform: translateX(5px);
}
@media (max-width: 991px) {
.zone-content {
padding: 40px 20px;
order: 2;
}
.zone-visual {
padding: 60px 20px;
order: 1;
min-height: 400px;
}
.zone-title {
font-size: 2.2rem;
}
}
@media (max-width: 576px) {
.zone-title {
font-size: 1.8rem;
}
.feature-item {
flex-direction: column;
}
.feature-icon {
margin-bottom: 12px;
width: 40px;
height: 40px;
font-size: 1rem;
}
}

/* Block 4 */
.booking-zone {
position: relative;
padding: 6rem 0;
background-color: #050505;
overflow: hidden;
}
.booking-zone::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 0%, #1a2a6c, #b21f1f00, #050505 70%);
opacity: 0.4;
z-index: 0;
pointer-events: none;
}
.zone-container {
position: relative;
z-index: 1;
}
.booking-wrapper {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 3rem 4rem;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.booking-wrapper:hover {
transform: translateY(-5px);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.booking-header {
text-align: center;
margin-bottom: 3rem;
}
.booking-title {
font-size: 2.5rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 1rem;
letter-spacing: -0.02em;
text-transform: uppercase;
}
.booking-subtitle {
color: rgba(255, 255, 255, 0.6);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}
.booking-form {
display: flex;
flex-direction: column;
gap: 2rem;
}
.form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.form-group-floating {
position: relative;
}
.form-input {
width: 100%;
padding: 1.5rem 1rem 0.5rem 1rem;
font-size: 1.1rem;
color: #ffffff;
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 12px;
outline: none;
transition: border-color 0.3s ease, background 0.3s ease;
font-family: inherit;
}
.form-input:focus {
border-color: #0d6efd;
background: rgba(0, 0, 0, 0.5);
}
.form-input::placeholder {
color: transparent;
}
.form-label {
position: absolute;
left: 1rem;
top: 1rem;
color: rgba(255, 255, 255, 0.4);
font-size: 1.1rem;
pointer-events: none;
transition: all 0.3s ease;
transform-origin: left top;
}
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
transform: translateY(-12px) scale(0.75);
color: #0d6efd;
background-color: #050505;
padding: 0 0.5rem;
border-radius: 4px;
}
.booking-actions {
display: flex;
justify-content: center;
margin-top: 1rem;
}
.submit-trigger {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
padding: 1.25rem 3rem;
background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
color: #ffffff;
font-size: 1.2rem;
font-weight: 600;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.submit-trigger:hover {
background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
transform: scale(1.02);
box-shadow: 0 15px 30px rgba(13, 110, 253, 0.5);
}
.submit-trigger:active {
transform: scale(0.98);
}
.btn-icon {
transition: transform 0.3s ease;
display: flex;
align-items: center;
}
.submit-trigger:hover .btn-icon {
transform: translateX(5px);
}
@media (max-width: 991px) {
.booking-wrapper {
padding: 2rem;
}
.booking-title {
font-size: 2rem;
}
}
@media (max-width: 576px) {
.booking-zone {
padding: 4rem 0;
}
.booking-wrapper {
padding: 1.5rem;
}
.form-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.booking-title {
font-size: 1.75rem;
}
.submit-trigger {
width: 100%;
}
}
