:root {
    --bg-dark: #060913;
    --bg-card: #0f172a;
    --accent-cyan: #00ffcc;
    --accent-purple: #9d4edd;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* TOP BAR */

.top-bar {
    background: #02040a;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-flex,
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info,
.top-contact {
    display: flex;
    gap: 15px;
}

.top-contact a {
    text-decoration: none;
    color: white;
}

.gold-text {
    color: gold;
}

.cyan-text {
    color: var(--accent-cyan);
}

.wa-btn {
    color: #25d366 !important;
}

/* HEADER */

.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 9, 19, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid #00ffcc33;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--accent-cyan);
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--accent-cyan);
    font-size: 22px;
}

.brand-name {
    display: block;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.brand-name span {
    color: var(--accent-cyan);
}

.brand-sub {
    font-size: 9px;
    color: var(--accent-purple);
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
}

.nav-menu a:hover {
    color: var(--accent-cyan);
}

.btn {
    text-decoration: none;
}

.btn-glow {
    background: var(--accent-purple);
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
}

/* HERO */

.hero-section {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.live-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: var(--accent-cyan);
    border-radius: 50%;
}

.hero-title {
    font-size: 48px;
    line-height: 1.3;
}

.highlight-text {
    color: var(--accent-cyan);
}

.hero-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 20px 0;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    padding: 14px 20px;
    border-radius: 7px;
}

.btn-primary {
    background: var(--accent-cyan);
    color: black;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

.hero-image-box {
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid var(--accent-cyan);
}

.floating-badge {
    position: absolute;
    background: #060913e8;
    padding: 15px;
    border: 1px solid var(--accent-cyan);
    border-radius: 10px;
}

.top-right {
    top: -15px;
    right: -15px;
}

.bottom-left {
    bottom: -15px;
    left: -15px;
}

.gold-icon {
    color: gold;
}

.pulse-green {
    width: 10px;
    height: 10px;
    background: lime;
    display: inline-block;
    border-radius: 50%;
}

.hero-metrics {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-box {
    background: var(--bg-card);
    padding: 25px;
    text-align: center;
    border: 1px solid #ffffff11;
    border-radius: 10px;
}

.metric-box h3 {
    color: var(--accent-cyan);
    font-size: 28px;
}

/* SERVICES */

.services-section,
.simulator-section,
.estimator-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-badge {
    color: var(--accent-cyan);
}

.section-title {
    font-size: 35px;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ffffff11;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
}

.card-icon {
    font-size: 40px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.solar-icon {
    color: gold;
}

.service-card p {
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.6;
}

/* SIMULATOR */

.simulator-panel {
    background: #0a0f1e;
    border: 1px solid #00ffcc33;
    border-radius: 15px;
    overflow: hidden;
}

.panel-header {
    background: black;
    padding: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.panel-title {
    float: right;
    color: var(--text-muted);
}

.simulator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px;
}

.control-card {
    position: relative;
    text-align: center;
    padding: 30px;
    border: 1px solid #ffffff22;
    border-radius: 12px;
    transition: 0.3s;
}

.status-indicator {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 10px;
    height: 10px;
    background: gray;
    border-radius: 50%;
}

.sim-icon {
    font-size: 50px;
    color: gray;
    margin-bottom: 15px;
}

.sim-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    cursor: pointer;
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 6px;
}

.sim-btn:hover {
    background: var(--accent-cyan);
    color: black;
}

/* ACTIVE LIGHT */

.active-light {
    border-color: gold;
    box-shadow: 0 0 25px #ffd70055;
}

.active-light .sim-icon,
.active-light .status-indicator {
    color: gold;
    background: gold;
}

/* ACTIVE FAN */

.active-fan {
    border-color: #00bfff;
}

.active-fan .sim-icon {
    color: #00bfff;
    animation: spinFan 0.8s linear infinite;
}

.active-fan .status-indicator {
    background: #00bfff;
}

@keyframes spinFan {
    100% {
        transform: rotate(360deg);
    }
}

/* ACTIVE SENSOR */

.active-sensor {
    border-color: #ff0055;
}

.active-sensor .sim-icon {
    color: #ff0055;
}

.active-sensor .status-indicator {
    background: #ff0055;
}

/* ESTIMATOR */

.estimator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #0a0f1e;
    padding: 40px;
    border-radius: 20px;
}

.control-group {
    margin-bottom: 30px;
}

.label-row {
    display: flex;
    justify-content: space-between;
}

.highlight-val {
    color: var(--accent-cyan);
}

input[type="range"] {
    width: 100%;
    margin-top: 15px;
}

.counter-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.cnt-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--accent-cyan);
}

