
/* Block 1 */
.futuristic-hero {
      width: 100%;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: #0f172a;
      position: relative;
    }

    .hero-container {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr;
      place-items: center;
    }

    .hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }

    .hero-bg-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.1);
      transition: transform 10s ease;
      filter: brightness(0.7);
    }

    .futuristic-hero:hover .hero-bg-image {
      transform: scale(1.2);
    }

    .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) 50%, rgba(15, 23, 42, 0.1) 100%);
      backdrop-filter: blur(2px);
      z-index: 2;
    }

    .hero-content {
      z-index: 3;
      width: 100%;
      max-width: 1200px;
      padding: 2rem;
      text-align: center;
    }

    .content-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 5rem);
      font-weight: 800;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin: 0;
    }

    .title-line {
      display: block;
    }

    .title-line.highlight {
      background: linear-gradient(90deg, #38bdf8, #818cf8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
    }

    .hero-description {
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      line-height: 1.6;
      color: #cbd5e1;
      max-width: 600px;
      margin: 0;
      font-weight: 300;
    }

    .hero-actions {
      margin-top: 1rem;
    }

    .btn-glow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2.5rem;
      background-color: transparent;
      color: #38bdf8;
      border: 1px solid rgba(56, 189, 248, 0.5);
      border-radius: 9999px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
      position: relative;
      overflow: hidden;
    }

    .btn-glow::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .btn-glow:hover {
      background-color: rgba(56, 189, 248, 0.1);
      border-color: #38bdf8;
      box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
      color: #ffffff;
      transform: translateY(-2px);
    }

    .btn-glow:hover::before {
      left: 100%;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (min-width: 768px) {
      .hero-content {
        text-align: left;
      }
      .content-wrapper {
        align-items: flex-start;
      }
    }

/* Block 2 */
.eco-discovery-grid {
      --eco-bg: #0f1115;
      --eco-card-bg: #181b21;
      --eco-text-main: #e0e6ed;
      --eco-text-muted: #94a3b8;
      --eco-accent: #00f0ff;
      --eco-accent-hover: #00c8d6;
      --eco-border: rgba(255, 255, 255, 0.08);
      --font-family: system-ui, -apple-system, sans-serif;
      
      padding: 6rem 1.5rem;
      background-color: var(--eco-bg);
      color: var(--eco-text-main);
      font-family: var(--font-family);
    }

    .eco-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-header {
      margin-bottom: 3.5rem;
      border-left: 3px solid var(--eco-accent);
      padding-left: 1.5rem;
    }

    .eco-label {
      display: block;
      color: var(--eco-accent);
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .eco-title {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin: 0 0 0.75rem 0;
      background: linear-gradient(90deg, #fff, #94a3b8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .eco-subtitle {
      color: var(--eco-text-muted);
      font-size: 1.125rem;
      max-width: 600px;
      margin: 0;
      line-height: 1.6;
    }

    .eco-grid-layout {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .eco-grid-layout {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .eco-grid-layout {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, minmax(320px, auto));
      }
      
      .featured-span {
        grid-column: span 2;
        grid-row: span 2;
      }
      
      .wide-span {
        grid-column: span 2;
      }
    }

    .eco-card {
      background-color: var(--eco-card-bg);
      border: 1px solid var(--eco-border);
      border-radius: 1rem;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .eco-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
      border-color: rgba(0, 240, 255, 0.3);
    }

    .card-media {
      position: relative;
      width: 100%;
      height: 240px;
      overflow: hidden;
    }

    .featured-span .card-media {
      height: 360px;
    }

    .wide-span .card-media {
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .eco-card:hover .card-media img {
      transform: scale(1.05);
    }

    .media-overlay {
      position: absolute;
      top: 1rem;
      right: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .status-indicator {
      width: 8px;
      height: 8px;
      background-color: #22c55e;
      border-radius: 50%;
      box-shadow: 0 0 8px #22c55e;
      animation: pulse 2s infinite;
    }

    .tag-text {
      background-color: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      color: #fff;
      padding: 0.25rem 0.6rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      z-index: 1;
      background-color: var(--eco-card-bg);
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0 0 0.5rem 0;
      color: #fff;
    }

    .card-meta {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      color: var(--eco-accent);
      flex-wrap: wrap;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      background: rgba(0, 240, 255, 0.05);
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
    }

    .card-desc {
      color: var(--eco-text-muted);
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .action-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: color 0.2s ease;
      align-self: flex-start;
    }

    .action-link:hover {
      color: var(--eco-accent);
    }

    .wide-span {
      position: relative;
      min-height: 320px;
      justify-content: flex-end;
    }

    .card-content-overlay {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      z-index: 2;
    }

    .wide-span .card-body {
      background: linear-gradient(to top, rgba(15, 17, 21, 0.95), rgba(24, 27, 33, 0.8), transparent);
      padding: 3rem 2rem 2rem 2rem;
      border: none;
    }

    .overlay-title {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }

    .overlay-desc {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      max-width: 80%;
    }

    .btn-eco-primary {
      background-color: var(--eco-accent);
      color: #000;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 2rem;
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background-color 0.2s ease, transform 0.2s ease;
      align-self: flex-start;
    }

    .btn-eco-primary:hover {
      background-color: var(--eco-accent-hover);
      transform: scale(1.02);
    }

    @keyframes pulse {
      0% { opacity: 1; }
      50% { opacity: 0.5; }
      100% { opacity: 1; }
    }

    @media (max-width: 1023px) {
      .wide-span .card-media {
        position: relative;
        height: 240px;
      }
      
      .wide-span .card-body {
        background: var(--eco-card-bg);
      }
    }

/* Block 3 */
.neural-adventure-planner {
background-color: #050505;
color: #ffffff;
padding: 6rem 1.5rem;
position: relative;
overflow: hidden;
font-family: system-ui, -apple-system, sans-serif;
}

.neural-adventure-planner::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 40%),
radial-gradient(circle at 90% 80%, rgba(255, 0, 128, 0.05) 0%, transparent 40%);
z-index: 0;
pointer-events: none;
}

.planner-container {
max-width: 1400px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.planner-grid-layout {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 4rem;
align-items: center;
}

.planner-visual {
position: relative;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 2rem;
background: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(10px);
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.holographic-globe {
position: relative;
width: 100%;
aspect-ratio: 4/3;
overflow: hidden;
border-radius: 16px;
}

.holographic-globe img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(100%) contrast(1.2) brightness(0.8);
transition: filter 0.5s ease;
}

.holographic-globe:hover img {
filter: grayscale(0%) contrast(1.1) brightness(1);
}

.scan-line {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: #00f3ff;
box-shadow: 0 0 15px #00f3ff;
animation: scan 3s linear infinite;
opacity: 0.7;
}

@keyframes scan {
0% { top: 0%; opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { top: 100%; opacity: 0; }
}

.map-pins {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.pin {
position: absolute;
width: 12px;
height: 12px;
background: #ff0080;
border-radius: 50%;
top: var(--top);
left: var(--left);
box-shadow: 0 0 10px #ff0080;
}

.pulse::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
border-radius: 50%;
border: 1px solid #ff0080;
animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
0% { width: 12px; height: 12px; opacity: 1; }
100% { width: 40px; height: 40px; opacity: 0; }
}

.visual-stats {
display: flex;
justify-content: space-between;
padding: 0 1rem;
}

.stat-item {
text-align: center;
}

.stat-value {
display: block;
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(90deg, #fff, #aaa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.stat-label {
font-size: 0.75rem;
color: #888;
text-transform: uppercase;
letter-spacing: 1px;
}

.content-header {
margin-bottom: 2rem;
}

.content-title {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
letter-spacing: -1px;
line-height: 1.1;
background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.content-lead {
font-size: 1.1rem;
color: #a0a0a0;
line-height: 1.6;
max-width: 90%;
}

.control-panel {
display: flex;
flex-direction: column;
gap: 2rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
padding: 2rem;
border-radius: 20px;
}

.panel-row {
display: flex;
gap: 2rem;
}

.input-group {
flex: 1;
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.input-group.full-width {
flex: 1;
}

.input-label {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 1.5px;
color: #00f3ff;
font-weight: 600;
}

.chips-group {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}

.chip {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
color: #ccc;
padding: 0.5rem 1.2rem;
border-radius: 50px;
font-size: 0.85rem;
cursor: pointer;
transition: all 0.3s ease;
}

.chip:hover {
border-color: #fff;
color: #fff;
background: rgba(255, 255, 255, 0.05);
}

.chip.active {
background: #00f3ff;
border-color: #00f3ff;
color: #000;
font-weight: 600;
}

.range-slider-wrapper {
width: 100%;
}

.range-slider {
-webkit-appearance: none;
width: 100%;
height: 6px;
background: rgba(255, 255, 255, 0.1);
border-radius: 3px;
outline: none;
}

.range-slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: #ffffff;
cursor: pointer;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
transition: transform 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
transform: scale(1.2);
}

.range-labels {
display: flex;
justify-content: space-between;
margin-top: 0.5rem;
font-size: 0.75rem;
color: #666;
}

.metrics-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
width: 100%;
}

.metric-card {
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.05);
padding: 1rem;
border-radius: 12px;
display: flex;
align-items: center;
gap: 0.75rem;
}

.metric-icon {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: #fff;
font-size: 0.9rem;
}

.metric-info {
display: flex;
flex-direction: column;
}

.metric-name {
font-size: 0.7rem;
color: #888;
text-transform: uppercase;
}

.metric-val {
font-size: 0.95rem;
font-weight: 600;
color: #fff;
}

.metric-val.low {
color: #00ff88;
}

.planner-footer {
margin-top: 2rem;
text-align: right;
}

.generate-btn {
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: #ffffff;
color: #000;
text-decoration: none;
padding: 1rem 2rem;
border-radius: 50px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
position: relative;
overflow: hidden;
}

.generate-btn::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
transition: left 0.5s;
}

.generate-btn:hover::before {
left: 100%;
}

.generate-btn:hover {
box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

@media (max-width: 992px) {
.planner-grid-layout {
grid-template-columns: 1fr;
gap: 3rem;
}

.content-title {
font-size: 2rem;
}
}

@media (max-width: 576px) {
.panel-row {
flex-direction: column;
gap: 1.5rem;
}

.metrics-grid {
grid-template-columns: 1fr;
}

.metric-card {
justify-content: space-between;
}

.planner-footer {
text-align: center;
}
}

/* Block 4 */
.immersive-contact-form {
position: relative;
width: 100%;
padding: 6rem 1.5rem;
background-color: #0b0d12;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.form-container-wrapper {
display: grid;
grid-template-columns: 1fr;
max-width: 1000px;
width: 100%;
gap: 0;
background: #13161c;
border-radius: 24px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
border: 1px solid rgba(255, 255, 255, 0.08);
overflow: hidden;
}

@media (min-width: 992px) {
.form-container-wrapper {
grid-template-columns: 1fr 1fr;
min-height: 500px;
}
}

.form-visual-context {
position: relative;
min-height: 250px;
background-color: #1a1d26;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

@media (min-width: 992px) {
.form-visual-context {
min-height: 100%;
}
}

.topography-bg {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.6;
mix-blend-mode: luminosity;
filter: contrast(1.2) brightness(0.8);
transition: transform 10s ease;
}

.form-visual-context:hover .topography-bg {
transform: scale(1.05);
}

.visual-noise {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 2;
}

.form-content-block {
padding: 3rem 2.5rem;
display: flex;
flex-direction: column;
justify-content: center;
background: #13161c;
position: relative;
z-index: 5;
}

.form-header {
margin-bottom: 2.5rem;
}

.form-title {
font-size: 2rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 0.75rem;
letter-spacing: -0.02em;
}

.form-subtitle {
font-size: 0.95rem;
color: #94a3b8;
line-height: 1.6;
margin: 0;
}

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

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

.field-label {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #64748b;
font-weight: 600;
margin-left: 0.25rem;
}

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

.field-icon {
position: absolute;
left: 1rem;
color: #475569;
font-size: 1.1rem;
transition: color 0.3s ease;
z-index: 10;
}

.field-wrapper input {
width: 100%;
background: #0f1115;
border: 1px solid #2d3748;
border-radius: 12px;
padding: 1rem 1rem 1rem 3rem;
color: #e2e8f0;
font-size: 1rem;
font-family: inherit;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
outline: none;
}

.field-wrapper input::placeholder {
color: #4a5568;
}

.field-wrapper input:focus {
border-color: #3b82f6;
box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
background: #161b22;
}

.field-wrapper input:focus + .field-icon {
color: #3b82f6;
}

.form-action-area {
margin-top: 1rem;
}

.submit-button {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
padding: 1rem 1.5rem;
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
color: #ffffff;
font-size: 1rem;
font-weight: 600;
border: none;
border-radius: 12px;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
font-family: inherit;
}

.submit-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px -10px rgba(37, 99, 235, 0.5);
}

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

.button-text {
letter-spacing: 0.02em;
}
