﻿/* 聯絡我們專用樣式 */
.section-header {
		text-align: center;
		margin-bottom: 60px;
}
.section-title {
		font-size: 2.5rem;
		color: #333;
		margin-bottom: 15px;
		font-weight: 500;
}
.section-subtitle {
		font-size: 1.1rem;
		color: #999;
		line-height: 1.8;
}
/* 聯絡方式卡片 */
.contact-methods {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 30px;
		margin-bottom: 60px;
}
.contact-method-card {
		background: #fff;
		border-radius: 15px;
		padding: 40px 30px;
		text-align: center;
		box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
		transition: all 0.3s;
}
.contact-method-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 8px 30px rgba(212, 165, 165, 0.2);
}
.contact-icon {
		width: 80px;
		height: 80px;
		background: linear-gradient(135deg, var(--primary-color) 0%, #E8B4BC 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 25px;
		font-size: 2rem;
		color: #fff;
}
.contact-method-title {
		font-size: 1.3rem;
		color: #333;
		margin-bottom: 15px;
		font-weight: 500;
}
.contact-method-info {
		font-size: 1rem;
		color: #666;
		line-height: 1.8;
		margin-bottom: 20px;
}
.contact-method-link {
		display: inline-block;
		padding: 10px 25px;
		background: #FFF5F7;
		color: var(--primary-color);
		border-radius: 8px;
		text-decoration: none;
		transition: all 0.3s;
		font-size: 0.95rem;
}
.contact-method-link:hover {
		background: var(--primary-color);
		color: #fff;
		transform: scale(1.05);
}
/* 聯絡表單 */
.contact-form-wrapper {
		background: #fff;
		border-radius: 15px;
		padding: 50px;
		box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
		margin-bottom: 60px;
}
.form-section-title {
		font-size: 1.8rem;
		color: #333;
		margin-bottom: 30px;
		font-weight: 500;
		text-align: center;
}
/* 地圖與營業資訊 */
.location-info {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
		margin-bottom: 60px;
}
.map-wrapper {
		background: #fff;
		border-radius: 15px;
		overflow: hidden;
		box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
		height: 100%;
}
.map-wrapper iframe {
		width: 100%;
		height: 100%;
		border: none;
}
.store-info {
		background: #fff;
		border-radius: 15px;
		padding: 40px;
		box-shadow: 0 4px 20px rgba(212, 165, 165, 0.1);
}
.store-info-title {
		font-size: 1.5rem;
		color: #333;
		margin-bottom: 25px;
		font-weight: 500;
}
.info-item {
		display: flex;
		gap: 15px;
		margin-bottom: 20px;
		align-items: flex-start;
}
.info-icon {
		width: 40px;
		height: 40px;
		background: #FFF5F7;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		color: var(--primary-color);
		font-size: 1.1rem;
}
.info-content {
		flex: 1;
		display: grid;
		grid-template-columns: 1fr 2fr;
		gap: 10px;
}
.info-label {
		font-size: 1rem;
		color: #999;
		margin-bottom: 5px;
}
.info-value {
		font-size: 1rem;
		color: #333;
		line-height: 1.6;
}
/* FAQ 快速連結 */
.faq-quick-links {
		background: linear-gradient(135deg, var(--primary-color) 0%, #E8B4BC 100%);
		border-radius: 15px;
		padding: 50px;
		text-align: center;
		color: #fff;
}
.faq-title {
		font-size: 1.8rem;
		margin-bottom: 15px;
		font-weight: 500;
}
.faq-desc {
		font-size: 1rem;
		margin-bottom: 30px;
		opacity: 0.95;
}
.btn-faq {
		background: #fff;
		color: var(--primary-color);
		border: none;
		padding: 12px 40px;
		border-radius: 8px;
		font-size: 1rem;
		cursor: pointer;
		transition: all 0.3s;
		text-decoration: none;
		display: inline-block;
}
.btn-faq:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
		color: var(--primary-color);
}
/* 成功訊息 Modal */
.success-modal {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 10000;
		align-items: center;
		justify-content: center;
}
.success-modal.show {
		display: flex;
}
.success-modal-content {
		background: #fff;
		border-radius: 20px;
		padding: 50px;
		max-width: 500px;
		width: 90%;
		text-align: center;
		animation: successSlideDown 0.4s ease-out;
}
@keyframes successSlideDown {
		from {
				opacity: 0;
				transform: translateY(-50px) scale(0.9);
		}
		to {
				opacity: 1;
				transform: translateY(0) scale(1);
		}
}
.success-icon {
		width: 100px;
		height: 100px;
		background: #4CAF50;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 25px;
		font-size: 3rem;
		color: #fff;
		animation: successIconPop 0.6s ease-out 0.2s both;
}
@keyframes successIconPop {
		0% {
				transform: scale(0);
		}
		50% {
				transform: scale(1.1);
		}
		100% {
				transform: scale(1);
		}
}
.success-title {
		font-size: 1.8rem;
		color: #333;
		margin-bottom: 15px;
		font-weight: 500;
}
.success-message {
		font-size: 1rem;
		color: #666;
		line-height: 1.8;
		margin-bottom: 30px;
}
.btn-success-close {
		background: var(--primary-color);
		color: #fff;
		border: none;
		padding: 12px 40px;
		border-radius: 8px;
		font-size: 1rem;
		cursor: pointer;
		transition: all 0.3s;
}
.btn-success-close:hover {
		background: #C89B9B;
}
/* 社群媒體連結 */
.social-links-section {
		background: #FFF5F7;
		border-radius: 15px;
		padding: 40px;
		text-align: center;
		margin-bottom: 60px;
}
.social-links-title {
		font-size: 1.5rem;
		color: #333;
		margin-bottom: 20px;
		font-weight: 500;
}
.social-links-desc {
		font-size: 0.95rem;
		color: #666;
		margin-bottom: 30px;
}
.social-icons {
		display: flex;
		justify-content: center;
		gap: 20px;
}
.social-icon-link {
		width: 60px;
		height: 60px;
		background: #fff;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		color: var(--primary-color);
		text-decoration: none;
		transition: all 0.3s;
		box-shadow: 0 2px 10px rgba(212, 165, 165, 0.2);
}
.social-icon-link:hover {
		background: var(--primary-color);
		color: #fff;
		transform: translateY(-5px);
		box-shadow: 0 4px 20px rgba(212, 165, 165, 0.3);
}
@media (max-width: 991px) {
		.location-info {
				grid-template-columns: 1fr;
		}
		.contact-form-wrapper {
				padding: 35px 25px;
		}
		.store-info {
				padding: 30px 25px;
		}
		.section-title {
				font-size: 2rem;
		}
		.contact-methods {
				grid-template-columns: 1fr;
		}
		.faq-quick-links {
				padding: 35px 25px;
		}
}
@media (max-width: 576px) {
		.contact-form-wrapper {
				padding: 25px 20px;
		}
		.success-modal-content {
				padding: 35px 25px;
		}
		.social-icons {
				flex-wrap: wrap;
		}
	.map-wrapper{
		height: 400px;
	}
	.faq-title,
	.section-title,
	.form-section-title {
		font-size: 1.5rem;
	}
	.section-subtitle {
		font-size:.85rem;
	}
	.social-links-title,
	.store-info-title {
    font-size: 1rem;
	}
		.contact-method-title {
    font-size: 1.125rem;
	}
	.faq-desc,
	.social-links-desc {
		font-size:.75rem;
	}
	.social-icon-link {
    width: 40px;
		height:40px;
	}
	.contact-icon {
    width: 60px;
		height: 60px;
	}
}