/* =========================================================
   PREMIUM PAGES — About & Contact Template Styles
   Shared design system matching landing-page.css
   ========================================================= */

/* Note: This file is loaded ALONGSIDE landing-page.css,
   so all CSS variables (--lp-*) and shared components
   (.btn-cta, .trust-feature, .landing-section-*, .final-cta-card,
    .landing-faq, etc.) are already available. */

/* ========================= PREMIUM WRAPPER ========================= */
.premium-wrapper {
	overflow-x: hidden;
}

/* ========================= PAGE HERO ========================= */
.page-hero {
	position: relative;
	background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d1f3c 100%);
	padding: 140px 0 60px;
	text-align: center;
	overflow: hidden;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(26, 115, 232, 0.15), transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(255, 107, 0, 0.1), transparent 50%);
	pointer-events: none;
}

.page-hero__breadcrumb {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.page-hero__breadcrumb li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color var(--lp-transition);
}

.page-hero__breadcrumb li a:hover {
	color: #fff;
}

.page-hero__breadcrumb li.active {
	color: var(--lp-primary);
	font-weight: 600;
}

.page-hero__breadcrumb li + li::before {
	content: "/";
	color: rgba(255, 255, 255, 0.4);
	margin-left: 0.5rem;
}

[dir="rtl"] .page-hero__breadcrumb li + li::before {
	margin-left: 0;
	margin-right: 0.5rem;
}

.page-hero__title {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.page-hero__desc {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.15rem;
	max-width: 600px;
	margin: 0 auto;
}

/* ========================= ABOUT STORY ========================= */
.about-text {
	color: var(--lp-text);
	line-height: 1.9;
	font-size: 1.05rem;
	margin-bottom: 0.75rem;
}

.about-highlights {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.about-highlight-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.05rem;
	color: var(--lp-text);
}

.about-highlight-item i {
	color: var(--lp-primary);
	font-size: 1.2rem;
	flex-shrink: 0;
}

.about-image-wrap {
	position: relative;
	border-radius: var(--lp-radius-lg);
	overflow: hidden;
	box-shadow: var(--lp-shadow-lg);
}

.about-image-wrap::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 120px;
	height: 120px;
	background: var(--lp-primary);
	opacity: 0.1;
	border-radius: 50%;
	transform: translate(30%, 30%);
}

.about-image-wrap img {
	width: 100%;
	display: block;
}

/* ========================= STATS BAR ========================= */
.stats-bar {
	background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d1f3c 100%);
	padding: 60px 0;
}

.stats-bar__item {
	padding: 20px 10px;
}

.stats-bar__number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
}

.stats-bar__plus {
	font-size: 2rem;
	font-weight: 700;
	color: var(--lp-primary);
}

.stats-bar__label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

/* ========================= PROCESS STEPS ========================= */
.process-step {
	background: var(--lp-bg-white);
	border-radius: var(--lp-radius);
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: var(--lp-shadow);
	border: 1px solid var(--lp-border);
	height: 100%;
	transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.process-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--lp-shadow-lg);
}

.process-step__number {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
	color: #fff;
	font-size: 1.5rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.process-step__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--lp-dark);
	margin-bottom: 0.5rem;
}

.process-step__desc {
	color: var(--lp-text-light);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 0;
}

/* ========================= CONTACT CARDS ========================= */
.contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
	background: var(--lp-bg-white);
	border-radius: var(--lp-radius);
	border: 1px solid var(--lp-border);
	box-shadow: var(--lp-shadow);
	height: 100%;
	text-decoration: none;
	color: var(--lp-text);
	transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--lp-shadow-lg);
	color: var(--lp-text);
	text-decoration: none;
}

a.contact-card--call:hover {
	border-color: var(--lp-call);
}

a.contact-card--whatsapp:hover {
	border-color: var(--lp-whatsapp);
}

.contact-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
	color: #fff;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.contact-card__icon--whatsapp {
	background: linear-gradient(135deg, var(--lp-whatsapp), var(--lp-whatsapp-dark));
}

.contact-card__icon--time {
	background: linear-gradient(135deg, var(--lp-secondary), #e05500);
}

.contact-card__icon--location {
	background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.contact-card__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--lp-dark);
	margin-bottom: 0.5rem;
}

.contact-card__info {
	color: var(--lp-text-light);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 0.75rem;
}

.contact-card__action {
	color: var(--lp-primary);
	font-weight: 600;
	font-size: 0.9rem;
	margin-top: auto;
}

.contact-card--call:hover .contact-card__action,
.contact-card--whatsapp:hover .contact-card__action {
	text-decoration: underline;
}

/* ========================= AREA CARD MINI ========================= */
.area-card-mini {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--lp-bg-white);
	border-radius: var(--lp-radius);
	border: 1px solid var(--lp-border);
	box-shadow: var(--lp-shadow);
	height: 100%;
	transition: transform var(--lp-transition);
}

.area-card-mini:hover {
	transform: translateY(-3px);
}

.area-card-mini > i {
	color: var(--lp-primary);
	font-size: 1.4rem;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.area-card-mini h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--lp-dark);
	margin-bottom: 0.25rem;
}

.area-card-mini p {
	color: var(--lp-text-light);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 0;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 991px) {
	.page-hero {
		padding: 120px 0 50px;
	}

	.page-hero__title {
		font-size: 2rem;
	}

	.stats-bar__number {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.page-hero {
		padding: 100px 0 40px;
	}

	.page-hero__title {
		font-size: 1.6rem;
	}

	.page-hero__desc {
		font-size: 1rem;
	}

	.stats-bar {
		padding: 40px 0;
	}

	.stats-bar__number {
		font-size: 1.6rem;
	}

	.stats-bar__plus {
		font-size: 1.3rem;
	}

	.stats-bar__label {
		font-size: 0.85rem;
	}
}

@media (max-width: 575px) {
	.page-hero__title {
		font-size: 1.4rem;
	}

	.process-step {
		padding: 1.5rem 1rem;
	}

	.contact-card {
		padding: 1.5rem 1rem;
	}
}

/* ========================= RTL FIXES ========================= */
[dir="rtl"] .area-card-mini {
	flex-direction: row-reverse;
	text-align: right;
}

[dir="rtl"] .about-highlight-item {
	flex-direction: row-reverse;
}

[dir="rtl"] .contact-card__action .fa-arrow-left {
	transform: rotate(180deg);
}
