
/* Block 1 */
:root {
      --hero-overlay-color: rgba(12, 12, 20, 0.65);
      --hero-text-primary: #ffffff;
      --hero-text-secondary: rgba(255, 255, 255, 0.85);
      --hero-accent-color: #0d6efd;
      --hero-accent-hover: #0b5ed7;
      --hero-font-main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      --hero-border-radius: 12px;
      --hero-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-section {
      width: 100%;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background-color: #1a1a1a;
      margin-bottom: 0;
    }

    .hero-container {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0;
    }

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

    .hero-bg-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      padding: 2rem;
      animation: fadeUp 0.8s ease-out forwards;
    }

    .hero-title {
      color: var(--hero-text-primary);
      font-family: var(--hero-font-main);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-text {
      color: var(--hero-text-secondary);
      font-family: var(--hero-font-main);
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      line-height: 1.6;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }

    .hero-action-area {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2.5rem;
      background-color: var(--hero-accent-color);
      color: #ffffff;
      text-decoration: none;
      font-family: var(--hero-font-main);
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: var(--hero-border-radius);
      transition: var(--hero-transition);
      box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
      border: 2px solid transparent;
    }

    .hero-cta-button:hover {
      background-color: var(--hero-accent-hover);
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(13, 110, 253, 0.5);
    }

    .hero-cta-button:focus {
      outline: 2px solid #ffffff;
      outline-offset: 4px;
    }

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

    @media (max-width: 768px) {
      .hero-content-wrapper {
        height: 500px;
      }
      
      .hero-content {
        padding: 1.5rem;
      }

      .hero-cta-button {
        width: 100%;
      }
    }

/* Block 2 */
.smart-safety-hub {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.smart-safety-hub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hub-header-wrapper {
  position: relative;
  z-index: 1;
}

.hub-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #eef2ff;
  color: #4361ee;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hub-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hub-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(13, 110, 253, 0.2);
}

.card-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .card-icon-box {
  transform: scale(1.1) rotate(3deg);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 0.75rem;
}

.card-text {
  color: #636e72;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-visual {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.9;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.feature-card:hover .card-visual {
  opacity: 1;
  filter: contrast(1.05);
}

.highlight-banner {
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.highlight-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
  transform: skewX(-20deg) translateX(100px);
}

.banner-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.banner-text {
  color: #b2bec3;
  margin: 0;
}

.btn-action {
  background-color: #4361ee;
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.btn-action:hover {
  background-color: #3a53d0;
  transform: translateX(5px);
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .hub-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .smart-safety-hub {
    padding: 3rem 0;
  }
  
  .hub-title {
    font-size: 1.75rem;
  }
  
  .highlight-banner {
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* Block 3 */
.immersive-globe-section {
padding: 6rem 0;
background-color: #0b0f19;
position: relative;
overflow: hidden;
color: #e0e6ed;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.global-wrapper {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 4rem;
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}
.globe-text-column {
flex: 1;
min-width: 320px;
max-width: 600px;
}
.globe-visual-column {
flex: 1;
min-width: 320px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.global-label {
display: inline-block;
padding: 0.5rem 1rem;
background: rgba(13, 110, 253, 0.1);
color: #4dabf7;
border: 1px solid rgba(13, 110, 253, 0.2);
border-radius: 50px;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 1.5rem;
backdrop-filter: blur(5px);
}
.global-headline {
font-size: 3rem;
line-height: 1.1;
font-weight: 800;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.global-description {
font-size: 1.125rem;
line-height: 1.7;
color: #94a3b8;
margin-bottom: 2.5rem;
border-left: 3px solid #4dabf7;
padding-left: 1.5rem;
}
.intelligence-list {
list-style: none;
padding: 0;
margin-bottom: 3rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.list-item {
gap: 1rem;
}
.status-indicator {
width: 12px;
height: 12px;
border-radius: 50%;
flex-shrink: 0;
box-shadow: 0 0 10px currentColor;
}
.status-safe {
background-color: #2ecc71;
color: #2ecc71;
animation: pulse-safe 2s infinite;
}
.status-moderate {
background-color: #f1c40f;
color: #f1c40f;
}
.status-alert {
background-color: #e74c3c;
color: #e74c3c;
animation: pulse-alert 1.5s infinite;
}
.item-content {
display: flex;
flex-direction: column;
}
.item-title {
font-weight: 700;
font-size: 1rem;
color: #f8f9fa;
}
.item-desc {
font-size: 0.875rem;
color: #6c757d;
}
.globe-cta-group {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.globe-primary-btn {
padding: 1rem 2rem;
background-color: #0d6efd;
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(13, 110, 253, 0.3);
}
.globe-primary-btn:hover {
background-color: #0b5ed7;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}
.globe-secondary-btn {
padding: 1rem 2rem;
background-color: transparent;
color: #e0e6ed;
text-decoration: none;
border: 1px solid #495057;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
}
.globe-secondary-btn:hover {
border-color: #e0e6ed;
background-color: rgba(255, 255, 255, 0.05);
}
.holographic-container {
position: relative;
width: 100%;
max-width: 550px;
aspect-ratio: 4/3;
background: radial-gradient(circle at center, #1e293b 0%, #0b0f19 70%);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.hologram-img {
width: 80%;
height: auto;
object-fit: cover;
border-radius: 50%;
filter: drop-shadow(0 0 20px rgba(77, 171, 247, 0.2));
z-index: 2;
opacity: 0.9;
}
.overlay-grid {
position: absolute;
inset: 0;
background-image: 
linear-gradient(rgba(77, 171, 247, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(77, 171, 247, 0.1) 1px, transparent 1px);
background-size: 40px 40px;
z-index: 1;
pointer-events: none;
}
.data-point {
position: absolute;
width: 8px;
height: 8px;
background-color: #fff;
border-radius: 50%;
z-index: 3;
box-shadow: 0 0 15px #fff, 0 0 30px #0d6efd;
}
.point-1 {
top: 30%;
left: 45%;
animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.point-2 {
top: 55%;
right: 30%;
background-color: #f1c40f;
box-shadow: 0 0 15px #f1c40f, 0 0 30px #f39c12;
animation: ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.point-3 {
bottom: 25%;
left: 35%;
background-color: #e74c3c;
box-shadow: 0 0 15px #e74c3c, 0 0 30px #c0392b;
animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pulse-safe {
0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
@keyframes pulse-alert {
0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}
@keyframes ping {
75%, 100% {
transform: scale(2);
opacity: 0;
}
}
@media (max-width: 992px) {
.global-headline {
font-size: 2.5rem;
}
}
@media (max-width: 768px) {
.global-wrapper {
flex-direction: column;
gap: 3rem;
padding: 0 1.5rem;
}
.globe-text-column {
max-width: 100%;
}
.global-headline {
font-size: 2rem;
}
.holographic-container {
aspect-ratio: 1/1;
width: 100%;
}
}

/* Block 4 */
.secure-consultation-wrapper {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.secure-consultation-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.booking-module-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .booking-module-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.consultation-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.5rem 1rem;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    line-height: 1.2;
    margin: 0;
}

.intro-paragraph {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.7;
}

.assurance-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #343a40;
}

.intro-visual {
    margin-top: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-visual:hover .intro-img {
    transform: scale(1.03);
}

.form-container-wrapper {
    perspective: 1000px;
}

.form-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

.form-floating > .form-control {
    border-radius: 0.75rem;
    border: 2px solid #e9ecef;
    padding: 1rem 0.75rem;
    height: auto;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.form-floating > label {
    padding: 0.75rem;
    color: #adb5bd;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #0d6efd;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.submit-btn {
    background-color: #212529;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}
