*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #f47c20;
  --navy: #1b2a5a;
  --navy-light: #253470;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --text-muted: #6b7a99;
  --shadow: 0 8px 32px rgba(27, 42, 90, 0.1);
  --shadow-hover: 0 16px 48px rgba(27, 42, 90, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27, 42, 90, 0.08);
  padding: 12px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 80px;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-family: "Nunito", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.logo-text span:first-child {
  color: var(--orange);
}
.logo-text span:last-child {
  color: var(--navy);
}

/* ── BANNER ── */
.banner {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background-image: url("../images/slider-2.webp");
  background-size: 100%;
  background-position: center;
}

/* ── CARDS SECTION ── */
.cards-section {
  background: var(--white);
  padding: 80px 5vw;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  background: rgba(244, 124, 32, 0.1);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.card:hover {
  border-color: var(--orange);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: var(--white);
}

.card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background 0.28s;
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--orange) 0%, #f99340 100%);
}

.card-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card .card-badge {
  display: inline-block;
  background: rgba(244, 124, 32, 0.12);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-top: 14px;
}

/* ── FORM SECTION ── */
.form-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 90px 5vw;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 124, 32, 0.12) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.form-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.form-container .section-header {
  margin-bottom: 40px;
}
.form-container .section-label {
  background: rgba(244, 124, 32, 0.18);
}
.form-container .section-header h2 {
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3px;
}

.form-group label .req {
  color: var(--orange);
  margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  font-family: "Nunito", sans-serif;
  font-size: 0.97rem;
  padding: 14px 18px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
  backdrop-filter: blur(4px);
}

.form-group select option {
  background: var(--navy);
  color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 28px;
  text-align: center;
}

.btn-submit {
  background: var(--orange);
  color: var(--white);
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 56px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(244, 124, 32, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(244, 124, 32, 0.6);
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 5vw;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

footer span {
  color: var(--orange);
}

/* ── SUCCESS TOAST ── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #22c55e;
  color: white;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .banner-content {
    margin: 0;
    padding: 80px 6vw;
    text-align: center;
  }
  .banner-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .banner-overlay {
    background: rgba(27, 42, 90, 0.72);
  }
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: 1;
  }
  .banner{
        background-image: url("../images/mobile-slider.webp");
        min-height: 80vh;
        background-position: bottom;
        background-repeat:no-repeat;
  }
}

@media (max-width: 600px) {
  /* .banner {
    min-height: auto;
  } */
  .banner-content {
    padding: 60px 5vw;
  }
  .cards-section,
  .form-section {
    padding: 60px 5vw;
  }
  .card {
    padding: 32px 24px;
  }
  .btn-submit {
    width: 100%;
  }
}
