/**
 * Modern Frontend Styles - Full Width Listing Cards
 * Brand Colors: #FFC107 (Primary), #1A1A1A (Secondary)
 * Typography: Poppins
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========================================
   RESET & BASE
======================================== */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #1A1A1A;
	background: #FFFFFF;
}

/* ========================================
   CONTAINER
======================================== */

.t10l-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.t10l-page-wrap {
	min-height: 100vh;
	background: #FAFAFA;
}

/* ========================================
   MINIMAL HEADER
======================================== */

.t10l-header {
	background: linear-gradient(135deg, #FFF8E1 0%, #FFFFFF 100%);
	padding: 60px 0 40px;
	border-bottom: 1px solid #F0F0F0;
}

.t10l-header__title {
	font-size: 36px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 0 0 12px 0;
	line-height: 1.2;
}

.t10l-header__subtitle {
	font-size: 18px;
	font-weight: 400;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.t10l-header {
		padding: 40px 0 30px;
	}
	
	.t10l-header__title {
		font-size: 28px;
	}
	
	.t10l-header__subtitle {
		font-size: 16px;
	}
}

/* ========================================
   LISTINGS SECTION
======================================== */

.t10l-listings {
	padding: 60px 0;
	background: #FAFAFA;
}

.t10l-listings__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.t10l-no-results {
	text-align: center;
	padding: 80px 20px;
	font-size: 18px;
	color: #666;
}

/* ========================================
   FULL-WIDTH LISTING CARD
======================================== */

.t10l-listing-card {
	display: flex;
	gap: 24px;
	background: #FFFFFF;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	position: relative;
	border: 1px solid #F0F0F0;
}

.t10l-listing-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

/* Rank Badge */
.t10l-listing-card__rank {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: #1A1A1A;
	box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
	z-index: 10;
}

/* Image Section */
.t10l-listing-card__image {
	flex-shrink: 0;
	width: 200px;
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	background: #F5F5F5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.t10l-listing-card__image img,
.t10l-listing-card__image .t10l-listing-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.t10l-listing-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
}

.t10l-listing-card__placeholder svg {
	color: #BDBDBD;
}

/* Content Section */
.t10l-listing-card__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 8px;
}

.t10l-listing-card__title {
	font-size: 24px;
	font-weight: 600;
	color: #1A1A1A;
	margin: 0;
	line-height: 1.3;
}

/* Meta Information */
.t10l-listing-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.t10l-listing-card__rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.t10l-rating-number {
	font-size: 20px;
	font-weight: 700;
	color: #FFC107;
}

.t10l-rating-stars {
	display: flex;
	gap: 2px;
}

.t10l-star {
	font-size: 18px;
	line-height: 1;
}

.t10l-star--full {
	color: #FFC107;
}

.t10l-star--half {
	color: #FFC107;
	opacity: 0.5;
}

.t10l-star--empty {
	color: #E0E0E0;
}

.t10l-listing-card__location,
.t10l-listing-card__experience {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #666;
}

.t10l-listing-card__location svg,
.t10l-listing-card__experience svg {
	color: #999;
	flex-shrink: 0;
}

/* Description */
.t10l-listing-card__description {
	font-size: 15px;
	line-height: 1.7;
	color: #444;
	margin: 0;
}

.t10l-listing-card__description p {
	margin: 0 0 12px 0;
}

.t10l-listing-card__description p:last-child {
	margin-bottom: 0;
}

/* Claim Button */
.t10l-listing-card__claim-btn {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #FFC107;
	color: #1A1A1A;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
	margin-top: auto;
}

.t10l-listing-card__claim-btn:hover {
	background: #FFD54F;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.t10l-listing-card__claim-btn:active {
	transform: translateY(0);
}

.t10l-listing-card__claim-btn svg {
	flex-shrink: 0;
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */

@media (max-width: 768px) {
	.t10l-listing-card {
		flex-direction: column;
		gap: 20px;
		padding: 20px;
	}
	
	.t10l-listing-card__rank {
		width: 40px;
		height: 40px;
		font-size: 18px;
		top: 12px;
		left: 12px;
	}
	
	.t10l-listing-card__image {
		width: 100%;
		height: 240px;
	}
	
	.t10l-listing-card__title {
		font-size: 20px;
	}
	
	.t10l-listing-card__meta {
		gap: 16px;
	}
	
	.t10l-listing-card__claim-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ========================================
   PAGINATION
======================================== */

.t10l-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.t10l-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	background: #FFFFFF;
	color: #1A1A1A;
	border: 1px solid #E0E0E0;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
}

.t10l-pagination__link:hover {
	background: #FFF8E1;
	border-color: #FFC107;
	color: #1A1A1A;
}

.t10l-pagination__link--active {
	background: #FFC107;
	border-color: #FFC107;
	color: #1A1A1A;
	font-weight: 600;
}

/* ========================================
   FAQ SECTION
======================================== */

.t10l-faqs {
	padding: 60px 0;
	background: #FFFFFF;
	border-top: 1px solid #F0F0F0;
}

.t10l-faqs__title {
	font-size: 32px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 0 0 32px 0;
	text-align: center;
}

.t10l-faqs__list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.t10l-faq-item {
	background: #FAFAFA;
	border: 1px solid #E0E0E0;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.t10l-faq-item:hover {
	border-color: #FFC107;
}

.t10l-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: transparent;
	border: none;
	font-size: 17px;
	font-weight: 600;
	color: #1A1A1A;
	text-align: left;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	transition: all 0.2s ease;
}

