@charset "utf-8";
/* CSS Document 

TemplateMo 604 Christmas Piano

https://templatemo.com/tm-604-christmas-piano

*/

:root {
	--gold: #d4af37;
	--gold-light: #f4e4bc;
	--silver: #c0c0c0;
	--accent: #d4af37;
	--bg-dark: #000000;
	--bg-section: #111111;
	--glass-bg: rgba(255, 255, 255, 0.03);
	--glass-border: rgba(255, 255, 255, 0.1);
	--text: #ffffff;
	--text-muted: #cccccc;
	--text-light: #f5f5f5;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}



html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--bg-dark);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;


.container, .main-content, .content-wrapper {
	margin: 0 auto;
	padding: 0 24px;
	max-width: 1400px;
	width: 100%;
}
}

/* Header - Two Row Design */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: linear-gradient(180deg, rgba(10, 12, 16, 0.98) 0%, rgba(10, 12, 16, 0.95) 100%);
	backdrop-filter: blur(15px);
	border-bottom: 1px solid var(--glass-border);
}

/* Logo Row */
.header-logo-row {
	text-align: center;
	padding: 20px 20px 15px;
	border-bottom: 1px solid rgba(212, 175, 55, 0.1);
	position: relative;
	margin-bottom: 5px;
}

.header-logo-row::before,
.header-logo-row::after {
	content: '❄';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gold);
	opacity: 0.5;
	font-size: 1rem;
}

.header-logo-row::before {
	left: 20px;
}

.header-logo-row::after {
	right: 20px;
}

.logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--gold);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.logo-icon {
	font-size: 1.6rem;
	animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
	}

	50% {
		filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
	}
}

/* Navigation Row */
.header-nav-row {
	padding: 0;
	position: relative;
	overflow: hidden;
}

.header-nav-row::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(196, 30, 58, 0.08) 25%,
			rgba(34, 139, 34, 0.08) 50%,
			rgba(196, 30, 58, 0.08) 75%,
			transparent 100%);
	pointer-events: none;
}

.nav-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 0 60px;
}

/* Christmas Decorations */
.nav-decor {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 20px;
	color: var(--gold);
	opacity: 0.6;
	font-size: 0.9rem;
}

.nav-decor .ornament {
	animation: swing 4s ease-in-out infinite;
}

@keyframes swing {

	0%,
	100% {
		transform: rotate(-5deg);
	}

	50% {
		transform: rotate(5deg);
	}
}

.nav-links {
	display: flex;
	gap: 0;
	list-style: none;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 0;
	padding: 0;
}

.nav-links li {
	position: relative;
}

.nav-links li::after {
	content: '✦';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gold);
	opacity: 0.3;
	font-size: 0.5rem;
}

.nav-links li:last-child::after {
	display: none;
}

.nav-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 400;
	transition: all 0.3s ease;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 15px 25px;
	display: block;
	position: relative;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-links a:hover {
	color: var(--gold);
	background: rgba(212, 175, 55, 0.05);
}

