/* Scoped styles for imported SEO Pages (from escort-seo-pages/*.html) */

.escort-seo-page,
.escort-seo-page * {
	box-sizing: border-box;
}

.escort-seo-page {
	font-family: 'Inter', sans-serif;
	color: #333;
	line-height: 1.6;
	background: #f8f9fa;
	padding: 0;
	margin: 0;
}

.escort-seo-page .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Hero Section */
.escort-seo-page .hero {
	background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
	color: white;
	padding: 60px 20px;
	text-align: center;
}

.escort-seo-page .hero h1 {
	font-size: 42px;
	margin-bottom: 15px;
	font-weight: 700;
}

.escort-seo-page .hero p {
	font-size: 18px;
	opacity: 0.95;
	margin-bottom: 30px;
}

/* Stats */
.escort-seo-page .stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 30px;
}

.escort-seo-page .stat-item {
	text-align: center;
}

.escort-seo-page .stat-number {
	font-size: 36px;
	font-weight: 700;
	display: block;
}

.escort-seo-page .stat-label {
	font-size: 14px;
	opacity: 0.9;
}

/* Tabs */
.escort-seo-page .tabs {
	background: white;
	margin: 40px auto;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.escort-seo-page .tab-buttons {
	display: flex;
	border-bottom: 1px solid #e5e7eb;
}

.escort-seo-page .tab-button {
	flex: 1;
	padding: 15px;
	background: white;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	color: #6b7280;
	transition: all 0.3s;
}

.escort-seo-page .tab-button.active {
	color: #7c3aed;
	border-bottom: 3px solid #7c3aed;
}

.escort-seo-page .tab-content {
	padding: 30px;
}

.escort-seo-page .tab-pane {
	display: none;
}

.escort-seo-page .tab-pane.active {
	display: block;
}

/* Table */
.escort-seo-page table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: white;
}

.escort-seo-page table th {
	background: #f3f4f6;
	padding: 12px;
	text-align: left;
	font-weight: 600;
	color: #374151;
}

.escort-seo-page table td {
	padding: 12px;
	border-bottom: 1px solid #e5e7eb;
}

.escort-seo-page table tr:hover {
	background: #f9fafb;
}

/* Info Boxes */
.escort-seo-page .info-box {
	background: #f0fdf4;
	border-left: 4px solid #10b981;
	padding: 20px;
	margin: 20px 0;
	border-radius: 8px;
}

.escort-seo-page .info-box.warning {
	background: #fef3c7;
	border-left-color: #f59e0b;
}

/* Section Headers */
.escort-seo-page .section-header {
	margin: 60px 0 30px;
	text-align: center;
}

.escort-seo-page .section-header h2 {
	font-size: 32px;
	color: #111827;
	margin-bottom: 10px;
}

.escort-seo-page .section-header p {
	color: #6b7280;
	font-size: 16px;
}

/* Features Grid */
.escort-seo-page .features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin: 40px 0;
}

.escort-seo-page .feature-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.escort-seo-page .feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.escort-seo-page .feature-card i {
	font-size: 32px;
	color: #7c3aed;
	margin-bottom: 15px;
}

.escort-seo-page .feature-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #111827;
}

/* Native FAQ Accordion */
.escort-seo-page .faq-accordion {
	margin: 40px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.escort-seo-page .faq-item {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: all 0.3s ease;
}

.escort-seo-page .faq-item[open] {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.escort-seo-page .faq-header {
	padding: 18px 20px;
	cursor: pointer;
	font-weight: 600;
	color: #111827;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	list-style: none !important;
	list-style-type: none !important;
	transition: background 0.3s;
	margin: 0 !important;
}

.escort-seo-page .faq-header::-webkit-details-marker {
	display: none !important;
}

.escort-seo-page .faq-header::marker {
	display: none !important;
	content: "";
}

.escort-seo-page .faq-header:hover {
	background: #f9fafb;
}

.escort-seo-page .faq-icon {
	color: #6b7280;
	transition: transform 0.3s ease;
	font-size: 14px;
}

.escort-seo-page .faq-item[open] .faq-icon {
	transform: rotate(180deg);
}

.escort-seo-page .faq-content {
	padding: 0 20px 20px;
	color: #4b5563;
	line-height: 1.6;
	border-top: 1px solid #f3f4f6;
	margin-top: 2px;
	padding-top: 15px;
}

/* Listings Grid wrapper (cards inside come from theme ad-card) */
.escort-seo-page .listings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
	.escort-seo-page .hero h1 {
		font-size: 28px;
	}

	.escort-seo-page .stats {
		flex-direction: column;
		gap: 20px;
	}
}

