/* =========================================================
   LANDING PAGE — Conversion-Optimized Styles
   القاهرة ترانس — Google Search Campaign Landing Page
   ========================================================= */

:root {
	--lp-primary: #1a73e8;
	--lp-primary-dark: #1557b0;
	--lp-secondary: #ff6b00;
	--lp-whatsapp: #25d366;
	--lp-whatsapp-dark: #1da851;
	--lp-call: #1a73e8;
	--lp-call-dark: #1557b0;
	--lp-dark: #1a1a2e;
	--lp-text: #2d2d3a;
	--lp-text-light: #6b7280;
	--lp-bg-light: #f8f9fc;
	--lp-bg-white: #ffffff;
	--lp-border: #e5e7eb;
	--lp-radius: 12px;
	--lp-radius-lg: 20px;
	--lp-shadow: 0 4px 20px rgba(0,0,0,0.08);
	--lp-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
	--lp-transition: 0.3s ease;
}

/* ========================= GLOBAL ========================= */
.landing-wrapper {
	overflow-x: hidden;
}

.landing-section-label {
	color: var(--lp-primary);
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.landing-section-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--lp-dark);
	margin-bottom: 1rem;
}

.landing-section-desc {
	color: var(--lp-text-light);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

/* ========================= HERO SECTION ========================= */
.landing-hero {
	position: relative;
	background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d1f3c 100%);
	min-height: 85vh;
	display: flex;
	align-items: center;
	padding: 100px 0 60px;
	overflow: hidden;
}

.landing-hero__overlay {
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
	pointer-events: none;
}

.min-vh-80 {
	min-height: 70vh;
}

.landing-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 100px;
	padding: 8px 20px;
	color: #ffd700;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(4px);
}

.landing-hero__badge i {
	font-size: 1rem;
}

.landing-hero__title {
	font-size: 2.6rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.landing-hero__subtitle {
	display: block;
	font-size: 1.3rem;
	font-weight: 500;
	color: rgba(255,255,255,0.75);
	margin-top: 0.5rem;
}

.landing-hero__desc {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.8);
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 600px;
}

.landing-hero__image img {
	border-radius: var(--lp-radius-lg);
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ========================= CTA BUTTONS ========================= */
.landing-hero__cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
	transition: all var(--lp-transition);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn-cta i {
	font-size: 1.3rem;
}

.btn-cta small {
	font-size: 0.8rem;
	font-weight: 400;
	opacity: 0.9;
}

.btn-cta--call {
	background: var(--lp-call);
	color: #fff;
	box-shadow: 0 4px 15px rgba(26,115,232,0.35);
}

.btn-cta--call:hover {
	background: var(--lp-call-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(26,115,232,0.5);
	color: #fff;
}

.btn-cta--whatsapp {
	background: var(--lp-whatsapp);
	color: #fff;
	box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

.btn-cta--whatsapp:hover {
	background: var(--lp-whatsapp-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(37,211,102,0.5);
	color: #fff;
}

.btn-cta--full {
	width: 100%;
	justify-content: center;
	padding: 16px 28px;
	font-size: 1.15rem;
}

.btn-cta--inline {
	margin: 0 8px 8px 0;
}

.btn-cta--lg {
	padding: 18px 36px;
	font-size: 1.15rem;
	border-radius: 16px;
}

.btn-cta--lg i {
	font-size: 1.5rem;
}

/* ========================= MICRO TRUST ========================= */
.landing-hero__micro-trust {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.micro-trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgba(255,255,255,0.7);
	font-size: 0.9rem;
}

.micro-trust-item i {
	color: #ffd700;
	font-size: 0.85rem;
}

.micro-trust-item .fa-check-circle {
	color: var(--lp-whatsapp);
}

/* ========================= QUICK QUOTE ========================= */
.quick-quote-card {
	background: var(--lp-bg-white);
	border-radius: var(--lp-radius-lg);
	box-shadow: var(--lp-shadow-lg);
	overflow: hidden;
	border: 2px solid var(--lp-whatsapp);
}

.quick-quote-card__header {
	background: linear-gradient(135deg, var(--lp-whatsapp), var(--lp-whatsapp-dark));
	padding: 24px 30px;
	display: flex;
	align-items: center;
	gap: 16px;
	color: #fff;
}

.quick-quote-card__header i {
	font-size: 2.5rem;
	flex-shrink: 0;
}

.quick-quote-card__header h2 {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0;
	color: #fff;
}

.quick-quote-card__header p {
	font-size: 0.95rem;
	margin: 4px 0 0;
	opacity: 0.9;
}

.quick-quote-form {
	padding: 30px;
}

.quick-quote-form .form-label {
	font-weight: 600;
	color: var(--lp-dark);
	margin-bottom: 6px;
}

.quick-quote-form .form-select,
.quick-quote-form .form-control {
	border: 2px solid var(--lp-border);
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 0.95rem;
	transition: border-color var(--lp-transition);
}

.quick-quote-form .form-select:focus,
.quick-quote-form .form-control:focus {
	border-color: var(--lp-whatsapp);
	box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
}

/* ========================= SERVICE CARDS ========================= */
.service-card {
	background: var(--lp-bg-white);
	border-radius: var(--lp-radius);
	padding: 28px 20px;
	text-align: center;
	box-shadow: var(--lp-shadow);
	transition: all var(--lp-transition);
	height: 100%;
	border: 1px solid var(--lp-border);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--lp-shadow-lg);
	border-color: var(--lp-primary);
}

.service-card__icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(26,115,232,0.1), rgba(26,115,232,0.05));
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	transition: all var(--lp-transition);
}

.service-card__icon i {
	font-size: 1.6rem;
	color: var(--lp-primary);
}

.service-card:hover .service-card__icon {
	background: var(--lp-primary);
}

.service-card:hover .service-card__icon i {
	color: #fff;
}

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

.service-card__desc {
	font-size: 0.9rem;
	color: var(--lp-text-light);
	margin: 0;
	line-height: 1.6;
}

/* ========================= AREA CARDS ========================= */
.area-card {
	background: var(--lp-bg-white);
	border-radius: var(--lp-radius);
	padding: 30px;
	box-shadow: var(--lp-shadow);
	height: 100%;
	border: 1px solid var(--lp-border);
	transition: all var(--lp-transition);
}

.area-card:hover {
	box-shadow: var(--lp-shadow-lg);
	border-color: var(--lp-primary);
}

.area-card__icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--lp-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.area-card__icon i {
	color: #fff;
	font-size: 1.2rem;
}

.area-card__title {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--lp-dark);
	margin-bottom: 16px;
}