.nav-links a:hover::before {
	width: 60%;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 10px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.nav-toggle span {
	width: 25px;
	height: 2px;
	background: var(--gold);
	transition: all 0.3s ease;
}

/* Hero Section */
#hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 120px 20px 80px;
	position: relative;
	background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
	text-align: center;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.hero-badge {
	display: inline-block;
	padding: 12px 32px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--gold);
	border-radius: 50px;
	font-size: 0.9rem;
	color: var(--gold);
	margin-bottom: 40px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 500;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.hero-badge:hover {
	background: rgba(212, 175, 55, 0.15);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(3.5rem, 9vw, 7.5rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.5px;
}

.hero-subtitle strong {
	color: var(--gold);
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 1.1em;
}

.limo-image {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 16px;
	transition: all 0.4s ease;
	filter: brightness(0.9) contrast(1.1);
}

.feature-card:hover .limo-image {
	transform: scale(1.05);
	filter: brightness(1) contrast(1.2);
}

.quote-cta {
	color: var(--gold);
	font-size: 1rem;
	margin-top: 20px;
	padding: 15px 20px;
	border-top: 1px solid rgba(212, 175, 55, 0.3);
	text-align: center;
	background: rgba(212, 175, 55, 0.05);
	border-radius: 0 0 16px 16px;
	margin: 20px -40px -40px -40px;
	padding: 20px 40px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.feature-card:hover .quote-cta {
	background: rgba(212, 175, 55, 0.1);
	color: var(--gold-light);
}

.quote-btn {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid var(--gold);
	border-radius: 50px;
	color: var(--gold);
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
}

.quote-btn:hover {
	background: var(--gold);
	color: #000;
	transform: translateX(-50%) translateY(-3px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.quote-icon {
	font-size: 1.1rem;
}

.quote-text {
	text-align: left;
}

.quote-phone {
	font-weight: 700;
	font-size: 1rem;
}

/* Contact Phone Hero Section */
.contact-phone-hero {
	text-align: center;
	margin: 0 auto 80px;
	max-width: 1000px;
	padding: 50px 40px;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 30px;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.contact-phone-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	transition: all 1s ease;
}

.contact-phone-hero:hover::before {
	left: 100%;
}

.phone-number-large {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	margin-bottom: 35px;
	padding: 40px;
	background: rgba(212, 175, 55, 0.1);
	border: 2px solid var(--gold);
	border-radius: 25px;
	position: relative;
	transition: all 0.3s ease;
}

.phone-number-large:hover {
	background: rgba(212, 175, 55, 0.15);
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.phone-icon-large {
	font-size: 3.5rem;
	color: var(--gold);
	filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.phone-number-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 4rem;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 3px;
	filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.booking-notice {
	margin-top: 10px;
}

.booking-notice h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	color: var(--text-light);
	margin-bottom: 15px;
	font-weight: 600;
}

.booking-notice p {
	font-size: 1.2rem;
	color: var(--text-muted);
	line-height: 1.6;
	opacity: 0.9;
}

/* Service Features List */
.service-features {
	margin-bottom: 30px;
}

.service-feature {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-check {
	width: 24px;
	height: 24px;
	background: var(--gold);
	color: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
}

.call-action {
	text-align: center;
	padding: 25px;
	background: rgba(212, 175, 55, 0.1);
	border-radius: 16px;
	border: 1px solid var(--gold);
}

.call-action h4 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	color: var(--gold-light);
	margin-bottom: 10px;
}

.call-action p {
	font-size: 1rem;
	color: var(--text-muted);
}

/* Contact Hero Card */
.contact-hero-card {
	text-align: center;
}

.contact-hero-header {
	margin-bottom: 20px;
}

.contact-badge {
	font-size: 0.75rem;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.contact-hero-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	color: var(--gold-light);
	margin-bottom: 25px;
}

.phone-display {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 20px;
	padding: 20px;
	background: rgba(212, 175, 55, 0.1);
	border-radius: 16px;
	border: 1px solid var(--gold);
}

.phone-icon {
	font-size: 1.8rem;
}

.phone-number {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 2px;
}

.service-hours {
	margin-bottom: 20px;
}

.hours-label {
	font-size: 1rem;
	color: var(--text);
	margin-bottom: 5px;
	font-weight: 600;
}

.service-note {
	font-size: 0.9rem;
	color: var(--text-muted);
	letter-spacing: 1px;
}

.cta-note {
	font-size: 0.85rem;
	color: var(--text-muted);
	opacity: 0.8;
	padding-top: 15px;
	border-top: 1px solid var(--glass-border);
}

/* Limo Image Styles */
.mini-player {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 30px;
	max-width: 500px;
	width: 100%;
	backdrop-filter: blur(20px);
	position: relative;
	z-index: 10;
}

.player-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 25px;
	min-height: 110px;
}

.song-info {
	flex: 1;
}

.now-playing {
	font-size: 0.75rem;
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 5px;
}

.song-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gold-light);
}

.player-controls {
	display: flex;
	align-items: center;
	gap: 15px;
	align-self: center;
}

.control-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.play-btn {
	background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
	color: #fff;
	font-size: 1.2rem;
}

.play-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 0 30px rgba(196, 30, 58, 0.5);
}

.nav-btn {
	width: 36px;
	height: 36px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--text-muted);
	font-size: 0.9rem;
}

.nav-btn:hover {
	color: var(--gold);
	border-color: var(--gold);
}

/* Song Selector */
.song-selector {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	height: 54px;
}

.song-tab {
	flex: 1;
	padding: 10px 12px;
	height: 54px;
	background: transparent;
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	color: var(--text-muted);
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	line-height: 1.3;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.song-tab:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.song-tab.active {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
	border-color: var(--gold);
	color: var(--gold);
}

/* Progress Bar */
.progress-container {
	margin-bottom: 20px;
}

.progress-bar {
	height: 4px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	overflow: hidden;
	cursor: pointer;
}

.progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
	border-radius: 2px;
	transition: width 0.1s linear;
}

.time-display {
	display: flex;
	justify-content: space-between;
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: 8px;
}

/* Mini Piano */
.mini-piano-container {
	background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
	border-radius: 12px;
	padding: 15px 10px 20px;
	overflow: hidden;
}

.mini-piano {
	display: flex;
	justify-content: center;
	position: relative;
	height: 80px;
}

.mini-key {
	position: relative;
	cursor: pointer;
	transition: all 0.1s ease;
}

.mini-key.white {
	width: 28px;
	height: 80px;
	background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
	border: 1px solid #ccc;
	border-radius: 0 0 4px 4px;
	margin: 0 1px;
	z-index: 1;
}

.mini-key.white:hover {
	background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
}

.mini-key.white.active {
	background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
	transform: translateY(2px);
}

.mini-key.black {
	position: absolute;
	width: 18px;
	height: 50px;
	background: linear-gradient(180deg, #333 0%, #111 100%);
	border-radius: 0 0 3px 3px;
	z-index: 2;
	top: 0;
}

.mini-key.black:hover {
	background: linear-gradient(180deg, #444 0%, #222 100%);
}

.mini-key.black.active {
	background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
	transform: translateY(2px);
}

/* Player Controls */
.player-controls-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	margin-top: 15px;
	flex-wrap: wrap;
}

.control-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.control-label {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.control-slider {
	width: 80px;
	height: 4px;
	-webkit-appearance: none;
	appearance: none;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	cursor: pointer;
}

.control-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	background: var(--gold);
	border-radius: 50%;
	cursor: pointer;
}

.control-slider::-moz-range-thumb {
	width: 14px;
	height: 14px;
	background: var(--gold);
	border-radius: 50%;
	cursor: pointer;
	border: none;
}

.control-value {
	font-size: 0.75rem;
	color: var(--gold);
	min-width: 30px;
}

/* Repeat Toggle */
.repeat-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
}

.toggle-switch {
	position: relative;
	width: 42px;
	height: 22px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 11px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.toggle-switch::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	background: var(--text-muted);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.toggle-switch.active {
	background: rgba(212, 175, 55, 0.3);
}

.toggle-switch.active::after {
	left: 23px;
	background: var(--gold);
}

.repeat-icon {
	font-size: 0.9rem;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.repeat-toggle.active .repeat-icon {
	opacity: 1;
	color: var(--gold);
}

/* Legacy support */
.speed-control {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 15px;
}

.speed-label {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.speed-slider {
	width: 100px;
	height: 4px;
	-webkit-appearance: none;
	appearance: none;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	cursor: pointer;
}

.speed-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	background: var(--gold);
	border-radius: 50%;
	cursor: pointer;
}

.speed-value {
	font-size: 0.75rem;
	color: var(--gold);
	min-width: 35px;
}

.keyboard-hint {
	text-align: center;
	font-size: 0.7rem;
	color: var(--text-muted);
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid var(--glass-border);
	opacity: 0.7;
}

/* Section Styles */
section {
	padding: 100px 0 80px 0;
	margin-bottom: 48px;
	position: relative;
	z-index: 10;
}

.section-header {
	text-align: center;
	margin-bottom: 100px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

.section-badge {
	display: inline-block;
	padding: 12px 30px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--gold);
	border-radius: 50px;
	font-size: 0.85rem;
	color: var(--gold);
	margin-bottom: 35px;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.section-badge:hover {
	background: rgba(212, 175, 55, 0.15);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 700;
	margin-bottom: 35px;
	color: var(--gold-light);
	line-height: 1.2;
}

.section-desc {
	color: var(--text-muted);
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.8;
	opacity: 0.9;
}

/* About Section */
#about {
	background: var(--bg-section);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	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 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;
}

.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;
}

/* Features Section */
#features {
	background: var(--bg-dark);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 50px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
}

.feature-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 45px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	transition: all 0.6s ease;
}

