/* =====================
   RESET & BASE
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background: #121212;
  color: #f0f0f0;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* =====================
   NAVIGATION
===================== */
nav {
  position: sticky;
  top: 0;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
nav ul {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 18px 0;
  list-style: none;
  font-weight: 600;
}
nav a {
  color: #ffffff;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #00e0ff;
}
nav a.active {
  color: #00e0ff;
}

/* =====================
   HERO / HEADER
===================== */
header {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(120deg, #0f0c29, #302b63, #24243e);
  z-index: 1;
  overflow: visible;
}
header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
header p {
  font-size: 1.25rem;
  color: #b0b0b0;
  max-width: 760px;
}

/* Floating shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 22s infinite ease-in-out;
}
@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(40px,-40px) rotate(180deg); }
}

/* =====================
   SECTIONS
===================== */
section {
  padding: 90px 20px;
}
h2 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 32px;
  background: linear-gradient(90deg,#00e0ff,#0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ABOUT */
#about p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.15rem;
  text-align: center;
  color: #d0d0d0;
  line-height: 1.8;
}

/* CORPORATE INFO */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 50px auto 0;
}
.card {
  background: #1c1c1c;
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.8);
}
.card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* CONTACT */
#contact form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact input,
#contact textarea {
  background: #222;
  border: 1px solid #333;
  color: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 1rem;
}
#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: #00e0ff;
  box-shadow: 0 0 14px rgba(0,224,255,0.4);
}
#contact button {
  background: linear-gradient(135deg,#00e0ff,#0099ff);
  color: #111;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
#contact button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,224,255,0.6);
}

/* FOOTER */
footer {
  background: #0e0e0e;
  padding: 50px 20px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}
footer a {
  color: #00e0ff;
  margin: 0 10px;
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  header h1 { font-size: 2.4rem; }
  header p { font-size: 1rem; }
  h2 { font-size: 2rem; }
}

/* =====================
   CLICKWRAP MODAL
===================== */
#clickwrap {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 99999;
  overflow: hidden;
}
#clickwrap .box {
  background: #1b1b1b;
  max-width: 640px;
  width: 90%;
  max-height: 80vh;
  padding: 44px;
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.95);
  text-align: center;
  display: flex;
  flex-direction: column;
  z-index: 100000;
  animation: popUp 0.35s ease-out;
}
#clickwrap h2 {
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
}
#clickwrap p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #cfcfcf;
  margin-bottom: 16px;
  line-height: 1.6;
  text-align: center;
}
#clickwrap .terms-container {
  overflow-y: auto;
  flex-grow: 1;
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #121212;
  text-align: center;
}
#acceptBtn {
  display: block;
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(135deg,#00e0ff,#0099ff);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  color: #111;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  opacity: 0.6;
}
#acceptBtn:enabled {
  opacity: 1;
}
#acceptBtn:hover:enabled {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,224,255,0.6);
}
@keyframes popUp {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.terms-container {
  height: 300px;      /* adjust as needed */
  overflow-y: auto;   /* enable vertical scroll */
  padding: 10px;
  border: 1px solid #ccc;
}
