/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1e90ff;          /* bright sky blue matching banners */
  --primary-dark: #0b6bcb;
  --primary-light: #5eb3ff;
  --secondary: #ff9f1c;        /* warm orange from title */
  --accent-red: #ff4d4d;
  --accent-green: #2ecc71;
  --accent-yellow: #f1c40f;
  --bg: #e8f4ff;
  --card: #ffffff;
  --text: #0f172a;
  --text-light: #475569;
  --border: #cce4ff;
  --shadow: 0 6px 24px rgba(30, 144, 255, 0.15);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.25;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* ===== Header ===== */
.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--primary);
}

.nav {
  display: flex;
  gap: 1.35rem;
}

.nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, #1e90ff 0%, #4dabff 100%);
  color: white;
  text-align: center;
  padding-bottom: 2.2rem;
  position: relative;
  padding-top: 0;
}

.hero-banner-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #1e90ff;
}

.hero-banner {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-content {
  padding-top: 1.4rem;
}

.hero-tagline {
  font-size: clamp(1.25rem, 3.5vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.hero-handle {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 5px 18px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.btn-secondary {
  background: var(--primary);
  color: white;
}

.btn-full {
  width: 100%;
  padding: 1.05rem;
  font-size: 1.15rem;
}

/* ===== Sections ===== */
.section {
  padding: 4rem 0;
}

.section h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 2.4rem;
  color: var(--primary-dark);
}

/* About */
.about {
  background: white;
}

.about-card {
  background: linear-gradient(135deg, #e8f4ff, #d6ebff);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 3px solid #b3d9ff;
}

.about-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 4px solid white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.about-card p {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-extra {
  font-size: 1.05rem !important;
  color: var(--text-light) !important;
}

/* Steps */
.steps {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  border-bottom: 5px solid var(--primary);
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.35);
}

.step-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.step-card p {
  color: var(--text-light);
  font-size: 0.98rem;
}

.important-note {
  text-align: center;
  background: #fff3cd;
  color: #856404;
  padding: 1.1rem 1.6rem;
  border-radius: 14px;
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto;
  border: 2px solid #ffeaa7;
  font-weight: 600;
}

/* QR Section */
.qr-section {
  background: white;
}

.qr-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.qr-text {
  flex: 1;
  min-width: 280px;
  max-width: 480px;
}

.qr-text h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.qr-text p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.qr-box {
  background: white;
  padding: 1.2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 4px solid var(--primary);
}

.qr-img {
  width: 220px;
  height: 220px;
  display: block;
}

/* Form */
.form-section {
  background: var(--bg);
}

.form-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.find-form {
  max-width: 560px;
  margin: 0 auto;
  background: white;
  padding: 2.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid #cce4ff;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: var(--primary-dark);
}

.required {
  color: #ef4444;
}

.form-group input[type="text"],
.form-group textarea,
.form-group input[type="file"] {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f8fbff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.15);
}

.form-group small {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-light);
  font-size: 0.85rem;
}

.form-success {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #e6ffed;
  border: 3px solid #a3e9b5;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
}

.form-success h3 {
  color: #0d6832;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: #1a7a42;
  margin-bottom: 1.5rem;
}

.hidden {
  display: none !important;
}

/* Privacy */
.privacy {
  background: white;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.privacy-card {
  background: var(--bg);
  padding: 1.8rem;
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  border-top: 5px solid var(--primary);
}

.privacy-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
}

.privacy-card p {
  color: var(--text-light);
  font-size: 0.97rem;
}

/* Links */
.links {
  background: var(--bg);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: white;
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  transition: all 0.2s;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.link-card small {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.85rem;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: #f0f8ff;
  color: var(--primary-dark);
}

.link-icon {
  font-size: 2.1rem;
  margin-bottom: 0.3rem;
}

.contact {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0b6bcb, #064a8f);
  color: white;
  text-align: center;
  padding: 3rem 0 2.5rem;
}

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid white;
}

.footer p {
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 1.15rem;
  opacity: 0.95;
}

.footer-small {
  font-size: 0.9rem;
  opacity: 0.75;
  font-weight: 500;
  margin-top: 0.6rem;
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
  .nav {
    display: none;
  }

  .hero-banner {
    max-height: none;
  }

  .qr-inner {
    flex-direction: column;
    text-align: center;
  }

  .qr-text h2 {
    text-align: center;
  }

  .find-form {
    padding: 1.6rem;
  }

  .section {
    padding: 3rem 0;
  }

  .logo-text {
    font-size: 1rem;
  }
}
