:root {
  --primary: #00b4ff;
  --secondary: #0a2540;
  --bg: #f5f9fc;
  --card: #ffffff;
  --text: #1a1a1a;
}

[data-theme="dark"] {
  --bg: #0b1622;
  --card: #111e2e;
  --text: #ffffff;
}

* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: url("background.png") center / cover no-repeat fixed;
  color: var(--text);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.logo {
  max-width: 200px;
  margin-bottom: 2rem;
}
.form-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem;
}
.form-header {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

/* Theme toggle button */
.theme-toggle {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 180, 255, 0.12);
  color: #00b4ff;
  border: 1px solid rgba(0, 180, 255, 0.35);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle i {
  font-size: 0.9rem;
}

.theme-toggle:hover {
  background: rgba(0, 180, 255, 0.22);
}

/* Dark theme */
[data-theme="dark"] .theme-toggle {
  color: #7fd9ff;
  border-color: rgba(127, 217, 255, 0.4);
}


.intake-form {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.field label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

textarea {
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: var(--primary);
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.form-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: #0a2540; /* deep professional blue */
  margin-bottom: 0.4rem;
}

.tagline {
  font-family: "Pacifico", cursive;
  font-size: 1.2rem;
  color: #00b4ff; /* splash blue */
  letter-spacing: 0.5px;
  position: relative;
}

/* Subtle water underline */
.tagline::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #00b4ff,
    #7fd9ff
  );
  margin: 6px auto 0;
  border-radius: 999px;
}

/* Dark theme support */
[data-theme="dark"] .form-title {
  color: #ffffff;
}

[data-theme="dark"] .tagline {
  color: #7fd9ff;
}
/* Cube loader */
.cube {
  width: 220px;
  height: 140px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.22, 0.9, 0.18, 1);
}

.face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transform-origin: center;
  background-size: cover;
  background-position: center;
}

.face.back {
  transform: rotateY(180deg) translateZ(1px);
}

.cube.rotate {
  animation: flip 1.6s ease-in-out forwards;
}

@keyframes flip {
  0% { transform: rotateY(0deg); }
  60% { transform: rotateY(190deg); }
  100% { transform: rotateY(180deg); }
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: #3374ff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.download-btn:hover {
  background-color: #2a63ff;
}

.site-footer {
  background-color: #0a0f17;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-links {
  position: relative; /* ensure z-index works */
  z-index: 10; /* higher than the background image */
}


.footer-link:hover {
  color: #0056b3; /* darker accent on hover */
  text-decoration: underline;
}
.footer-link {
  display: inline-block;          /* makes padding clickable */
  padding: 8px 16px;              /* clickable area */
  margin: 0 8px;                  /* spacing between links */
  font-size: 14px;                /* readable */
  font-weight: 600;               /* slightly bold */
  color: var(--accent-color, #007bff); /* matches your theme */
  text-decoration: none;          /* remove underline */
  border-radius: 8px;             /* subtle rounded edges */
  transition: all 0.25s ease;     /* smooth hover */
  position: relative;             /* for pseudo-elements if needed */
}

.footer-link:hover {
  background-color: var(--accent-color, #007bff);
  color: #fff;
  transform: translateY(-2px);    /* subtle lift effect */
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Optional: active / focus state for accessibility */
.footer-link:focus {
  outline: 2px solid var(--accent-color, #007bff);
  outline-offset: 3px;
}
/* Existing footer styles stay the same */

.designer-credit {
  color: #ff69b4; /* bright pink */
  font-weight: 700; /* bold */
  text-decoration: none; /* no underline by default */
  transition: all 0.25s ease; /* smooth hover */
}

.designer-credit:hover {
  color: #ff1493; /* darker pink on hover */
  text-decoration: underline; /* subtle underline */
  transform: translateY(-1px); /* slight lift effect */
}