.feature-card:hover::before {
	left: 100%;
}

.feature-card:hover {
	transform: translateY(-15px);
	border-color: var(--gold);
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(212, 175, 55, 0.2);
}

.feature-card:hover .feature-icon {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
	transform: scale(1.05);
}

.feature-icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 30px;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.feature-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem;
	color: var(--gold-light);
	margin-bottom: 20px;
	font-weight: 600;
}

.feature-card p {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 25px;
}

/* Songs Section */
#songs {
	background: var(--bg-section);
}

.songs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
}

.song-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 30px;
	display: flex;
	align-items: center;
	gap: 25px;
	transition: all 0.4s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
}

.song-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	transition: all 0.6s ease;
}

.song-card:hover::before {
	left: 100%;
}

.song-card:hover {
	border-color: var(--gold);
	transform: translateX(10px) translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.song-card:hover .song-card-duration {
	color: var(--gold);
	transform: scale(1.2);
}

.song-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
	color: #000;
	font-weight: bold;
}

.song-card-info {
	flex: 1;
}

.song-card-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	color: var(--gold-light);
	margin-bottom: 8px;
	font-weight: 600;
}

.song-card-meta {
	font-size: 0.9rem;
	color: var(--text-muted);
	letter-spacing: 0.5px;
}

