/* ============================================================
   E&J Cleaning — Custom Styles
   ============================================================ */

/* ----------------------------------------------------------
   Header CTA: Phone number + Get a Quote button
   ---------------------------------------------------------- */

.header__cta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-right: 16px;
}

.header__phone {
	display: flex;
	align-items: center;
	gap: 6px;
	color: inherit;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95em;
	white-space: nowrap;
}

.header__phone:hover {
	opacity: 0.75;
	text-decoration: none;
}

.header__phone-icon {
	font-size: 1.1em;
}

.header__book-btn {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	background: #F97316;
	color: #ffffff !important;
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.9em;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.header__book-btn:hover {
	background: #ea6c0a;
	color: #ffffff !important;
}

/* Hide phone number text on small screens; keep icon + button */
@media (max-width: 600px) {
	.header__phone-number {
		display: none;
	}
	.header__book-btn {
		padding: 8px 12px;
		font-size: 0.85em;
	}
}

/* Hide the entire phone link on very small screens (keep only button) */
@media (max-width: 400px) {
	.header__phone {
		display: none;
	}
}
