/* =============================================
   ABOUT — About Section (index.html, about.html)
   Abdullah Limozen | Top Class Limousine
   ============================================= */

#about {
	background: var(--bg-section);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	padding: 0 30px;
}

.about-media {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
}

.about-media img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16/10;
	object-fit: cover;
}

.youtube-btn {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.youtube-btn:hover {
	background: #c41e3a;
	border-color: #c41e3a;
	transform: translateX(-50%) translateY(-3px);
	box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.youtube-btn:focus-visible {
	outline: 2px solid rgba(212, 175, 55, 0.75);
	outline-offset: 3px;
}

.youtube-btn svg {
	opacity: 0.9;
}

.about-content h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	color: var(--gold-light);
	margin-bottom: 20px;
}

.about-content p {
	color: var(--text-muted);
	margin-bottom: 20px;
	font-size: 1.05rem;
	line-height: 1.8;
}

.about-credits {
	font-size: 0.9rem;
	color: var(--text-muted);
	opacity: 0.7;
	margin-top: 10px;
}

.about-credits a {
	color: var(--gold);
	text-decoration: none;
}

.about-credits a:hover {
	text-decoration: underline;
}

/* ── Quote CTA bar on image ── */
.quote-btn {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 18px 24px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.65));
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-top: 1px solid rgba(212, 175, 55, 0.45);
	color: var(--gold);
	text-decoration: none;
	transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
	touch-action: manipulation;
}

.quote-btn:hover,
.quote-btn:focus-visible {
	background: linear-gradient(to top, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.07));
	border-top-color: var(--gold);
	box-shadow: 0 -8px 30px rgba(212, 175, 55, 0.25);
	outline: none;
}

.quote-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gold);
	color: #000;
	border-radius: 50%;
	font-size: 1.1rem;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.quote-btn:hover .quote-icon,
.quote-btn:focus-visible .quote-icon {
	transform: scale(1.12);
}

.quote-text {
	text-align: left;
}

.quote-label {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	opacity: 0.75;
	margin-bottom: 3px;
	font-weight: 500;
	color: var(--gold);
}

.quote-phone {
	font-weight: 700;
	font-size: 1.1rem;
	color: #fff;
	letter-spacing: 0.5px;
	line-height: 1;
}

.about-stats {
	display: flex;
	gap: 40px;
	margin-top: 30px;
}

.stat {
	text-align: center;
}

.stat-number {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--gold);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}