.grade-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.grade-card {
    padding: 20px;
    border: 1px solid #ffffff22;
    border-radius: 10px;
    cursor: pointer;
}

.grade-card.active {
    border-color: var(--accent-cyan);
    background: #00ffcc15;
}

.toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-info {
    display: flex;
    gap: 10px;
}

.switch {
    position: relative;
    width: 50px;
    height: 25px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: gray;
    border-radius: 20px;
    cursor: pointer;
}

.slider::before {
    content: "";
    width: 18px;
    height: 18px;
    background: white;
    position: absolute;
    left: 4px;
    bottom: 3px;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .slider {
    background: var(--accent-cyan);
}

input:checked + .slider::before {
    transform: translateX(24px);
}

.estimator-display {
    border: 1px solid var(--accent-cyan);
    border-radius: 15px;
    padding: 30px;
}

.holo-header {
    color: var(--accent-cyan);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-cyan);
    display: inline-block;
    border-radius: 50%;
}

.est-label {
    margin-top: 40px;
    color: var(--text-muted);
}

.holo-price {
    font-size: 45px;
    margin: 15px 0;
    color: white;
}

.holo-line {
    margin: 25px 0;
    border-color: #ffffff22;
}

.bd-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.btn-cyber {
    width: 100%;
    padding: 15px;
    margin-top: 25px;
    border: none;
    cursor: pointer;
    background: var(--accent-cyan);
    font-weight: bold;
    border-radius: 8px;
}

/* MOBILE */

