/* Section */
.get-in-touch-section {
  margin: 140px 0; 
  text-align: center;
  position: relative;
}

/* Title */
.get-in-touch-title {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 70px;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.6) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* Mobile */
@media (max-width: 767px) {
  .get-in-touch-section {
    margin: 80px 0;
  }
}


/* Card */
.sales-form-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  background: #131318;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
text-align: left;
}

/* Header */
.sales-form-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: #FCFCFF99;
  margin-bottom: 6px;
margin-top: 0px;
}

.sales-form-header p {
  color: #A9A8AE;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Grid */
.cf7-grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .cf7-grid.two-col {
    grid-template-columns: 1fr;
  }

  .sales-form-card {
    padding: 32px;
  }
}

/* Fields */
.wpcf7 .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wpcf7 label {

font-size: 14px;
    color: #A9A8AE;
    opacity: 0.7;
}

/* Inputs */
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  background: #0e0f14;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 14px 16px;
  color: #A9A8AE;
  font-size: 14px;
margin-top: 4px;
}

.wpcf7 textarea {
  min-height: 80px;
  resize: none;
}

/* Focus */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #6c63ff;
}

/* Submit */
.submit-field {
  margin-top: 36px;
  text-align: center;
}

.wpcf7-submit {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #6c63ff, #7f74ff);
}

.wpcf7-submit:hover {
  opacity: 0.92;
}

/* Footer note */
.form-note {
  display: block;
  margin-top: 12px;
  font-size: 14px;
    color: #A9A8AE;
}


/* Layout */
.sales-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

/* Left */
.sales-left .sales-form-card {
  max-width: 100%;
}

/* Right */
.sales-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Info Cards */
.info-card {
  background: #131318;
  border-radius: 22px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  text-align: left;
}

.info-card h4 {
  font-size: 20px;
  font-weight: 600;
background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
margin-top: 0px;
}

.info-card ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.info-card li {
  color: #BBBBBB;
  font-size: 14px;
  margin-bottom: 10px;
}



/* Chat Button */
.chat-btn {

 display: inline-block;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 10px;

 
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;

 background: rgba(255, 255, 255, 0.04);
    border: 2px solid #2B2B2F;
    color: #C5C4C8 !important;
    font-weight: 600;
}

.chat-btn:hover {
     background: #A9A8AE;
    color: #0A0A0F !important;
}

/* Mobile */
@media (max-width: 991px) {
  .sales-layout {
    grid-template-columns: 1fr;
  }
}


.wpcf7 select{

    width: 100%;
color: #ffffff;
opacity: 0.6;
}
/* CF7 Select Dropdown Arrow Fix */
.wpcf7 select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L8 8L14 2' stroke='%23BBBBBB' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  
  background-repeat: no-repeat;
  background-position: right 20px center; 
  background-size: 16px 10px;             
  
  padding-right: 52px;                  
}
/* CF7 Textarea height reduce */
.wpcf7 textarea {
      min-height: 120px;
    height: 120px;
  resize: none;
}


/* STEP 3: Submit button gradient */
.wpcf7-submit {
  width: 100%;
  padding: 16px !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  font-weight: 600;
  cursor: pointer;

  background: linear-gradient(
    180deg,
    var(--sp-primary-gradient-start),
    var(--sp-primary-gradient-end)
  ) !important;
  border: 1px solid var(--sp-primary-border) !important;
  color: #BBBBBB !important;
}

.wpcf7-submit:hover {
  opacity: 0.95;
}



.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  color: #A9A8AE !important;
}

.wpcf7 input[type="email"]{
width: 100%;
}

/* HubSpot Form Styling - Slapshot Theme */

/* Form container - left align */
.hbspt-form .hs-form {
    text-align: left !important;
    
}

/* Form fields spacing */
.hbspt-form .hs-form .hs-form-field {
    margin-bottom: 20px !important;
}

/* Labels */
.hbspt-form .hs-form label {
    display: block !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: var(--font-primary) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    text-align: left !important;
}

/* Required asterisk */
.hbspt-form .hs-form .hs-form-required {
    color: #ff6b6b !important;
}

ul.inputs-list {
    margin: 0px;
    padding: 0px;
}

/* Input fields - consistent width */
.hbspt-form .hs-form .hs-input {
   
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    font-family: var(--font-primary) !important;
    font-size: var(--body-md) !important;
    line-height: var(--body-md-line) !important;
	width: 100%;  
}
input#LEGAL_CONSENT\.subscription_type_426040713-19aa2a53-c8c4-438d-a6fb-a15689a77221 {
    width: unset;
}
ul.inputs-list {
    margin: 0px;
}
/* Input focus state */
.hbspt-form .hs-form .hs-input:focus {
    outline: none !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Placeholder text */
.hbspt-form .hs-form .hs-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Textarea - same width as inputs */
.hbspt-form .hs-form textarea.hs-input {
  
    height: 150px !important;
    resize: none !important;
}

/* Error messages */
label.hs-error-msg.hs-main-font-element{
    list-style: none !important;
    padding: 0 !important;
    margin: 6px 0 0 0 !important;
    color: #ff6b6b !important;
    font-size: 14px !important;
}

label.hs-main-font-element{
	
	 color: #ff6b6b !important;
}

.hbspt-form .hs-form .hs-error-msgs li {
    list-style: none !important;
}

/* Legal/consent container - same width */
.hbspt-form .hs-form .legal-consent-container {
   
    margin-top: 32px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: left !important;
}

/* Legal text styling */
.hbspt-form .hs-form .legal-consent-container p,
.hbspt-form .hs-form .legal-consent-container .hs-richtext,
.hbspt-form .hs-form .legal-consent-container .hs-richtext p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-family: var(--font-primary) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
}

/* Checkbox row */
.hbspt-form .hs-form .hs-form-booleancheckbox {
    margin: 16px 0 !important;
}

.hbspt-form .hs-form .hs-form-booleancheckbox label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.hbspt-form .hs-form .hs-form-booleancheckbox input[type="checkbox"] {
    margin-top: 3px !important;
    flex-shrink: 0 !important;
}

/* Unsubscribe text */
.hbspt-form .hs-form .legal-consent-container .hs-form-booleancheckbox-display + p,
.hbspt-form .hs-form .legal-consent-container > p:last-of-type {
    margin-top: 16px !important;
    padding-top: 16px !important;
    border-top: none !important;
}

/* Submit button */
.hbspt-form .hs-form .hs-button.primary {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    font-family: var(--font-primary) !important;
    font-size: var(--body-md) !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    margin-top: 24px !important;
}




.hbspt-form .hs-form .hs-button.primary {
    background-color: rgba(255, 255, 255, 0.04) !important;
}
 
.hbspt-form .hs-form .hs-button.primary:hover {
 
background-color : #A9a8ae !important;
color:#0a0a0f !important;
}
 