.song-card-duration {
	font-size: 1.2rem;
	color: var(--text-muted);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

/* Gallery Section */
#gallery {
	background: var(--bg-dark);
}

.gallery-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(3, 180px);
	gap: 20px;
	padding: 0 30px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	cursor: pointer;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
}

.gallery-item:nth-child(1) {
	grid-column: span 5;
	grid-row: span 2;
}

.gallery-item:nth-child(2) {
	grid-column: span 4;
	grid-row: span 1;
}

.gallery-item:nth-child(3) {
	grid-column: span 3;
	grid-row: span 1;
}

.gallery-item:nth-child(4) {
	grid-column: span 3;
	grid-row: span 2;
}

.gallery-item:nth-child(5) {
	grid-column: span 4;
	grid-row: span 1;
}

.gallery-item:nth-child(6) {
	grid-column: span 4;
	grid-row: span 1;
}

.gallery-item:nth-child(7) {
	grid-column: span 4;
	grid-row: span 1;
}

.gallery-item:nth-child(8) {
	grid-column: span 4;
	grid-row: span 1;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
	opacity: 1;
}

.gallery-item .gallery-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 50px;
	height: 50px;
	background: rgba(212, 175, 55, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
	z-index: 2;
}

.gallery-item:hover .gallery-icon {
	transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-content {
	max-width: 90vw;
	max-height: 90vh;
	position: relative;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 85vh;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	width: 40px;
	height: 40px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 50%;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.lightbox-close:hover {
	background: var(--red);
	border-color: var(--red);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 50%;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.lightbox-nav:hover {
	background: var(--gold);
	color: #000;
}

.lightbox-prev {
	left: -70px;
}

.lightbox-next {
	right: -70px;
}

/* Contact Section */
#contact {
	background: var(--bg-section);
	background-image: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.08) 0%, transparent 60%);
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	padding: 0 30px;
}

.contact-info {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 45px;
	margin-bottom: 20px;
}

.contact-info h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	color: var(--gold-light);
	margin-bottom: 25px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
}

.contact-item-icon {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.contact-item-content h4 {
	font-size: 1rem;
	color: var(--gold-light);
	margin-bottom: 5px;
}

.contact-item-content p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.contact-item-content a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item-content a:hover {
	color: var(--gold);
}

.contact-map {
	margin-top: 25px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--glass-border);
}

