@charset "utf-8";
@media screen and (min-width: 1024px){
.footer {
	float: left;
	height: auto;
	width: 100%;
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #f7941d;
	background-color: #302783;
	padding-top: 2%;
	padding-bottom: 2%;
}
.footer-contact {
	float: left;
	height: auto;
	width: 50%;
	margin-top: 2%;
}

.name-footer {
	font-family: "Noto Sans Thai";
	font-size: 1.5rem;
	color: #FFF;
	float: left;
	height: auto;
	width: 100%;
	font-weight: bold;
	margin-bottom: 3%;
}

.footer-contact-01 {
	font-family: "Noto Sans Thai";
	font-size: 1rem;
	line-height: 120%;
	color: #FFF;
	background-image: url(../../images/frontend/icon-footer-01.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size:30px;
	float: left;
	height: auto;
	width: 80%;
	padding-top: 2%;
	padding-bottom: 2%;
	padding-left: 50px;
}
.footer-contact-01 a {
	color: #FFF;
	text-decoration: none;
}

.footer-contact-02 {
	font-family: "Noto Sans Thai";
	font-size: 1rem;
	line-height: 120%;
	color: #FFF;
	background-image: url(../../images/frontend/icon-footer-02.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 35px;
	float: left;
	height: auto;
	width: 80%;
	padding-top: 2%;
	padding-bottom: 2%;
	padding-left: 50px;
	margin-top: 2%;
	margin-bottom: 2%;
}
.footer-contact-03 {
	font-family: "Noto Sans Thai";
	font-size: 1rem;
	line-height: 120%;
	color: #FFF;
	background-image: url(../../images/frontend/icon-footer-03.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 35px;
	float: left;
	height: auto;
	width: 80%;
	padding-top: 2%;
	padding-bottom: 2%;
	padding-left: 50px;
}
.box-social-footer {
	float: right;
	height: auto;
	width: 20%;
	margin-top: 2%;
}
.title-social-footer {
	font-family: "Noto Sans Thai";
	font-size: 1.2rem;
	color: #FFF;
	float: left;
	height: auto;
	width: 100%;
	margin-bottom: 8%;
	text-align: left;
}
.icon-social-footer {
    display: flex;         /* ใช้ flex แทน float เพื่อให้ไอคอนเรียงกันสวยๆ */
    align-items: center;
    width: 100%;
    gap: 15px;             /* กำหนดระยะห่างระหว่างไอคอนแทน margin-right */
}

.icon-social-footer a {
    display: inline-block; /* เพื่อให้ transform ทำงานได้สมบูรณ์ */
    text-decoration: none;
}

.icon-social-footer img {
    display: block;
    width: 40px;           /* ขนาดไอคอน */
    height: auto;
    transition: transform 0.3s ease; /* หัวใจสำคัญ: ทำให้การขยายดูนุ่มนวล */
}

/* --- เอฟเฟกต์เมื่อวางเมาส์ (Hover) --- */

.icon-social-footer a:hover img {
    /* ขยายขนาดขึ้น 20% (ปรับเป็น 1.1 ถ้าอยากให้ขยายนิดเดียว) */
    transform: scale(1.2); 
    
    /* เพิ่มความสว่างเล็กน้อยเพื่อให้ดูเหมือนปุ่มกดได้ (Optional) */
    filter: brightness(1.2); 
}
}