/* Two-column trial area */
  .trial{
    display:flex;
    gap:40px;
    align-items:flex-start;
  }

  .trial-left{
    width:42%;
    padding-top:6px;
  }

  /* Left side styling (bigger) */
  .trial-left h2{
    color:var(--red);
    font-size:38px;      /* increased — big like screenshot */
    line-height:1.02;
    margin-bottom:22px;
    font-weight:800;
  }
  .trial-left p{
    font-size:18px;      /* larger body text */
    color:var(--muted);
    margin-bottom:14px;
    max-width:420px;
  }
  .trial-left p.urgent{
    color:var(--dark-red);
    font-weight:700;
    margin-top:8px;
    margin-bottom:18px;
    font-size:17px;
  }

  .contact-line{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    color:#222;
    margin-top:10px;
  }
  .contact-line .mail-icon{
    width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center;
    background:transparent; border-radius:6px;
    color:var(--red);
    font-weight:700;
  }




  /* Right form bigger labels & inputs */
  .trial-form{
    width:100%;
    background:transparent;
  }
  form{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:14px;
    align-items:start;
  }

  label{
    display:block;
    font-size:15px;  /* slightly bigger label */
    font-weight:700;
    margin-bottom:8px;
    color:#111;
  }

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 15.5px;
  line-height: 1.5;     /* ensures letters like g,y,p don't get clipped */
  height: auto;         /* allow natural height */
  outline: none;
  box-sizing: border-box;
}

  textarea{height:120px; resize:vertical; padding-top:14px; font-size:15px}
  select{appearance:none; background-image:linear-gradient(transparent,transparent);}

  /* full-width (span two columns) */
  .full { grid-column: 1 / -1; }

  /* big pill SEND button */
  .btn-send{
    grid-column: 1 / -1;
    height:60px;                /* tall like screenshot */
    border-radius:40px;
    background:linear-gradient(90deg,var(--red),var(--dark-red));
    color:#fff;
    border:none;
    font-weight:800;
    font-size:18px;
    cursor:pointer;
    box-shadow:0 8px 30px rgba(198,33,33,0.18);
    margin-top:6px;
  }
  .btn-send:active{transform:translateY(1px)}

  /* small helper (mac address note) */
  .muted { font-size:13px; color:var(--muted); margin-top:6px; }

  
  /* responsive adjustments */
  @media (max-width:980px){
      .contact-main-wrapper .contact-form-items {
    background-color: var(--bg5);
    padding: 40px 10px !important;
}
    .trial{flex-direction:column}
    .trial-left, .trial-form{width:100%}
    .wrap{padding:28px 18px 100px}
    .trial-left h2{font-size:36px}
    .banner{height:36vh}
  }


.contact-btn {
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #00c6ff, #f45cba); /* blue → pink */
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
/* Footer Section */





/* ===== Responsive Fixes for Trial Page ===== */
@media (max-width: 980px) {
  /* Trial section stacked */
  .trial {
    flex-direction: column;
    gap: 30px;
  }
  .trial-left, 
  .trial-form {
    width: 100%;
  }
  .trial-left h2 {
    font-size: 36px;
  }
  .banner {
    height: 36vh;
  }
  .wrap {
    padding: 28px 18px 80px;
  }
}



@media (max-width: 520px) {
  .trial-left h2 {
    font-size: 28px;
  }
  label {
    font-size: 14px;
  }
  input, select, textarea {
    font-size: 14px;
  }
  .banner {
    height: 28vh;
  }
}

.consent-text {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin: 15px 0;
}
#trialThankYou {
  display: none;
  background: #f0fff0; /* light green background */
  padding: 30px;
  border-radius: 15px;
  color: #2d7a2d;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.consent-box {
  font-size: 13px;
  color: #ccc;
  margin: 15px 0;
  line-height: 1.5;
}
.consent-box a {
  color: #red;
  text-decoration: underline;
}
.consent-box input {
  margin-right: 8px;
}


.trial-form {
  background: #fff; /* white background */
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  max-width: 500px;
  margin: auto;
  display: flex;
  justify-content: center; /* centers form horizontally */
}

.trial-form form {
  width: 100%; /* form fills the box */
  max-width: 420px; /* keeps inputs from stretching too much */
  display: flex;
  flex-direction: column;
  align-items: center; /* center all elements */
}

.trial-form h2 {
  text-align: center;
  color: #e62b2b;
  margin-bottom: 30px;
  font-size: 28px;
}

.input-group {
  margin-bottom: 22px;
  width: 100%;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #000;
  font-size: 17px;
  text-align: left;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 16px 15px;
  border-radius: 12px;
  border: 1px solid #e62b2b;
  font-size: 17px;
  transition: 0.3s;
  background: #fff;
  color: #000;
}

.input-group input::placeholder {
  color: #999;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: #ff4b4b;
  box-shadow: 0 0 10px rgba(230,43,43,0.3);
}

.input-group small {
  display: block;
  margin-top: 5px;
  color: #555;
  font-size: 14px;
}

.btn-send {
  background: #e62b2b;
  color: #fff;
  padding: 16px 25px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.btn-send:hover {
  background: #ff4b4b;
}

.btn-group {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}

.btn-send.back {
  background: #555;
}

.btn-send.back:hover {
  background: #777;
}

.form-step {
  display: none;
  animation: slideIn 0.5s ease;
}

.form-step.active {
  display: block;
}

@keyframes slideIn {
  0% {opacity:0; transform: translateX(50px);}
  100% {opacity:1; transform: translateX(0);}
}


/* Responsive */
@media(max-width:768px){

/* Footer Logo for Mobile */

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  font-size: 0; /* <-- important */
  text-decoration: none; /* just in case */
}


.whatsapp-btn img {
  width: 70%;  /* fits nicely inside the circle */
  height: 70%;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Mobile Adjustment */
@media (max-width: 600px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn img {
    width: 70%;
    height: 70%;
  }
}

.select-form{
	width: 100%;
    padding: 16px 15px;
    border-radius: 12px;
    border: 1px solid #e62b2b;
    font-size: 17px;
    transition: 0.3s;
    background: #fff;
    color: #000;
}