.area-card__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.area-card__list li {
	font-size: 0.95rem;
	color: var(--lp-text);
	padding: 6px 0;
	padding-right: 20px;
	position: relative;
}

.area-card__list li::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 0;
	color: var(--lp-whatsapp);
	font-size: 0.7rem;
	top: 9px;
}

/* ========================= PRICING FACTORS ========================= */
.pricing-factor {
	background: var(--lp-bg-white);
	border-radius: var(--lp-radius);
	padding: 28px 20px;
	text-align: center;
	box-shadow: var(--lp-shadow);
	height: 100%;
	border: 1px solid var(--lp-border);
	transition: all var(--lp-transition);
}

.pricing-factor:hover {
	transform: translateY(-3px);
	box-shadow: var(--lp-shadow-lg);
}

.pricing-factor__icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lp-secondary), #ff8533);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.pricing-factor__icon i {
	color: #fff;
	font-size: 1.3rem;
}

.pricing-factor h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--lp-dark);
	margin-bottom: 8px;
}

.pricing-factor p {
	font-size: 0.9rem;
	color: var(--lp-text-light);
	margin: 0;
	line-height: 1.6;
}

/* ========================= TRUST STATS ========================= */
.trust-stat {
	text-align: center;
	padding: 30px 15px;
	background: var(--lp-bg-white);
	border-radius: var(--lp-radius);
	box-shadow: var(--lp-shadow);
	border: 1px solid var(--lp-border);
}

.trust-stat__number {
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--lp-primary);
	display: inline;
}

.trust-stat__plus {
	font-size: 2rem;
	font-weight: 800;
	color: var(--lp-primary);
}

.trust-stat__label {
	font-size: 1rem;
	color: var(--lp-text-light);
	margin: 8px 0 0;
	font-weight: 600;
}

/* ========================= TRUST FEATURES ========================= */
.trust-feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--lp-bg-white);
	border-radius: var(--lp-radius);
	padding: 24px;
	box-shadow: var(--lp-shadow);
	height: 100%;
	border: 1px solid var(--lp-border);
	transition: all var(--lp-transition);
}

.trust-feature:hover {
	box-shadow: var(--lp-shadow-lg);
	border-color: var(--lp-primary);
}

.trust-feature > i {
	font-size: 1.5rem;
	color: var(--lp-primary);
	flex-shrink: 0;
	margin-top: 4px;
}

.trust-feature h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--lp-dark);
	margin-bottom: 4px;
}

.trust-feature p {
	font-size: 0.9rem;
	color: var(--lp-text-light);
	margin: 0;
	line-height: 1.5;
}

/* ========================= FAQ ========================= */
.landing-faq .accordion-item {
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius) !important;
	margin-bottom: 12px;
	overflow: hidden;
}

.landing-faq .accordion-button {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--lp-dark);
	padding: 18px 24px;
	background: var(--lp-bg-white);
}

.landing-faq .accordion-button:not(.collapsed) {
	background: rgba(26,115,232,0.05);
	color: var(--lp-primary);
	box-shadow: none;
}

.landing-faq .accordion-button:focus {
	box-shadow: none;
	border-color: var(--lp-border);
}

