:root {
  --blue: #006aff;
  --orange: #ff5500;
  --yellow: #ffe100;
  --white: #ffffff;
  --black: #0d0d0d;
  --blue-hover: #0055d4;
  --gray: #f4f6fa;
  --gray-mid: #e8ecf4;
  --text-main: #0d0d0d;
  --text-muted: #6b7280;
  --border: rgba(0, 0, 0, 0.09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: var(--text-main);
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 40%,
      rgba(0, 106, 255, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 45% at 80% 60%,
      rgba(255, 85, 0, 0.05) 0%,
      transparent 70%
    );
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s 0.1s forwards;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s 0.25s forwards;
}

.hero h1 span.blue {
  color: var(--blue);
}

.hero h1 span.yl {
  background: var(--yellow);
  color: var(--black);
  padding: 0 8px;
  display: inline-block;
}

.hero-sub {
  max-width: 500px;
  margin: 18px auto 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.4s forwards;
}

/* ─── GRID LAYOUT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

/* ─── LEFT – INFO PANEL ─── */
.info-panel {
  padding: 60px 50px 60px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideRight 0.8s 0.5s forwards;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.info-card {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  cursor: default;
}

.info-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 106, 255, 0.1);
}

.info-card .ic-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 106, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.info-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
}

.info-card small {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* Social strip */
.social-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s,
    color 0.25s;
}

.soc-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.soc-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ─── RIGHT – FORM PANEL ─── */
.form-panel {
  padding: 60px 0 60px 50px;
  border-left: 1px solid var(--border);
  opacity: 0;
  transform: translateX(40px);
  animation: slideLeft 0.8s 0.55s forwards;
}

.form-panel h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--black);
}

.form-panel h2 span {
  color: var(--blue);
}

.form-panel .form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  background: var(--gray);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  resize: none;
  appearance: none;
}

.field select option {
  background: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #b0b8c8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.12);
  background: #fff;
}

.field textarea {
  min-height: 130px;
}

/* topic pills */
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pill-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.pill {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--gray);
  color: var(--text-muted);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
}

.pill:hover,
.pill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* submit */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.25s,
    transform 0.2s;
  letter-spacing: 0.02em;
}

.btn-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-submit:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
}

.btn-submit:hover::after {
  transform: translateX(100%);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ─── SUCCESS STATE ─── */
.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 30px;
  gap: 16px;
}

.success-msg.show {
  display: flex;
}

.success-circle {
  width: 72px;
  height: 72px;
  background: rgba(0, 106, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: pop 0.4s cubic-bezier(0.36, 1.6, 0.6, 1);
}

.success-msg h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
}

.success-msg p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── MARQUEE BAND ─── */
.marquee-band {
  background: var(--black);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 18s linear infinite;
}

.marquee-track span {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 28px;
  color: var(--white);
}

.marquee-track span.dot {
  color: var(--yellow);
  padding: 0;
  font-size: 1.1rem;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 40px;
  background: #fff;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  background: #f7f8fa;
  border-radius: 18px;
  padding: 36px 40px;
  flex: 1 1 160px;
  max-width: 220px;
  opacity: 0;
  transform: translateY(16px);
}

.trust-item.visible {
  animation: fadeUp 0.5s forwards;
}

.trust-item .num {
  font-size: 2.6rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-item .num span {
  color: #888;
  font-size: 1.6rem;
  font-weight: 700;
}

.trust-item .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7f858f;
  margin-top: 8px;
}

.trust-div {
  display: none;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }

  .info-panel {
    padding: 40px 0 20px;
    animation-name: fadeUp;
  }

  .form-panel {
    padding: 30px 0 40px;
    border-left: none;
    border-top: 1px solid var(--border);
    animation-name: fadeUp;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-div {
    display: none;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px 40px;
  }

  .info-card {
    padding: 22px 20px;
  }
}

/* ============================================================
   SECTION 6 — Quote + Footer
   Add this to the bottom of your index.css

   Required font — add to <head> in index.html:
   <link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap" rel="stylesheet" />
============================================================ */

#section-6 {
  width: 100%;
  overflow-x: hidden;
}

/* ============================================================
   PART B — DARK FOOTER BLOCK
============================================================ */

.s6-dark-block {
  width: 100%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: clamp(40px, 5.5vw, 72px) clamp(32px, 4.5vw, 64px)
    clamp(48px, 7vw, 96px);
  gap: clamp(48px, 8vw, 110px);
}

/* ── TOP ROW: Lets Talk (left) + Nav (right) ── */

.s6-top-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
}

/* Lets Talk button — white outlined pill with arrow */
.s6-lets-talk {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  background: var(--white);
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 20px);
  text-decoration: none;
  /* Fixed width like in image ~260px at desktop */
  min-width: clamp(160px, 18vw, 260px);
  padding: clamp(14px, 1.4vw, 20px) clamp(20px, 2.4vw, 36px);
  border-radius: 0;
  letter-spacing: 0;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}

.s6-lets-talk:hover {
  background: var(--blue);
  color: var(--white);
}

.s6-btn-label {
  flex: 1;
}

.s6-btn-arrow {
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1;
}

/* Nav links */
.s6-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 56px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.s6-nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 20px);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.s6-nav-link:hover {
  color: var(--blue);
}

/* ── LOGO AREA ── */

.s6-logo-area {
  width: 100%;
}

.s6-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.s6-logo.loaded + .s6-logo-fallback {
  display: none;
}

/* Text fallback (shown until real logo image is added) */
.s6-logo-fallback {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 14px);
}

.s6-logo-mark {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 10vw, 140px);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.s6-logo-sub {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 28px);
  color: var(--white);
  letter-spacing: 0.28em;
  display: block;
}

/* ── INITIAL HIDDEN STATES (GSAP animates in) ── */
.s6-quote,
.s6-top-row,
.s6-logo-area {
  opacity: 0;
}

/* ── RESPONSIVE ── */

/* Tablet portrait */
@media (max-width: 768px) {
  .s6-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(24px, 4vw, 40px);
  }

  .s6-nav {
    justify-content: flex-start;
    gap: clamp(16px, 4vw, 32px);
  }

  .s6-lets-talk {
    min-width: clamp(140px, 45vw, 220px);
  }

  /* Logo fills full width on tablet */
  .s6-logo-area {
    width: 100%;
    overflow: hidden;
  }

  .s6-logo {
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile large */
@media (max-width: 600px) {
  .s6-quote {
    font-size: clamp(28px, 9vw, 52px);
  }

  .s6-dark-block {
    padding: 36px 20px 48px;
    gap: 32px;
  }

  /* Logo full width, contained, no overflow */
  .s6-logo-area {
    width: 100%;
    overflow: hidden;
  }

  .s6-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .s6-nav {
    gap: clamp(14px, 4vw, 24px);
  }

  .s6-nav-link {
    font-size: clamp(13px, 3.5vw, 16px);
  }
}

/* Mobile small */
@media (max-width: 380px) {
  .s6-quote-block {
    padding: 36px 16px;
  }

  .s6-dark-block {
    padding: 28px 16px 40px;
  }

  .s6-logo-area {
    width: 100%;
    overflow: hidden;
  }

  .s6-logo {
    width: 100%;
    max-width: 100%;
  }
}
.s6-copyright {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}

.s6-copyright p {
  margin: 0;
}

.s6-credit-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.s6-credit-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
