/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --dark: #111;
  --accent: #c0392b;
  --light: #f5f2ed;
}


/* BODY */
body {
  font-family: 'Figtree', sans-serif;
  background: var(--light);
  color: var(--dark);
}

/* GRID */
.page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 100vh;
}

/* LEFT SIDE */
.left {
  background: var(--dark);
  color: white;
  display: flex;
  align-items: center;
  padding: 70px;
}

.left-inner {
  max-width: 440px;
}

.left-name {
  font-family: 'Bebas Neue';
  font-size: clamp(64px, 6vw, 90px);
  line-height: 0.9;
}

.left-name span {
  color: var(--accent);
}

.left-title {
  opacity: 0.6;
  margin: 12px 0 20px;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0;
}

.left-desc {
  opacity: 0.8;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* TRUST */
.trust-items {
  display: flex;
  gap: 32px;
  margin-top: 10px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 🔥 key */
  min-width: 90px;
}

.trust-item strong {
  font-size: 26px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-item span {
  font-size: 13px;
  color: #ddd;
  line-height: 1.3;
}

/* RIGHT SIDE */
.right {
  padding: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-inner {
  max-width: 460px;
  width: 100%;
}

.right-heading {
  font-family: 'Bebas Neue';
  font-size: clamp(44px, 4vw, 64px);
  margin-bottom: 10px;
}

.right-sub {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 30px;
}

/* FORM */
.contact-form {
  background: white;
  padding: 40px 32px;
  border-radius: 14px;
  border: 1px solid #ddd;
}

/* INPUT */
.form-group {
  margin-bottom: 22px;
}



input {
  width: 100%;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 6px;
  font-size: 15px;
}

textarea {
  width: 100%;
  padding: 18px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ddd;

  background: white; /* match dark inputs */
  color: black;

  font-family: 'Figtree', sans-serif;
  font-size: 14px;

  resize: vertical; /* allows user to expand */
  min-height: 100px;
}


input:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* OPTIONAL TAG */
.input-wrap {
  position: relative;
}

.optional {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  opacity: 0.5;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  padding: 18px;
  background: black;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* PRIVACY */
.privacy {
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.6;
}

/* SUCCESS */
.success-state {
  display: none;
  text-align: center;
  padding: 30px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  padding: 20px 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #777;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #777;
  text-decoration: none;
}

.footer-links a:hover {
  color: #aaa;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.left-inner,
.right-inner,
.contact-form {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

/* MOBILE */
@media (max-width: 768px) {
  .page {
    grid-template-columns: 1fr;
  }

  .left {
    padding: 40px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .right {
    padding: 40px 24px;
  }

  .right-heading {
    font-size: 34px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .trust-items {
    justify-content: space-between;
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}