.contact-map iframe {
	width: 100%;
	height: 200px;
	border: none;
	filter: grayscale(100%) invert(92%) contrast(90%);
}

.contact-form {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 40px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	color: var(--text);
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--gold);
	background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
	min-height: 156px;
	resize: vertical;
}

.form-buttons {
	display: flex;
	gap: 15px;
}

.btn {
	flex: 1;
	padding: 16px 24px;
	border: none;
	border-radius: 12px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-submit {
	background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
	color: #fff;
}

.btn-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.btn-clear {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--text-muted);
}

.btn-clear:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-3px);
}

.submit-btn {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
	border: none;
	border-radius: 12px;
	color: #fff;
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;

	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

/* Footer */
footer {
	background: var(--bg-dark);
	padding: 60px 50px 30px;
	position: relative;
	z-index: 10;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gold);
}

.footer-links {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.footer-links a:hover {
	color: var(--gold);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-muted);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* Vehicle Gallery Modal and Clickable Cars */
.clickable-car {
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.view-gallery-btn {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(212, 175, 55, 0.9);
	color: #000;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	opacity: 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	white-space: nowrap;
}

.clickable-car:hover .view-gallery-btn {
	opacity: 1;
	transform: translateX(-50%) translateY(-5px);
}

.clickable-car:hover {
	transform: scale(1.02);
}

.vehicle-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.vehicle-modal.active {
	opacity: 1;
	visibility: visible;
}

.vehicle-modal-content {
	background: var(--bg-dark);
	border: 2px solid var(--gold);
	border-radius: 20px;
	max-width: 90vw;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	padding: 30px;
	margin: 20px;
}

.vehicle-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 50%;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.vehicle-modal-close:hover {
	background: var(--gold);
	color: #000;
}

.vehicle-modal-header {
	text-align: center;
	margin-bottom: 30px;
}

.vehicle-modal-header h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	color: var(--gold);
	margin-bottom: 20px;
}

.vehicle-quote-info {
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--gold);
	border-radius: 15px;
	padding: 20px;
	margin: 0 auto;
	max-width: 400px;
}

.quote-phone-display {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	font-size: 1.2rem;
	color: var(--text-light);
}

.quote-phone-display .phone-icon {
	font-size: 1.5rem;
	color: var(--gold);
}

.quote-phone-display strong {
	color: var(--gold);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	letter-spacing: 1px;
}

.vehicle-gallery {
	position: relative;
	text-align: center;
}

.vehicle-gallery-nav {
	position: relative;
	margin-bottom: 20px;
}

.vehicle-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 50%;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.vehicle-nav-btn:hover {
	background: var(--gold);
	color: #000;
}

#vehiclePrev {
	left: 20px;
}

#vehicleNext {
	right: 20px;
}

#vehicleMainImage {
	max-width: 100%;
	max-height: 400px;
	border-radius: 15px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	margin-bottom: 20px;
}

.vehicle-thumbnails {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.vehicle-thumb {
	width: 80px;
	height: 60px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	object-fit: cover;
}

.vehicle-thumb:hover,
.vehicle-thumb.active {
	border-color: var(--gold);
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.vehicle-modal-content {
		padding: 20px;
		margin: 10px;
	}
	
	.vehicle-modal-header h2 {
		font-size: 2rem;
	}
	
	.quote-phone-display {
		font-size: 1rem;
		flex-direction: column;
		gap: 10px;
	}
	
	.vehicle-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	
	#vehiclePrev {
		left: 10px;
	}
	
	#vehicleNext {
		right: 10px;
	}
	
	.vehicle-thumb {
		width: 60px;
		height: 45px;
	}
}

/* Service Areas Section Styles */
#service-areas {
	padding: 100px 0;
	background: var(--bg-dark);
	position: relative;
}

#service-areas::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.service-areas-map-container {
	max-width: 1200px;
	margin: 50px auto 0;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
}

