/* Cleaning Tips Section */
.tips-section {
	background: var(--secondary-color);
	/* Dark Blue/Black */
	color: white;
	padding: var(--spacing-xl) var(--spacing-lg);
	/* Consistent Padding */
	text-align: center;
	margin-top: 0;
	/* Removed Gap */
	border-top: 4px solid var(--gold);
}

.tips-section h2 {
	color: var(--white);
	font-size: 2rem;
	margin-bottom: 2rem;
}

.tip-content {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 12px;
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.4rem;
	line-height: 1.6;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	min-height: 120px;
	/* Fixed height to prevent jump */
	border: 1px dashed rgba(255, 255, 255, 0.2);
}

.tip-content i {
	color: var(--gold);
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

/* Footer Styles */
footer {
	background: var(--primary-color);
	color: white;
	padding: 4rem var(--spacing-lg) var(--spacing-md);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--spacing-lg);
	max-width: 1400px;
	margin: 0 auto var(--spacing-lg);
}

.footer-section h3 {
	color: var(--gold);
	margin-bottom: 1.5rem;
	font-size: var(--font-size-large);
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	display: block;
	margin-bottom: 0.8rem;
	transition: all var(--transition-normal);
	padding-left: 0;
}

.footer-section a:hover {
	color: white;
	padding-left: 10px;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0.8rem;
}

.footer-bottom {
	text-align: center;
	padding-top: var(--spacing-md);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
}

.testimonials-section {
	background: var(--light-bg);
	padding: var(--spacing-xl) var(--spacing-lg);
	text-align: center;
}

.testimonials-section h2 {
	text-align: center;
	color: var(--primary-color);
	font-size: var(--font-size-h2);
	margin-bottom: 3rem;
}

/* CAROUSEL WRAPPER */
.testimonial-wrapper {
	max-width: 800px;
	margin: 0 auto;
	/* Perfectly centered */
	position: relative;
	overflow: hidden;
	/* Hide overflow for slider */
	padding: 1rem;
}

/* THE TRACK THAT MOVES */
.testimonial-track {
	display: flex;
	/* Horizontal alignment */
	transition: transform 0.5s ease-in-out;
	width: 100%;
}

/* INDIVIDUAL CARD - Google Style */
.testimonial-card,
.google-review-card {
	flex: 0 0 100%;
	/* Each card takes full width of container */
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	/* Soft shadow */
	text-align: left;
	/* Google reviews align left usually, but we can center if preferred. Let's align left for authenticity */
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	position: relative;
	gap: 1rem;
}

.author-img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	object-fit: cover;
}

.header-info {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-weight: 700;
	color: var(--text-dark);
	font-size: 1rem;
}

.review-meta {
	font-size: 0.85rem;
	color: var(--text-light);
}

.google-logo {
	width: 24px;
	height: 24px;
	margin-left: auto;
	/* Push to right */
	opacity: 0.8;
}

.rating-stars {
	color: #FFB400;
	/* Google Star Color */
	font-size: 1.2rem;
	margin-bottom: 1rem;
	display: flex;
	gap: 2px;
}

.review-text {
	color: var(--text-dark);
	line-height: 1.6;
	font-style: normal;
	/* Remove italics for authenticity */
	margin-bottom: 0.5rem;
	font-size: 1.05rem;
}

/* DOTS NAVIGATION */
.slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 2rem;
}

.dot {
	width: 12px;
	height: 12px;
	background-color: #ccc;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.dot.active {
	background-color: var(--primary-color);
	transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
	.testimonial-card {
		padding: 2rem;
	}
}