/* ===================================================
   contact.css – Let's Move Contact Page
   =================================================== */

/* Page Wrapper */
.contact-page-wrap {
  min-height: 100vh;
  position: relative;
  font-family: 'Poppins', sans-serif;
}


/* Container */
.cb-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ───── Hero ───── */
.cb-hero {
  padding: 140px 0 40px;
}
.cb-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cb-hero-left {
  max-width: 736px;
}
.cb-badge {
  display: inline-block;
  background: #f9a61a;
  color: #fdfefe;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 23px;
  border-radius: 44px;
  box-shadow: 0 4px 20px rgba(249,166,26,0.40);
  margin-bottom: 32px;
}
.cb-hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(135deg, #fdfefe 0%, #f9a61a 98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px 0;
}
.cb-hero-sub {
  font-size: 14px;
  font-weight: 500;
  color: #a0a1a1;
  line-height: 1.6;
  margin: 0;
  max-width: 730px;
}
.cb-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f9a61a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ───── Contact Card Section ───── */
.cb-section {
  padding-bottom: 80px;
}
.cb-card {
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: stretch;
  padding: 32px 64px;
  gap: 32px;
  position: relative;
  overflow: hidden;
  min-height: 531px;
}

/* Gold glow blob inside card */
.cb-card-blob {
  position: absolute;
  width: 496px;
  height: 496px;
  border-radius: 50%;
  top: -167px;
  right: -130px;
  background: linear-gradient(
    140deg,
    rgba(249,166,26,0.22) 0%,
    rgba(249,166,26,0) 60%
  );
  pointer-events: none;
  z-index: 0;
}

/* Left: image panel */
.cb-img-panel {
  width: 384px;
  min-height: 467px;
  border-radius: 10px;
  background: url('../images/fitness2.jpeg') center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  overflow: hidden;
  z-index: 1;
  box-shadow: inset 0 5px 10px rgba(253,254,254,0.93);
}
.cb-img-overlay {
  width: 100%;
  padding: 24px 18px 23px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0) 100%);
}
.cb-img-overlay p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

/* Company Info */
.cb-company-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Company Info Section - Below card */
.cb-company-section {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(249,166,26,0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.cb-company-info-block {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.cb-company-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cb-company-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #a0a1a1;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}
.cb-company-value {
  font-size: 14px;
  font-weight: 500;
  color: #fdfefe;
  font-family: 'Poppins', sans-serif;
}

/* Right: form panel */
.cb-form-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.cb-form-title {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #111111 0%, #777777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 27px 0;
}

/* Form fields */
.cb-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 21px;
}
.cb-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cb-label {
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #111111 0%, #777777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Gradient-border wrapper */
.cb-input-wrap {
  background: linear-gradient(to right, #111111, rgba(119,119,119,0.41));
  border-radius: 10px;
  padding: 1px;
}
.cb-input-wrap input {
  display: block;
  width: 100%;
  height: 38px;
  background: #ffffff;
  border: none;
  border-radius: 9px;
  padding: 0 14px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #111111;
  outline: none;
  box-sizing: border-box;
}
.cb-input-wrap input::placeholder {
  color: #b8b8b8;
}
.cb-input-wrap input:focus {
  background: #fafafa;
}

/* Checkbox + submit */
.cb-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cb-check-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cb-check-row input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #f9a61a;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}
.cb-check-label {
  font-size: 10px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #111111, #777777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  line-height: 1.4;
}
.cb-check-label a {
  -webkit-text-fill-color: #f9a61a;
  color: #f9a61a;
  text-decoration: underline;
}

.cb-submit {
  display: block;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, #f9a61a 0%, #93620f 100%);
  border: none;
  border-radius: 10px;
  color: #fdfefe;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.cb-submit:hover  { opacity: 0.88; transform: translateY(-1px); }
.cb-submit:active { transform: translateY(0); }

.cb-success {
  display: none;
  background: rgba(249,166,26,0.10);
  border: 1px solid #f9a61a;
  border-radius: 10px;
  padding: 10px 16px;
  color: #f9a61a;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 8px;
}
.cb-error {
  display: none;
  background: rgba(220,50,50,0.10);
  border: 1px solid rgba(220,50,50,0.50);
  border-radius: 10px;
  padding: 10px 16px;
  color: #e06060;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

/* ─── Map Section ─── */
.cb-map-section {
  width: 100%;
  padding: 0 0 80px 0;
  margin: 0;
}
.cb-map-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.cb-map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 10px;
  filter: saturate(0.7) brightness(0.85) contrast(1.15) sepia(0.08);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .cb-card {
    flex-direction: column;
    padding: 32px 24px;
  }
  .cb-img-panel {
    width: 100%;
    min-height: 280px;
  }
  .cb-hero-icon { display: none; }
  .cb-company-section {
    margin-top: 32px;
    padding: 24px;
  }
  .cb-company-info-block {
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .cb-hero-title { font-size: 24px; }
  .cb-card { padding: 24px 16px; gap: 24px; }
  .cb-map-container iframe {
    height: 350px;
  }
  .cb-company-section {
    margin-top: 24px;
    padding: 20px 16px;
  }
  .cb-company-info-block {
    flex-direction: column;
    gap: 20px;
  }
}