.map-wrapper {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 15px;
	padding: 15px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.map-wrapper:hover {
	border-color: var(--gold);
	box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.map-wrapper iframe {
	width: 100%;
	height: 500px;
	border: none;
	border-radius: 10px;
}

.map-service-info {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 15px;
	padding: 35px;
	backdrop-filter: blur(10px);
	text-align: center;
	height: fit-content;
}

.map-service-info h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.map-service-info p {
	color: var(--text-light);
	margin-bottom: 25px;
	font-size: 1rem;
	line-height: 1.6;
}

.coverage-highlights {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
}

.coverage-item {
	background: rgba(212, 175, 55, 0.1);
	color: var(--text-light);
	padding: 8px 15px;
	border-radius: 8px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.coverage-item:hover {
	background: rgba(212, 175, 55, 0.2);
	border-color: var(--gold);
	color: var(--gold);
}

.map-cta {
	background: linear-gradient(45deg, var(--gold), #f4e4bc);
	color: #000;
	padding: 15px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.map-cta:hover {
	background: linear-gradient(45deg, #f4e4bc, var(--gold));
	transform: scale(1.02);
}

/* Sticky Mobile Call Footer */
.sticky-mobile-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	padding: 15px 20px;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
	border-top: 2px solid var(--gold);
	box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
	display: none; /* Hidden by default, shown on mobile */
	backdrop-filter: blur(10px);
}

.sticky-call-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(45deg, var(--gold), #f4e4bc);
	color: #000000;
	text-decoration: none;
	border-radius: 50px;
	padding: 15px 25px;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
}

.sticky-call-btn:hover {
	transform: scale(1.02);
	background: linear-gradient(45deg, #f4e4bc, var(--gold));
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.call-icon {
	font-size: 1.5rem;
	margin-right: 15px;
	animation: ringPulse 2s infinite;
}

.call-text {
	flex: 1;
	text-align: center;
}

.call-text strong {
	display: block;
	font-size: 1.2rem;
	letter-spacing: 1px;
}

.call-text small {
	font-size: 0.9rem;
	font-weight: 600;
	opacity: 0.8;
}

.call-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	border-radius: 50px;
	background: rgba(212, 175, 55, 0.3);
	animation: callPulse 2s infinite;
	z-index: -1;
}

@keyframes ringPulse {
	0%, 100% { transform: scale(1) rotate(0deg); }
	25% { transform: scale(1.1) rotate(-5deg); }
	50% { transform: scale(1) rotate(0deg); }
	75% { transform: scale(1.1) rotate(5deg); }
}

@keyframes callPulse {
	0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
	50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
	100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Premium Typography Enhancements */
.section-header h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced CTA Typography */
.quote-cta, .area-cta {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 0.95rem;
}

/* Audience-Specific Typography */
.testimonial-author strong {
	letter-spacing: 0.5px;
}

.event-overlay h4 {
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1.2rem;
}

/* High-Contrast Accessibility */
@media (prefers-contrast: high) {
	:root {
		--text: #ffffff;
		--text-light: #ffffff;
		--text-muted: #e0e0e0;
		--gold: #ffcc00;
		--bg-dark: #000000;
		--glass-border: rgba(255, 255, 255, 0.3);
	}
}

footer {
	border-top: 1px solid var(--glass-border);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gold);
}

.footer-links {
	display: flex;
	gap: 30px;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--gold);
}

.footer-bottom {
	max-width: 1200px;
	margin: 40px auto 0;
	padding-top: 30px;
	border-top: 1px solid var(--glass-border);
	text-align: center;
	color: var(--text-muted);
	font-size: 0.85rem;
}

.footer-bottom a {
	color: var(--gold);
	text-decoration: none;
}

/* Desktop Enhancements */
@media (min-width: 1200px) {
	.contact-phone-hero {
		max-width: 900px;
	}

	.phone-number-text {
		font-size: 4rem;
	}

	.features-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}

	.limo-image {
		height: 140px;
	}

	.hero-subtitle {
		font-size: 1.4rem;
	}
}

/* Responsive */
@media (max-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-grid {
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: repeat(4, 150px);
	}

	.gallery-item:nth-child(1) {
		grid-column: span 3;
		grid-row: span 2;
	}

	.gallery-item:nth-child(2) {
		grid-column: span 3;
		grid-row: span 1;
	}

	.gallery-item:nth-child(3) {
		grid-column: span 3;
		grid-row: span 1;
	}

	.gallery-item:nth-child(4) {
		grid-column: span 2;
		grid-row: span 1;
	}

	.gallery-item:nth-child(5) {
		grid-column: span 2;
		grid-row: span 1;
	}

	.gallery-item:nth-child(6) {
		grid-column: span 2;
		grid-row: span 1;
	}

	.gallery-item:nth-child(7) {
		grid-column: span 3;
		grid-row: span 1;
	}

	.gallery-item:nth-child(8) {
		grid-column: span 3;
		grid-row: span 1;
	}

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}
}

@media (max-width: 768px) {

	.header-logo-row::before,
	.header-logo-row::after {
		display: none;
	}

	.header-nav-row {
		min-height: 50px;
	}

	.nav-container {
		min-height: 50px;
	}

	.nav-decor {
		display: none;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: var(--bg-dark);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0;
		transition: right 0.3s ease;
		z-index: 1001;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-toggle {
		display: flex;
		z-index: 1002;
	}

	.nav-links li::after {
		display: none;
	}

	.nav-links a {
		padding: 20px 40px;
		font-size: 1.1rem;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	section {
		padding: 60px 20px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.song-selector {
		flex-direction: column;
		height: auto;
	}

	.song-tab {
		height: 44px;
	}

	.mini-player {
		padding: 20px;
	}

	.player-controls-row {
		flex-direction: column;
		gap: 15px;
	}

	.control-group {
		width: 100%;
		justify-content: center;
	}

	.control-slider {
		width: 120px;
	}

	.repeat-toggle {
		margin-top: 5px;
	}

	.contact-phone-hero {
		padding: 20px;
	}

	.phone-number-large {
		flex-direction: column;
		gap: 15px;
		padding: 20px;
	}

	.phone-icon-large {
		font-size: 2rem;
	}

	.phone-number-text {
		font-size: 2.5rem;
		letter-spacing: 1px;
	}

	.booking-notice h3 {
		font-size: 1.2rem;
	}

	.service-features {
		margin-bottom: 20px;
	}

	.call-action {
		padding: 20px;
	}

	.limo-image {
		height: 150px;
	}

	.quote-cta {
		font-size: 0.85rem;
	}

	.about-stats {
		gap: 20px;
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.gallery-item {
		grid-column: span 1 !important;
		grid-row: span 1 !important;
		height: 150px;
	}

	.gallery-item:nth-child(1) {
		grid-column: span 2 !important;
		height: 200px;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}


	.footer-links {
		flex-wrap: wrap;
		justify-content: center;
	}

	.contact-form {
		padding: 30px 20px;
	}

	.contact-container {
		grid-template-columns: 1fr;
	}

	.contact-info {
		padding: 30px 20px;
	}

	/* Show sticky footer on mobile and enhance mobile experience */
	.sticky-mobile-footer {
		display: block;
	}
	
	/* Add bottom padding to body to prevent content overlap */
	body {
		padding-bottom: 85px;
	}
	
	.header-logo-row {
		padding: 20px;
	}
	
	.logo {
		font-size: 1.8rem;
	}
	
	/* Larger, more prominent phone numbers on mobile for luxury audience */
	.hero-subtitle {
		font-size: 1.4rem !important;
		font-weight: 700 !important;
	}
	
	.contact-phone-hero .phone-number-text {
		font-size: 2.8rem !important;
		font-weight: 800 !important;
	}
	
	/* Service areas mobile optimization */
	.service-areas-map-container {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.map-wrapper iframe {
		height: 350px;
	}
	
	.map-service-info {
		padding: 25px;
	}
	
	.coverage-highlights {
		gap: 8px;
	}
	
	.coverage-item {
		padding: 6px 12px;
		font-size: 0.9rem;
	}
	
	/* Events gallery mobile optimization */
	.events-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.event-card {
		height: 180px;
	}
	
	/* Enhanced section headers for mobile luxury experience */
	.section-header h2 {
		font-size: 2.2rem;
		text-align: center;
		margin-bottom: 15px;
	}
	
	.section-desc {
		font-size: 1.1rem;
		text-align: center;
	}
}