/* Social Grid */
.social-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.social-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1024px) {
	.social-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.social-card {
	background: #ffffff;
	border: 3px solid #1e1e1e;
	box-shadow: 6px 6px 0px #ff7043;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: #1e1e1e !important;
	display: block;
}

.social-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #7e57c2;
	transition: left 0.1s ease;
	z-index: 0;
}

.social-card:hover::before {
	left: 0;
}

.social-card:hover {
	transform: translate(-4px, -4px) rotate(-2deg);
	box-shadow: 10px 10px 0px #1e1e1e;
	color: #ffffff !important;
}

.social-card > * {
	position: relative;
	z-index: 1;
}

.social-card:hover > * {
	color: #ffffff !important;
}

.social-icon {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	display: block;
}

.social-name {
	font-family: 'Archivo Black', sans-serif;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.social-handle {
	font-size: 0.7rem;
	opacity: 0.7;
	margin-top: 0.25rem;
}

/* Contact Cards */
.contact-card {
	background: #ffffff;
	border: 3px solid #1e1e1e;
	box-shadow: 6px 6px 0px #7e57c2;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
}

.contact-card:hover {
	transform: translate(-4px, -4px);
	box-shadow: 10px 10px 0px #ff7043;
}

.contact-title {
	font-family: 'Archivo Black', sans-serif;
	font-size: 1.25rem;
	color: #1e1e1e !important;
	margin-bottom: 0.5rem;
}

.contact-email {
	font-size: 0.9rem;
	color: #7e57c2 !important;
	font-weight: bold;
	word-break: break-all;
}

.contact-desc {
	font-size: 0.8rem;
	color: #1e1e1e !important;
	margin-top: 0.75rem;
	opacity: 0.8;
}

/* Legal Buttons */
.legal-btn {
	background: #ffffff;
	border: 3px solid #1e1e1e;
	box-shadow: 6px 6px 0px #ff7043;
	padding: 1.5rem 2rem;
	font-family: 'Archivo Black', sans-serif;
	font-size: 1rem;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #1e1e1e !important;
	display: inline-block;
	text-decoration: none;
}

.legal-btn:hover {
	background: #ff7043;
	transform: translate(-4px, -4px);
	box-shadow: 10px 10px 0px #7e57c2;
}

/* FAQ */
.faq-item {
	background: #ffffff;
	border: 3px solid #1e1e1e;
	box-shadow: 6px 6px 0px #7e57c2;
	margin-bottom: 1.5rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 8px 8px 0px #ff7043;
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #ffffff;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #f5f5f5;
}

.faq-question h3 {
	font-family: 'Archivo Black', sans-serif;
	font-size: 1.1rem;
	color: #1e1e1e !important;
	margin: 0;
	padding-right: 1rem;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #ff7043;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #f5f5f5;
}

.faq-item.open .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 1.5rem;
	color: #1e1e1e !important;
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}  