
/* Block 1 */
.hero-section {
position: relative;
width: 100%;
min-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
background-image: url('hero-travel-2026.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
margin: 0;
padding: 0;
}

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

.hero-container {
position: relative;
z-index: 2;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.hero-content-wrapper {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.hero-text-group {
opacity: 0;
transform: translateY(30px);
animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
animation-delay: 0.2s;
}

.hero-title {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
font-size: clamp(2.5rem, 5vw, 4.5rem);
font-weight: 800;
color: #ffffff;
line-height: 1.1;
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}

.hero-subtitle {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
font-size: clamp(1rem, 1.25vw, 1.25rem);
font-weight: 400;
color: #cbd5e1;
line-height: 1.6;
margin-bottom: 2.5rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.hero-action-wrapper {
display: flex;
justify-content: center;
}

.hero-cta-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
background-color: #3b82f6;
color: #ffffff;
padding: 1rem 2.5rem;
border-radius: 9999px;
text-decoration: none;
font-weight: 600;
font-size: 1.125rem;
transition: all 0.3s ease;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-cta-btn:hover {
background-color: #2563eb;
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-icon {
transition: transform 0.3s ease;
}

.hero-cta-btn:hover .btn-icon {
transform: translateX(4px);
}

@keyframes heroFadeUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@media (max-width: 768px) {
.hero-section {
min-height: 80vh;
}
.hero-container {
padding: 0 1.5rem;
}
}

/* Block 2 */
.features-intro-section {
padding: 6rem 1.5rem;
background-color: #f8f9fa;
position: relative;
overflow: hidden;
}
.features-container {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.features-header {
text-align: center;
max-width: 800px;
margin: 0 auto 5rem auto;
}
.features-title {
font-size: 2.75rem;
font-weight: 800;
color: #1a1a1a;
margin-bottom: 1.25rem;
letter-spacing: -0.03em;
line-height: 1.2;
}
.features-subtitle {
font-size: 1.25rem;
color: #555;
line-height: 1.6;
margin: 0;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
margin-bottom: 4rem;
}
.feature-card {
background: #ffffff;
border-radius: 1.5rem;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
display: flex;
flex-direction: column;
height: 100%;
}
.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.feature-visual {
position: relative;
height: 220px;
overflow: hidden;
}
.feature-visual img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.feature-card:hover .feature-visual img {
transform: scale(1.05);
}
.feature-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
z-index: 1;
}
.feature-content {
padding: 2.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
position: relative;
}
.feature-icon {
width: 60px;
height: 60px;
background-color: rgba(13, 110, 253, 0.1);
color: #0d6efd;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1.5rem;
margin-top: -3.5rem;
z-index: 2;
align-self: flex-start;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.feature-heading {
font-size: 1.5rem;
font-weight: 700;
color: #212529;
margin-bottom: 1rem;
letter-spacing: -0.02em;
}
.feature-desc {
font-size: 1rem;
color: #6c757d;
line-height: 1.7;
margin-bottom: 0;
flex-grow: 1;
}
.features-bottom-wrapper {
display: flex;
justify-content: center;
}
.features-link {
display: inline-flex;
align-items: center;
gap: 0.75rem;
color: #0d6efd;
text-decoration: none;
font-weight: 600;
font-size: 1.125rem;
transition: gap 0.3s ease;
padding: 1rem 2rem;
border: 2px solid transparent;
border-radius: 3rem;
background-color: #e7f1ff;
}
.features-link:hover {
gap: 1.25rem;
background-color: #0d6efd;
color: #ffffff;
}
.link-icon {
transition: transform 0.3s ease;
}
.features-link:hover .link-icon {
transform: translateX(4px);
}
@media (max-width: 991px) {
.features-title {
font-size: 2.25rem;
}
.features-grid {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
}
@media (max-width: 576px) {
.features-intro-section {
padding: 4rem 1rem;
}
.features-title {
font-size: 1.875rem;
}
.features-subtitle {
font-size: 1.1rem;
}
.feature-card {
border-radius: 1rem;
}
.feature-content {
padding: 1.75rem;
padding-top: 2rem;
}
}

/* Block 3 */
.immersive-transit-showcase {
--showcase-bg: #050505;
--card-bg: #121212;
--card-bg-hover: #1e1e1e;
--accent-primary: #00f2ea;
--accent-secondary: #ff0050;
--text-primary: #ffffff;
--text-secondary: #a0a0a0;
--radius-lg: 24px;
--radius-md: 16px;
--transition-smooth: cubic-bezier(0.23, 1, 0.32, 1);
background-color: var(--showcase-bg);
padding: 6rem 1.5rem;
position: relative;
overflow: hidden;
display: flex;
justify-content: center;
}

.immersive-transit-showcase::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 300px;
background: radial-gradient(circle at 50% 0%, rgba(0, 242, 234, 0.15) 0%, transparent 70%);
pointer-events: none;
}

.transit-container {
width: 100%;
max-width: 1280px;
display: flex;
flex-direction: column;
gap: 3rem;
z-index: 2;
}

.transit-header {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.transit-label {
display: inline-flex;
align-items: center;
padding: 0.5rem 1rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 100px;
color: var(--accent-primary);
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1.5rem;
backdrop-filter: blur(10px);
}

.transit-title {
font-size: 3rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 1rem;
line-height: 1.1;
letter-spacing: -0.02em;
}

.transit-desc {
font-size: 1.125rem;
color: var(--text-secondary);
line-height: 1.6;
margin: 0;
}

.transit-scroller {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
align-items: stretch;
}

.transit-card {
background-color: var(--card-bg);
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth), background-color 0.4s var(--transition-smooth);
display: flex;
flex-direction: column;
}

.transit-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
background-color: var(--card-bg-hover);
border-color: rgba(255, 255, 255, 0.1);
}

.card-image-wrapper {
position: relative;
height: 240px;
overflow: hidden;
}

.card-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s var(--transition-smooth);
}

.transit-card:hover .card-image-wrapper img {
transform: scale(1.05);
}

.card-badge {
position: absolute;
bottom: 1rem;
right: 1rem;
width: 40px;
height: 40px;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-primary);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-content {
padding: 1.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.card-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 1rem;
}

.card-meta {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}

.meta-item {
display: flex;
align-items: center;
gap: 0.4rem;
font-size: 0.875rem;
color: var(--text-secondary);
background: rgba(255, 255, 255, 0.03);
padding: 0.25rem 0.75rem;
border-radius: 6px;
}

.card-text {
font-size: 1rem;
color: var(--text-secondary);
line-height: 1.5;
margin-top: auto;
}

.transit-footer {
display: flex;
justify-content: center;
margin-top: 1rem;
}

.transit-cta {
display: inline-flex;
align-items: center;
gap: 1rem;
padding: 1rem 2rem;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--text-primary);
text-decoration: none;
border-radius: 100px;
font-weight: 500;
transition: all 0.3s ease;
}

.transit-cta:hover {
background: var(--text-primary);
color: var(--showcase-bg);
border-color: var(--text-primary);
}

.cta-icon-wrap {
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
transition: transform 0.3s ease;
}

.transit-cta:hover .cta-icon-wrap {
transform: translateX(4px);
}

@media (max-width: 992px) {
.transit-title {
font-size: 2.5rem;
}
}

@media (max-width: 768px) {
.immersive-transit-showcase {
padding: 4rem 1rem;
}
.transit-title {
font-size: 2rem;
}
.transit-scroller {
grid-template-columns: 1fr;
}
}

/* Block 4 */
.booking-2026-section {
--primary-neon: #00f2ff;
--secondary-neon: #7000ff;
--glass-bg: rgba(15, 23, 42, 0.6);
--border-color: rgba(255, 255, 255, 0.1);
--input-bg: rgba(0, 0, 0, 0.3);
width: 100%;
padding: 5rem 1rem;
background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
overflow: hidden;
position: relative;
}

.booking-2026-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
z-index: 1;
}

.booking-layout {
display: grid;
grid-template-columns: 1fr;
max-width: 1200px;
width: 100%;
gap: 2rem;
z-index: 2;
position: relative;
}

@media (min-width: 992px) {
.booking-layout {
grid-template-columns: 1.2fr 0.8fr;
height: 600px;
}
}

.booking-visual-side {
position: relative;
border-radius: 24px;
overflow: hidden;
border: 1px solid var(--border-color);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.visual-layer {
width: 100%;
height: 100%;
position: relative;
}

.booking-visual-side img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-visual-side:hover img {
transform: scale(1.05);
}

.visual-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 3rem 2.5rem;
background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
color: #fff;
}

.visual-title {
font-size: 2.5rem;
font-weight: 800;
margin: 0 0 1rem 0;
letter-spacing: -0.02em;
background: linear-gradient(90deg, #fff, var(--primary-neon));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.visual-caption {
font-size: 1rem;
line-height: 1.6;
opacity: 0.8;
margin: 0;
max-width: 90%;
}

.booking-form-side {
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--border-color);
border-radius: 24px;
padding: 3rem;
display: flex;
flex-direction: column;
justify-content: center;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-header-group {
margin-bottom: 2.5rem;
text-align: center;
}

.form-pilot-label {
display: inline-block;
padding: 0.5rem 1rem;
background: rgba(0, 242, 255, 0.1);
color: var(--primary-neon);
border-radius: 50px;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1rem;
border: 1px solid rgba(0, 242, 255, 0.2);
}

.form-main-heading {
color: #fff;
font-size: 2rem;
margin: 0;
font-weight: 700;
}

.trip-init-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.input-module {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.input-field-label {
color: #94a3b8;
font-size: 0.85rem;
font-weight: 600;
margin-left: 0.5rem;
}

.input-wrapper {
position: relative;
display: flex;
align-items: center;
}

.input-icon {
position: absolute;
left: 1.25rem;
color: #64748b;
font-size: 1.1rem;
transition: color 0.3s ease;
}

.futuristic-input {
width: 100%;
background: var(--input-bg);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 1rem 1rem 1rem 3.5rem;
color: #fff;
font-size: 1rem;
font-family: inherit;
outline: none;
transition: all 0.3s ease;
box-sizing: border-box;
}

.futuristic-input::placeholder {
color: rgba(255, 255, 255, 0.2);
}

.futuristic-input:focus {
border-color: var(--primary-neon);
box-shadow: 0 0 0 4px rgba(0, 242, 255, 0.1);
background: rgba(0, 0, 0, 0.5);
}

.futuristic-input:focus + .input-icon {
color: var(--primary-neon);
}

.submit-orb-btn {
margin-top: 1rem;
width: 100%;
padding: 1.1rem;
background: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon));
border: none;
border-radius: 12px;
color: #fff;
font-size: 1rem;
font-weight: 700;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
text-transform: uppercase;
letter-spacing: 0.05em;
}

.submit-orb-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(112, 0, 255, 0.4);
filter: brightness(1.1);
}

.submit-orb-btn:active {
transform: translateY(0);
}

.btn-action-icon {
font-size: 1.1rem;
}
