/*
Theme Name: Astra Child
Template: astra
Version: 1.0.0
*/

/* Social media icons row above footer content */
.ast-child-social {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px 0 6px;
}

.ast-child-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.ast-child-social a:hover {
	opacity: 0.85;
	transform: translateY(-3px);
}

.ast-child-social svg {
	width: 20px;
	height: 20px;
}

.ast-child-social .social-linkedin { background-color: #0a66c2; }
.ast-child-social .social-facebook { background-color: #1877f2; }
.ast-child-social .social-youtube { background-color: #ff0000; }
.ast-child-social .social-instagram { background-color: #e4405f; }
.ast-child-social .social-x { background-color: #ffffff; }

/* RFQ form styles (Contact Form 7) */
.wpcf7 .rfq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wpcf7 .rfq-field { display: flex; flex-direction: column; }
.wpcf7 .rfq-field label { font-size: 13px; font-weight: 700; margin-bottom: 6px; color: #374151; }
.wpcf7 .rfq-field input[type="text"],
.wpcf7 .rfq-field input[type="email"],
.wpcf7 .rfq-field select,
.wpcf7 .rfq-field textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 15px;
	font-family: inherit;
	box-sizing: border-box;
	background: #fff;
}
.wpcf7 .rfq-field input:focus,
.wpcf7 .rfq-field select:focus,
.wpcf7 .rfq-field textarea:focus { border-color: #2563eb; outline: none; }
.wpcf7 .rfq-field input[type="file"] { font-size: 14px; padding: 8px 0; }
.wpcf7 .rfq-full { grid-column: 1 / -1; }
.wpcf7 input[type="submit"] {
	background: #2563eb;
	color: #fff;
	border: none;
	padding: 14px 40px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}
.wpcf7 input[type="submit"]:hover { background: #1d4ed8; }
.wpcf7-not-valid-tip { color: #dc2626; font-size: 13px; margin-top: 4px; }
.wpcf7 form .wpcf7-response-output { margin: 1em 0; padding: 12px 18px; border-radius: 6px; }

@media (max-width: 640px) {
	.wpcf7 .rfq-grid { grid-template-columns: 1fr; }
}