@media (max-width: 900px) {

    .hero-grid,
    .estimator-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .simulator-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-flex {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media (max-width: 600px) {

    .top-bar-flex,
    .top-info,
    .top-contact {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .estimator-wrapper {
        padding: 20px;
    }

}

/* Trust & Team Section Styling */
.team-section {
  padding: 5rem 0;
  background: rgba(6, 9, 19, 0.95);
}

/* License Banner */
.license-banner {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(0, 255, 204, 0.15));
  border: 1px solid var(--accent-cyan);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
}

.lb-icon {
  font-size: 2.8rem;
  color: #ffd700;
}

.lb-info h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.lb-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.lb-badge {
  background: #ffd700;
  color: #000;
  font-weight: 800;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-left: auto;
  white-space: nowrap;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.2);
}

.member-img-box {
  position: relative;
  height: 240px;
}

.member-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(6, 9, 19, 0.9);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.member-details {
  padding: 1.5rem;
}

.member-details h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.member-details .role {
  color: var(--accent-purple);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.member-details small {
  color: var(--text-muted);
  font-size: 0.78rem;
  display: block;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .license-banner { flex-direction: column; text-align: center; }
  .lb-badge { margin-left: 0; }
}

/* ULTRA FUTURISTIC TEAM HUD STYLING */
.cyber-team-section {
  padding: 6rem 0;
  background: #010309;
  position: relative;
  overflow: hidden;
}

.cyber-bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 255, 204, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(157, 78, 221, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

/* Section Sub Badge */
.sub-badge-cyber {
  background: rgba(0, 255, 204, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 255, 204, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.highlight-text-cyan {
  color: var(--accent-cyan);
  text-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

/* Holographic License HUD */
.holo-license-hud {
  position: relative;
  background: rgba(6, 11, 25, 0.85);
  border: 1px solid rgba(0, 255, 204, 0.25);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(0, 255, 204, 0.08);
  overflow: hidden;
}

/* HUD Corners */
.hud-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--accent-cyan);
  border-style: solid;
}
.top-left { top: 0; left: 0; border-width: 2px 0 0 2px; }
.top-right { top: 0; right: 0; border-width: 2px 2px 0 0; }
.bottom-left { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.bottom-right { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.hud-scanner-line {
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  animation: hudScan 4s infinite linear;
}

@keyframes hudScan {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hud-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.hud-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 3rem;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.badge-status {
  font-family: monospace;
  font-size: 0.65rem;
  background: rgba(0, 255, 204, 0.15);
  color: var(--accent-cyan);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  border: 1px solid var(--accent-cyan);
}

.hud-tag {
  font-family: monospace;
  color: var(--accent-cyan);
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.hud-info h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.hud-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Hexagon Badge */
.hud-badge-box { margin-left: auto; }
.hex-badge {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  width: 90px; height: 90px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
.hex-badge span { font-size: 1.2rem; line-height: 1; }
.hex-badge small { font-size: 0.55rem; letter-spacing: 1px; }

/* Cyber Team Grid */
.cyber-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.cyber-card {
  position: relative;
  background: rgba(10, 16, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cyber-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 35px rgba(0, 255, 204, 0.25);
}

/* Biometric Image Wrapper */
.cyber-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.cyber-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(110%);
  transition: 0.4s;
}

.cyber-card:hover .cyber-img-wrapper img {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.05);
}

/* Scanning Line Overlay */
.bio-scan-line {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
  opacity: 0;
  transition: 0.3s;
}

.cyber-card:hover .bio-scan-line {
  opacity: 1;
  animation: bioScan 2s infinite ease-in-out;
}

@keyframes bioScan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.hud-tag-floating {
  position: absolute;
  top: 15px; left: 15px;
  background: rgba(2, 6, 16, 0.85);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  padding: 0.3rem 0.7rem;
  font-family: monospace;
  font-size: 0.7rem;
  border-radius: 4px;
}

.status-indicator {
  position: absolute;
  bottom: 15px; right: 15px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-family: monospace;
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}

.dot-online {
  width: 6px; height: 6px;
  background: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff66;
}

/* Cyber Card Body */
.cyber-card-body { padding: 1.5rem; }

.tech-id {
  font-family: monospace;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.3rem;
}

.cyber-card-body h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.cyber-role {
  color: var(--accent-purple);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* Skill Progress Bar */
.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), #0088ff);
  box-shadow: 0 0 10px var(--accent-cyan);
}

@media (max-width: 850px) {
  .hud-content { flex-direction: column; text-align: center; }
  .hud-badge-box { margin-left: 0; margin-top: 1rem; }
}


/* ==========================================
   2050 BOOKING SECTION & FIXED MODAL STYLES
   ========================================== */

.cyber-booking-section {
  padding: 6rem 0;
  background: #02050d;
  position: relative;
  overflow: hidden;
}

.hud-bg-grid {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 204, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 204, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.holo-booking-container {
  position: relative;
  max-width: 950px;
  margin: 3rem auto 0;
  background: rgba(6, 12, 28, 0.85);
  border: 1px solid rgba(0, 255, 204, 0.25);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 50px rgba(0, 255, 204, 0.1), inset 0 0 25px rgba(0, 255, 204, 0.03);
}

/* Corner Decorators */
.hud-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--accent-cyan, #00ffcc);
  border-style: solid;
  pointer-events: none;
}
.hud-corner.top-left { top: 0; left: 0; border-width: 2px 0 0 2px; }
.hud-corner.top-right { top: 0; right: 0; border-width: 2px 2px 0 0; }
.hud-corner.bottom-left { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.hud-corner.bottom-right { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.holo-border-line {
  position: absolute;
  top: -1px; left: 20%; width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan, #00ffcc), transparent);
  box-shadow: 0 0 15px var(--accent-cyan, #00ffcc);
}

/* Inputs & Form Fields */
.form-grid-2050 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .form-grid-2050 { grid-template-columns: 1fr; }
  .holo-booking-container { padding: 1.5rem; }
}

.input-hud-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.2rem 1.2rem 0.8rem;
  transition: all 0.3s ease;
}

.input-hud-box.full-width {
  margin-top: 2rem;
}

.hud-input-tag {
  position: absolute;
  top: -10px; right: 15px;
  background: #02050d;
  border: 1px solid rgba(0, 255, 204, 0.4);
  color: var(--accent-cyan, #00ffcc);
  font-family: monospace;
  font-size: 0.65rem;
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
}

.input-hud-box label {
  color: #e0e0e0;
  font-size: 0.85rem;
  font-weight: 600;
}

.input-hud-box label i {
  color: var(--accent-cyan, #00ffcc);
  margin-right: 6px;
}

.input-hud-box input,
.input-hud-box select,
.input-hud-box textarea {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}

.input-hud-box select option {
  background: #060c1c;
  color: #fff;
}

.input-laser {
  position: absolute;
  bottom: 0; left: 0; width: 0%; height: 2px;
  background: var(--accent-cyan, #00ffcc);
  box-shadow: 0 0 10px var(--accent-cyan, #00ffcc);
  transition: 0.4s ease;
}

.input-hud-box:focus-within {
  border-color: var(--accent-cyan, #00ffcc);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.15);
  background: rgba(0, 255, 204, 0.03);
}

.input-hud-box:focus-within .input-laser {
  width: 100%;
}

/* File Dropzone */
.holo-dropzone {
  position: relative;
  border: 2px dashed rgba(0, 255, 204, 0.3);
  background: radial-gradient(circle, rgba(0, 255, 204, 0.05) 0%, rgba(2, 5, 13, 0.4) 100%);
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: 0.4s ease;
  overflow: hidden;
}

.holo-dropzone:hover {
  border-color: var(--accent-cyan, #00ffcc);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.25);
}

.holo-dropzone input[type=file] {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}

.holo-scan-ring {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  border: 2px solid rgba(0, 255, 204, 0.3);
  border-top-color: var(--accent-cyan, #00ffcc);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
  animation: holoSpin 4s infinite linear;
}

@keyframes holoSpin {
  100% { transform: rotate(360deg); }
}

.holo-cube-icon {
  font-size: 1.6rem;
  color: var(--accent-cyan, #00ffcc);
  animation: holoSpin 4s infinite linear reverse;
}

.dropzone-hud-content h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.dropzone-hud-content p {
  color: #a0aec0;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.file-status-tag {
  display: inline-block;
  background: rgba(0, 255, 204, 0.08);
  color: var(--accent-cyan, #00ffcc);
  border: 1px solid rgba(0, 255, 204, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-family: monospace;
  font-size: 0.8rem;
}

/* Cyber Button */
.btn-cyber-2050 {
  position: relative;
  width: 100%;
  margin-top: 2.2rem;
  background: #000;
  border: 1px solid var(--accent-cyan, #00ffcc);
  padding: 1.2rem 2rem;
  border-radius: 10px;
  color: var(--accent-cyan, #00ffcc);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
}

.btn-glow {
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.4), transparent);
  transition: 0.5s;
}

.btn-cyber-2050:hover .btn-glow {
  left: 100%;
}

.btn-cyber-2050:hover {
  background: var(--accent-cyan, #00ffcc);
  color: #000;
  box-shadow: 0 0 40px rgba(0, 255, 204, 0.6);
}

.btn-code {
  font-family: monospace;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ==========================================
   STRICT OVERLAY & MODAL CENTER FIX
   ========================================== */

.cyber-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(1, 3, 9, 0.88) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cyber-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

.cyber-modal-card-2050 {
  position: relative !important;
  margin: auto !important;
  background: #040918;
  border: 1px solid var(--accent-cyan, #00ffcc);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(0, 255, 204, 0.35);
  overflow: hidden;
}

.laser-scanner-line {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: var(--accent-cyan, #00ffcc);
  box-shadow: 0 0 15px var(--accent-cyan, #00ffcc);
}

.modal-icon-2050 {
  font-size: 3.2rem;
  color: var(--accent-cyan, #00ffcc);
  text-shadow: 0 0 25px var(--accent-cyan, #00ffcc);
  margin-bottom: 1rem;
}

.modal-title-2050 {
  color: #fff;
  font-family: monospace;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.modal-desc {
  color: #a0aec0;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.text-cyan {
  color: var(--accent-cyan, #00ffcc);
}

.modal-summary-2050 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 10px;
  padding: 1.2rem;
  margin-bottom: 1.8rem;
  text-align: left;
}

.ms-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.ms-row:last-child { margin-bottom: 0; }
.ms-row strong { color: #fff; }

.btn-cyber-close-2050 {
  width: 100%;
  background: var(--accent-cyan, #00ffcc);
  color: #000;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-cyber-close-2050:hover {
  box-shadow: 0 0 25px var(--accent-cyan, #00ffcc);
}


/* SHOWCASE SECTION */
.iot-showcase-section, .pricing-section, .faq-section {
  padding: 80px 0;
  background: #040814;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.showcase-card {
  background: rgba(16, 24, 39, 0.8);
  border: 1px solid var(--border-cyber);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.showcase-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-cyan);
}

.sc-img-box {
  position: relative;
  height: 200px;
}

.sc-img-box img {
  width: 100%; height: 100%; object-fit: cover;
}

.sc-tag {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--primary-cyan);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: monospace;
}

.sc-body { padding: 20px; }
.sc-body h4 { color: #fff; margin-bottom: 8px; }
.sc-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }

.sc-footer {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.sc-status { color: #00ff66; }

/* PRICING SECTION */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-cyber);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.popular-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary-cyan);
  color: #000;
  font-weight: bold;
  font-size: 0.7rem;
  padding: 2px 12px;
  border-radius: 10px;
}

.price-header h3 { color: #fff; margin-bottom: 10px; }
.price { font-size: 2.2rem; color: var(--primary-cyan); font-weight: bold; margin-bottom: 5px; }
.price span { font-size: 0.9rem; color: var(--text-muted); }

.price-features {
  list-style: none;
  margin: 25px 0;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 0.9rem;
}

.price-features li i { color: var(--primary-cyan); margin-right: 8px; }
.price-features li.disabled { color: var(--text-muted); opacity: 0.5; }

.btn-price {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--primary-cyan);
  color: var(--primary-cyan);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-price:hover, .active-btn {
  background: var(--primary-cyan);
  color: #000;
}

/* FAQ SECTION */
.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: rgba(16, 24, 39, 0.8);
  border: 1px solid var(--border-cyber);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-cyan);
}

/* MOST POPULAR Badging Fix */
.price-card.featured .popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-cyan, #00f0ff);
  color: #000000 !important;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
  letter-spacing: 1px;
}

/* Featured Button Contrast Fix */
.price-card.featured .btn-price {
  background: var(--primary-cyan, #00f0ff) !important;
  color: #000000 !important;
  border: none;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.price-card.featured .btn-price:hover {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 0 20px #ffffff;
}

/* Pricing Buttons Base Style */
.btn-price {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--primary-cyan, #00f0ff);
  color: var(--primary-cyan, #00f0ff);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  background: rgba(0, 240, 255, 0.05);
  transition: all 0.3s ease;
}

/* 1st & 3rd Card Hover Fix (মাউস নিলে কালার গাঢ় হবে ও টেক্সট স্পষ্ট থাকবে) */
.btn-price:hover {
  background: var(--primary-cyan, #00f0ff) !important;
  color: #000000 !important;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

/* Middle (Featured) Card Base & Hover Style */
.price-card.featured .btn-price {
  background: var(--primary-cyan, #00f0ff) !important;
  color: #000000 !important;
  border: none;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.price-card.featured .btn-price:hover {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 0 20px #ffffff;
  transform: translateY(-2px);
}