/* Modern Info Pages Styles for ConstruDepot */

body {
	background: #f8f9fa;
	margin: 0 !important;
	padding: 0 !important;
}

/* Remove extra spacing */
body > div:first-of-type {
	margin-top: 0 !important;
}

/* Main Container */
.info-main-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 60px 20px;
}

/* Page Header */
.info-header {
	background: white;
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-left: 6px solid #f7931d;
}

.info-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 16px;
}

.info-title svg {
	color: #f7931d;
	flex-shrink: 0;
}

.info-subtitle {
	font-size: 1.1rem;
	color: #6b7280;
	margin-top: 12px;
	line-height: 1.6;
}

/* Content Sections */
.info-content {
	background: white;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	margin-bottom: 30px;
}

.info-section {
	margin-bottom: 40px;
}

.info-section:last-child {
	margin-bottom: 0;
}

.section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 20px 0;
	padding-bottom: 12px;
	border-bottom: 3px solid transparent;
	background: linear-gradient(90deg, #f7931d 26%, #0673B5 100%) left bottom no-repeat;
	background-size: 100% 3px;
	display: inline-block;
}

.info-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #4b5563;
	margin-bottom: 20px;
}

/* Lists */
.info-list {
	list-style: none;
	counter-reset: item;
	padding-left: 0;
}

.info-list li {
	counter-increment: item;
	position: relative;
	padding-left: 60px;
	margin-bottom: 24px;
	font-size: 1.05rem;
	line-height: 1.7;
	color: #4b5563;
}

.info-list li:before {
	content: counter(item);
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(135deg, #f7931d 0%, #ffab4a 100%);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: 0 4px 12px rgba(247, 100, 32, 0.25);
}

.info-list strong {
	color: #1f2937;
	font-weight: 600;
}

/* FAQ Accordion Style */
.faq-item {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
	border-left: 4px solid #f7931d;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transform: translateX(4px);
}

.faq-question {
	font-weight: 700;
	font-size: 1.15rem;
	color: #1f2937;
	margin-bottom: 12px;
}

.faq-answer {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

.faq-answer a {
	color: #f7931d;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s;
}

.faq-answer a:hover {
	border-bottom-color: #f7931d;
}

/* Map Container */
.map-container {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.map-container iframe {
	width: 100%;
	height: 450px;
	border: none;
}

.location-info {
	padding: 24px;
	background: #f8f9fa;
	border-top: 4px solid #f7931d;
}

.location-info p {
	margin: 0;
	font-size: 1.1rem;
	color: #1f2937;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
}

.location-info svg {
	color: #f7931d;
	flex-shrink: 0;
}

/* Mission & Vision Cards */
.mission-vision-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.mission-card,
.vision-card {
	background: white;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-top: 5px solid #f7931d;
}

.mission-card:hover,
.vision-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #f7931d 0%, #ffab4a 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(247, 100, 32, 0.3);
}

.card-icon svg {
	color: white;
}

.card-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 16px 0;
}

.card-text {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

/* About Company Intro */
.company-intro {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 30px;
	text-align: center;
	border: 2px solid #e5e7eb;
}

.company-intro p {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #4b5563;
	margin: 0;
	max-width: 900px;
	margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
	.info-main-wrapper {
		padding: 20px 16px 40px 16px;
	}

	.info-header {
		padding: 24px;
	}

	.info-title {
		font-size: 2rem;
		flex-direction: column;
		align-items: flex-start;
	}

	.info-content {
		padding: 24px;
	}

	.section-title {
		font-size: 1.4rem;
	}

	.info-list li {
		padding-left: 50px;
		font-size: 1rem;
	}

	.info-list li:before {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.map-container iframe {
		height: 300px;
	}

	.mission-vision-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.info-title {
		font-size: 1.75rem;
	}

	.info-header {
		padding: 20px;
	}

	.info-content {
		padding: 20px;
	}
}
