.cf7-phone-table {
  width: 100%;
  border-collapse: collapse;
}

.cf7-phone-table td {
  border: none;
  padding: 0;
}

/* Country code: 25% width */
.cf7-phone-table td:first-child {
  width: 25%;
}

/* Phone number: remaining width */
.cf7-phone-table td:last-child {
  width: 75%;
}

/* Input styling */
.cf7-phone-table .cf7-country-code,
.cf7-phone-table .cf7-phone-number {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
.wpcf7 input[type="submit"] {float:right;}

.cf7-phone-group {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap; /* stack on small screens */
}
.wpcf7-form-control-wrap{
	width:48%;
}
.wpcf7-select{
	width:50%;
}
/* Country code dropdown fixed width */
.cf7-phone-group .cf7-country-code {
  flex: 0 0 120px; /* fixed width for dropdown */
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Phone input takes remaining space */
.cf7-phone-group .cf7-phone-number {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}


.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    line-height: 1.4 !important;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #2E86C1 !important;
    box-shadow: 0 0 5px rgba(46, 134, 193, 0.3);
    outline: none;
}

.wpcf7 input[type="submit"] {
    background: #2E86C1 !important;
    color: #fff !important;
    padding: 12px 24px;
    font-size: 16px;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: background 0.3s;
}

.wpcf7 input[type="submit"]:hover {
    background: #1A5276 !important;
}
