
.contact-box-wrapper {
  padding: 60px 20px;
}

.contact-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-box {
  border: 2px solid #ff8c1a;
  border-radius: 20px;
  padding: 20px ;
}

/* Header (Icon Left + Title Right) */
.contact-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border: 2px solid #ff8c1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 40px;
}

.contact-box h3 {
  font-size: 22px;
  color: #666;
  margin: 0;
}

/* Contact info */
.split-info {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

	.split-info .left{
		width: 60%;
	}
.split-info .right {
  width: 50%;
}

.split-info p {
  margin: 0;
  font-size: 15px;
}

.info-icon {
  width: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

.split-info a {
  text-decoration: none;
  color: #555;
}

.split-info a:hover {
  color: #ff8c1a;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-box{
		padding: 12px;
	}
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-info {
    flex-direction: column;
  }

  .split-info .left,
  .split-info .right {
    width: 100%;
  }

  .contact-header {
    justify-content: flex-start;
  }
}


	
	
	
	
	
	
	/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  width: 100% !important;
  background: #f9f9f9 !important;
  padding: 70px 0 !important;
  font-family: "Poppins", sans-serif !important;
}

.contact-form-section .container {
  width: 90% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.section-title {
  text-align: center !important;
  font-size: 50px !important;
  font-weight: bold !important;
  color: #666 !important;
}

/* ===== CARD ===== */
.contact-form-section .contact-card {
  background: #fff !important;
  padding: 35px 40px !important;
  border-radius: 10px !important;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05) !important;
}

/* ===== ROWS ===== */
.contact-form-section .cf-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
}

.contact-form-section .cf-row p {
  flex: 1 !important;
  margin: 0 !important;
}

.contact-form-section .cf-field.full {
  width: 100% !important;
}

/* ===== INPUTS ===== */
.contact-form-section .wpcf7-form .cf-input,
.contact-form-section .wpcf7-form .wpcf7-text,
.contact-form-section .wpcf7-form .wpcf7-email,
.contact-form-section .wpcf7-form .wpcf7-tel,
.contact-form-section .wpcf7-form select,
.contact-form-section .wpcf7-form textarea {
  width: 500px !important;
  background: #f0f0f0 !important;
  border: none !important;
  height: 55px !important;
  border-radius: 6px !important;
  padding: 0 18px !important;
  font-size: 15px !important;
  color: #333 !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

/* ===== TEXTAREA ===== */
.contact-form-section .wpcf7-form textarea {
  height: auto !important;
  min-height: 130px !important;
  padding: 14px 18px !important;
  resize: vertical !important;
	    width: 100% !important;
}

/* ===== PLACEHOLDER ===== */
.contact-form-section .wpcf7-form ::placeholder {
  color: #888 !important;
}

/* ===== FOCUS STATE ===== */
.contact-form-section .wpcf7-form input:focus,
.contact-form-section .wpcf7-form select:focus,
.contact-form-section .wpcf7-form textarea:focus {
  background: #fff !important;
  border: 1px solid #1CA8CB !important;
  box-shadow: 0 0 6px rgba(28, 168, 203, 0.25) !important;
  outline: none !important;
}

/* ===== BUTTON ===== */
.contact-form-section .cf-submit {
  text-align: left !important;
}

.contact-form-section .cf-submit input[type="submit"] {
     background: linear-gradient(to right, #f97a00, #ff9100) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 40px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.contact-form-section .cf-submit input[type="submit"]:hover {
      background: linear-gradient(to right, #f97a00, #ff9100) !important;
}

/* ===== RESPONSIVE ===== */
	
	@media (max-width: 1220px){
		.contact-form-section .wpcf7-form .cf-input,
.contact-form-section .wpcf7-form .wpcf7-text,
.contact-form-section .wpcf7-form .wpcf7-email,
.contact-form-section .wpcf7-form .wpcf7-tel,
.contact-form-section .wpcf7-form select,
.contact-form-section .wpcf7-form textarea {
  width: 420px !important;
}
	}
@media (max-width: 991px) {
  .contact-form-section .cf-row {
    flex-direction: column !important;
    gap: 14px !important;
  }
.contact-form-section .wpcf7-form .cf-input,
.contact-form-section .wpcf7-form .wpcf7-text,
.contact-form-section .wpcf7-form .wpcf7-email,
.contact-form-section .wpcf7-form .wpcf7-tel,
.contact-form-section .wpcf7-form select,
.contact-form-section .wpcf7-form textarea {
  width: 100%!important;
}

  .contact-form-section .cf-submit {
    text-align: center !important;
  }

  .contact-form-section .cf-submit input[type="submit"] {
    width: 100% !important;
  }
}



