/**
 * 导师联系区（Instructor Contact）
 * 对应 shizi/beauty_instructor.html #contact 区块
 */

/* ========== 容器 ========== */
.gt-ict {
	width: 100%;
	box-sizing: border-box;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) center/cover;
	background-color: #1a1a1a;
	color: #fff;
	padding: 8rem 5%;
	text-align: center;
	background-attachment: fixed;
}

.gt-ict__inner {
	max-width: 1440px;
	margin: 0 auto;
}

/* ========== 副标题 ========== */
.gt-ict__subtitle {
	font-size: 0.8rem;
	color: var(--gt-ict-accent, #c9a77c);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 1rem;
	display: block;
}

/* ========== 标题 ========== */
.gt-ict__title {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
	font-size: 2.2rem;
	color: #fff;
	margin: 0 0 1.5rem;
}

/* ========== 描述 ========== */
.gt-ict__desc {
	color: #ddd;
	max-width: 600px;
	margin: 0 auto 4rem;
	font-size: 1rem;
	line-height: 1.8;
}

/* ========== 联系方式网格 ========== */
.gt-ict__methods {
	display: flex;
	justify-content: center;
	gap: 5rem;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

.gt-ict__method-label {
	color: var(--gt-ict-accent, #c9a77c);
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 2px;
	margin: 0 0 0.8rem;
}

.gt-ict__method-value {
	font-size: 1.05rem;
	color: #fff;
	font-weight: 400;
	margin: 0;
}

/* ========== CTA 按钮 ========== */
.gt-ict__btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	border: 1px solid #fff;
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s;
}

.gt-ict__btn:hover {
	background: #fff;
	color: #1a1a1a;
}

/* ========== 社交链接 ========== */
.gt-ict__social {
	margin-top: 4rem;
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.gt-ict__social a {
	color: #fff;
	text-decoration: none;
	font-size: 0.95rem;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	padding-bottom: 5px;
	border-bottom: 1px solid transparent;
}

.gt-ict__social a:hover {
	color: var(--gt-ict-accent, #c9a77c);
	border-bottom-color: var(--gt-ict-accent, #c9a77c);
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
	.gt-ict {
		padding: 4rem 5%;
		background-attachment: scroll;
	}
	.gt-ict__methods {
		gap: 2.5rem;
	}
	.gt-ict__title {
		font-size: 1.8rem;
	}
	.gt-ict__desc {
		margin-bottom: 2.5rem;
	}
	.gt-ict__social {
		margin-top: 2.5rem;
	}
}