.t10l-faq__question:hover {
	color: #FFC107;
}

.t10l-faq__question[aria-expanded="true"] {
	color: #FFC107;
}

.t10l-faq__icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
	color: #666;
}

.t10l-faq__question[aria-expanded="true"] .t10l-faq__icon {
	transform: rotate(180deg);
	color: #FFC107;
}

.t10l-faq__answer {
	padding: 0 24px 20px 24px;
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}

.t10l-faq__answer[hidden] {
	display: none;
}

.t10l-faq__answer p {
	margin: 0;
}

@media (max-width: 768px) {
	.t10l-faqs__title {
		font-size: 26px;
	}
	
	.t10l-faq__question {
		padding: 16px 20px;
		font-size: 16px;
	}
	
	.t10l-faq__answer {
		padding: 0 20px 16px 20px;
		font-size: 14px;
	}
}

/* ========================================
   SEO CONTENT
======================================== */

.t10l-content {
	padding: 60px 0;
	background: #FAFAFA;
	border-top: 1px solid #F0F0F0;
}

.t10l-content__body {
	max-width: 900px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.8;
	color: #444;
}

.t10l-content__body h2 {
	font-size: 28px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 32px 0 16px 0;
}

.t10l-content__body h2:first-child {
	margin-top: 0;
}

.t10l-content__body p {
	margin: 0 0 16px 0;
}

.t10l-content__body ul,
.t10l-content__body ol {
	margin: 0 0 16px 24px;
}

.t10l-content__body li {
	margin-bottom: 8px;
}

/* ========================================
   MODAL
======================================== */

.t10l-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.t10l-modal.is-open {
	display: flex;
}

.t10l-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	cursor: pointer;
}

.t10l-modal__container {
	position: relative;
	width: 100%;
	max-width: 600px;
	max-height: 90vh;
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.t10l-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	border-bottom: 1px solid #F0F0F0;
	background: #FAFAFA;
}

.t10l-modal__header h3 {
	font-size: 22px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 0;
}

.t10l-modal__close {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #666;
}

.t10l-modal__close:hover {
	background: #E0E0E0;
	color: #1A1A1A;
}

.t10l-modal__body {
	padding: 24px;
	overflow-y: auto;
}

.t10l-modal__body > p {
	margin: 0 0 24px 0;
	font-size: 15px;
	color: #666;
	line-height: 1.6;
}

/* ========================================
   FORM
======================================== */

.t10l-form__group {
	margin-bottom: 20px;
}

.t10l-form__group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #1A1A1A;
	margin-bottom: 8px;
}

.t10l-form__group .required {
	color: #E53935;
}

.t10l-form__group input[type="text"],
.t10l-form__group input[type="email"],
.t10l-form__group input[type="tel"],
.t10l-form__group textarea {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	color: #1A1A1A;
	background: #FAFAFA;
	border: 1px solid #E0E0E0;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.t10l-form__group input:focus,
.t10l-form__group textarea:focus {
	outline: none;
	border-color: #FFC107;
	background: #FFFFFF;
	box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.t10l-form__group textarea {
	resize: vertical;
	min-height: 100px;
}

.t10l-form__actions {
	margin-top: 24px;
}

.t10l-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.t10l-btn--primary {
	background: #FFC107;
	color: #1A1A1A;
	box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.t10l-btn--primary:hover {
	background: #FFD54F;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 193, 7, 0.3);
}

.t10l-btn--primary:active {
	transform: translateY(0);
}

.t10l-btn__loader {
	display: inline-flex;
}

.t10l-form__feedback {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	display: none;
}

.t10l-form__feedback.success {
	display: block;
	background: #E8F5E9;
	color: #2E7D32;
	border: 1px solid #81C784;
}

.t10l-form__feedback.error {
	display: block;
	background: #FFEBEE;
	color: #C62828;
	border: 1px solid #EF5350;
}

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

@media (max-width: 768px) {
	.t10l-container {
		padding: 0 16px;
	}
	
	.t10l-listings {
		padding: 40px 0;
	}
	
	.t10l-listings__list {
		gap: 24px;
	}
	
	.t10l-faqs,
	.t10l-content {
		padding: 40px 0;
	}
	
	.t10l-modal__container {
		max-height: 95vh;
	}
	
	.t10l-modal__header {
		padding: 20px;
	}
	
	.t10l-modal__body {
		padding: 20px;
	}
}
