.tt {
	border: 1px solid var(--color-main);
    border-radius: 10px;
	padding: 5px;
	height: 180px;
}

.tt p {
	margin-top: -10px;
}

.custom-contact-form .form-title {
	color: var(--color-main);
}

.ct-form .col-inner {
	background-color: var(--color-white);
	border-radius: 15px;
	
}

.ct-form h2 {
	color: #1c2433;
	font-size: 1.6rem;
}

.ct-form label {
	font-size: 14px;
	color: #3e4859;
	margin-bottom: 8px;
	display: block;
}

.ct-form input[type="text"], .ct-form input[type="tel"], .ct-form select, .ct-form textarea {
	background-color: #f8fafd; 
	border: 1px solid #eef2f6; 
	border-radius: 10px;  
	padding: 6px 15px;
	font-size: 15px;
	color: #333;
	box-shadow: none;
	margin-bottom: 5px;
	width: 100%;
}

.ct-form .wpcf7-form-control-wrap input {
	background-color: #f8fafd; 
	border: 1px solid #eef2f6; 
	border-radius: 10px;  
	padding: 6px 15px;
	font-size: 15px;
	color: #333;
	box-shadow: none;
	margin-bottom: 5px;
	width: 100%;
}

.ct-form > .col-inner {
	 box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.ct-form input:focus,  .ct-form select:focus, .ct-form textarea:focus {
	border-color: var(--color-main);
	background-color: var(--color-white);
}

.ct-form textarea {
	height: 120px;
}

.ct-form .wpcf7-submit {
	background-color: var(--color-main);
	border: none 
	color: var(--color-white);
	font-size: 18px;
	border-radius: 10px;
	width: 100%;
	text-transform: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ct-form .wpcf7-submit:hover {
	box-shadow: 0 5px 15px rgba(11, 158, 106, 0.3) ;
}

.ct-form .wpcf7-spinner {
	display: none;
}

.custom-contact-form {
	padding: 20px;
}

/* Thông tin liên hệ */
.contact-info-wrap {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

/* BOX */
.contact-info-box {
    flex: 1;
    min-width: 280px;
    background: #f3f3f3;
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

/* CONTENT */
.contact-info-content h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-main);
}

.contact-info-content p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-main);
}

/* ICON */
.contact-info-icon {
    width: 100px;
    height: 100px;
    border: 6px solid var(--color-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--sage-green);
    position: absolute;
    right: -30px;
}

/* MOBILE */
@media(max-width:768px) {
    .contact-info-wrap {
        flex-direction: column;
    }

    .contact-info-box {
        width: 100%;
        min-width: 100%;
        padding: 25px 20px;
    }

    .contact-info-content h3 {
        font-size: 28px;
    }

    .contact-info-content p {
        font-size: 16px;
    }

    .contact-info-icon {
        width: 90px;
        height: 90px;
        font-size: 38px;
        right: -20px;
    }

}