* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  height: 100%;
  background-color: #f7f9fc;
}

/* HEADER */
.site-header {
  background-color: #005aa7; /* Solid Blue */
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
  font-size: 24px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Add margin so content doesn’t hide behind header */
.split-container {
  margin-top: 80px;
  display: flex;
  height: calc(100vh - 140px); /* minus header + footer */
}

/* LEFT SIDE */
.left-side {
  width: 50%;
  background: linear-gradient(135deg, #003973, #005aa7); /* Blue gradient */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.content {
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
}

.countdown span {
  font-size: 28px;
  font-weight: 600;
}

.countdown small {
  font-size: 12px;
}

.mobile-contact {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

/* RIGHT SIDE */
.right-side {
  width: 50%;
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 100px 40px;
}

.form-box {
  width: 100%;
  max-width: 400px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.form-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #005aa7;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  width: 100%;
  padding: 12px;
  background: #005aa7;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #004080;
}

/* FOOTER */
.site-footer {
  background-color: #005aa7;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
    height: auto;
  }

  .left-side,
  .right-side {
    width: 100%;
    height: auto;
  }

  .form-box {
    margin-bottom: 50px;
  }
}