.landing-faq .accordion-body {
	font-size: 0.95rem;
	color: var(--lp-text);
	line-height: 1.8;
	padding: 0 24px 18px;
}

/* ========================= FINAL CTA ========================= */
.landing-final-cta {
	background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
}

.final-cta-card {
	max-width: 700px;
	margin: 0 auto;
}

.final-cta-card__title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 1rem;
}

.final-cta-card__desc {
	font-size: 1.15rem;
	color: rgba(255,255,255,0.8);
	margin-bottom: 2rem;
}

.final-cta-card__buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.final-cta-card__trust {
	color: rgba(255,255,255,0.6);
	font-size: 0.9rem;
	margin: 0;
}

.final-cta-card__trust i {
	color: #ffd700;
	margin-left: 6px;
}

/* ========================= STICKY MOBILE CTA ========================= */
.sticky-mobile-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	z-index: 9999;
	background: var(--lp-bg-white);
	border-top: 1px solid var(--lp-border);
	box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
	padding: 0;
}

.sticky-mobile-cta__btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all var(--lp-transition);
}

.sticky-mobile-cta__btn--call {
	background: var(--lp-call);
	color: #fff;
}

.sticky-mobile-cta__btn--call:hover {
	background: var(--lp-call-dark);
	color: #fff;
}

.sticky-mobile-cta__btn--whatsapp {
	background: var(--lp-whatsapp);
	color: #fff;
}

.sticky-mobile-cta__btn--whatsapp:hover {
	background: var(--lp-whatsapp-dark);
	color: #fff;
}

.sticky-mobile-cta__btn i {
	font-size: 1.3rem;
}

/* ========================= TESTIMONIALS OVERRIDE ========================= */
.landing-testimonials .testimonial-item {
	border: 1px solid var(--lp-border);
}

/* ========================= RESPONSIVE ========================= */

/* Show sticky bar on mobile/tablet */
@media (max-width: 991px) {
	.sticky-mobile-cta {
		display: flex;
		transform: translateY(100%);
		transition: transform 0.3s ease;
	}

	.sticky-mobile-cta.sticky-visible {
		transform: translateY(0);
	}

	/* Add padding at bottom for sticky bar */
	.landing-wrapper {
		padding-bottom: 60px;
	}

	/* Hide old footer contact buttons when landing sticky is active */
	.footer-contact-btns {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.landing-hero {
		min-height: auto;
		padding: 80px 0 40px;
	}

	.landing-hero__title {
		font-size: 1.8rem;
	}

	.landing-hero__subtitle {
		font-size: 1rem;
	}

	.landing-hero__desc {
		font-size: 0.95rem;
	}

	.landing-hero__cta {
		flex-direction: column;
	}

	.btn-cta {
		justify-content: center;
		width: 100%;
	}

	.landing-hero__micro-trust {
		flex-direction: column;
		gap: 8px;
	}

	.landing-section-title {
		font-size: 1.5rem;
	}

	.service-card {
		padding: 20px 14px;
	}

	.service-card__title {
		font-size: 0.95rem;
	}

	.service-card__desc {
		font-size: 0.8rem;
	}

	.area-card__list {
		grid-template-columns: 1fr;
	}

	.trust-stat__number {
		font-size: 2rem;
	}

	.final-cta-card__title {
		font-size: 1.8rem;
	}

	.final-cta-card__buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-cta--lg {
		width: 100%;
	}

	.quick-quote-card__header {
		padding: 18px 20px;
	}

	.quick-quote-card__header h2 {
		font-size: 1.15rem;
	}

	.quick-quote-card__header i {
		font-size: 2rem;
	}

	.quick-quote-form {
		padding: 20px;
	}
}

@media (max-width: 575px) {
	.landing-hero__badge {
		font-size: 0.75rem;
		padding: 6px 14px;
	}

	.landing-hero__title {
		font-size: 1.5rem;
	}

	.btn-cta--inline {
		width: 100%;
		margin: 0 0 10px;
	}
}

/* ========================= SCROLL ANCHOR OFFSET ========================= */
.landing-wrapper section[id] {
	scroll-margin-top: 80px;
}

/* ========================= ANIMATIONS ========================= */
@keyframes pulse-glow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
	50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.btn-cta--whatsapp {
	animation: pulse-glow 2.5s infinite;
}

.sticky-mobile-cta__btn--whatsapp {
	animation: pulse-glow 2.5s infinite;
}

/* RTL Fixes */
[dir="rtl"] .area-card__list li {
	padding-right: 20px;
	padding-left: 0;
}

[dir="rtl"] .area-card__list li::before {
	right: 0;
	left: auto;
}

[dir="rtl"] .trust-feature {
	flex-direction: row-reverse;
}

[dir="rtl"] .quick-quote-card__header {
	flex-direction: row-reverse;
}

/* Print Safety */
@media print {
	.sticky-mobile-cta,
	.footer-contact-btns {
		display: none !important;
	}
}
