/* ===== CONTACT SECTION ===== */
.contact {
  padding: 0;
}

.contact-wrap {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--side);
  display: flex;
  gap: 36px;
}

.contact-left {
  width: 515px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-left-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-shelf-img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ci {
  display: flex;
  align-items: center;
  gap: 26px;
}

.ci-top {
  align-items: flex-start;
}

.ci .ci-icon {
  width: 51px;
  height: 51px;
  flex-shrink: 0;
}

.ci .ci-icon img {
  width: 51px;
  height: 51px;
}

.ci .ci-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--black);
  line-height: 27px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 52px 45px;
  flex: 1;
}

.cf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
}

.cf-header .cf-titles {
  flex: 1;
}

.cf-header h3 {
  font-size: 27px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.cf-header .cf-sub {
  font-size: 21px;
  font-weight: 400;
  color: var(--black);
}

.cf-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 98px;
}

.cf-logo .cf-l-icon {
  height: 80px;
}

.cf-inputs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cf-input {
  border-bottom: 1px solid #e8c5a7;
  height: 82px;
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 18px;
  color: var(--black);
}

.cf-input input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  width: 100%;
  color: var(--black);
}

.cf-input input::placeholder {
  color: var(--black);
}

.cf-btn {
  margin-top: 27px;
  width: 100%;
  height: 73px;
  background: var(--orange);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: opacity 0.2s;
}

.cf-btn:hover {
  opacity: 0.9;
}

/* ===== COMPANY / STATS ===== */
.company {
  padding: 0 0 80px;
}

.company-wrap {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--side);
}

.company h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  line-height: 120px;
}

.company-desc {
  font-size: 21px;
  font-weight: 400;
  color: var(--black);
  line-height: 40px;
  max-width: 915px;
  margin-bottom: 25px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid #d4d4d4;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--page-w);
  margin: 80px auto 0;
  padding: 0 var(--side);
}

.footer p {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
}

.footer .f-logo {
  width: 127px;
  height: 66px;
}

/* ===== MOBILE BURGER ===== */
.mob-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mob-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: 0.3s;
}

.mob-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(252, 244, 237, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.mob-menu.active {
  display: flex;
}

.mob-menu a {
  text-decoration: none;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  padding: 16px 0;
}

.mob-menu a:hover {
  color: var(--orange);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-stagger.visible > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.reveal-stagger.visible > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.reveal-stagger.visible > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.reveal-stagger.visible > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.reveal-stagger.visible > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.ci-text a {
  color: inherit;
  text-decoration: none;
}

.ci-text a:hover {
  color: var(--orange);
}
