/* Modern CSS Reset and Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap');

/* CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Modern Body with Flexbox Layout - Dark Theme */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background: var(--background-dark);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Modern CSS Custom Properties - Pure Dark Grey Theme */
:root {
    --primary-gold: #D4AF37;
    --secondary-black: #1a1a1a;
    --accent-yellow: #FFD700;
    --neutral-gray: #999999;
    --background-white: #FFFFFF;
    --background-dark: #2a2a2a;
    --background-darker: #3a3a3a;
    --background-card: #3a3a3a;
    --gold-hover: #B8941F;
    --yellow-hover: #E6C200;
    --text-dark: #1a1a1a;
    --text-light: #888888;
    --text-muted: #aaaaaa;
    --text-white: #FFFFFF;
    --text-gray: #dddddd;
    --background-light: #f5f5f5;
    --background-gray: #e5e5e5;
    --border-light: #dddddd;
    --border-dark: #555555;
    
    /* Modern spacing system */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Modern typography scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Modern shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Modern border radius */
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
}

/* Modern Grid Container System */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-xl);
}

/* Content sections with better spacing */
.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.section-lg {
    padding: 5rem 0;
}

/* Modern Grid Layouts */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.grid-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-auto-fill {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Modern Flexbox Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Modern Animation System */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) translateY(-5px);
    }
    70% {
        transform: scale(0.98) translateY(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-scale {
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-bounce {
    opacity: 0;
    animation: bounceIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered animation delays */
.animate-fade-in:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.4s; }
.animate-fade-in:nth-child(5) { animation-delay: 0.5s; }

/* Modern Typography - Dark Theme */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

h2 { 
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

h3 { 
    font-size: var(--text-3xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

h4 { 
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

h5 { 
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

h6 { 
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

p {
    font-family: 'Roboto', sans-serif;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-size: var(--text-base);
    max-width: 65ch;
}

.lead {
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 60ch;
}

.text-center {
    text-align: center;
}

.text-center p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Image Handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    content-visibility: auto;
    contain-intrinsic-size: 300px 200px;
}

/* Modern Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(42, 42, 42, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-gold);
}

/* Enhanced navbar visibility when scrolling */
.navbar.scrolled {
    background: rgba(42, 42, 42, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid var(--primary-gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    width: 450px;
    max-height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-lg);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-yellow);
    background: transparent;
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Facebook link in top-right - Enhanced */
.facebook-logo-top-right {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 10000;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1877F2, #0866FF);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.facebook-logo-top-right:hover {
    transform: translateY(-3px) scale(1.15);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4), 0 6px 15px rgba(24, 119, 242, 0.3);
    border-color: var(--accent-yellow);
}

.facebook-logo-top-right:active {
    transform: translateY(-1px) scale(1.1);
}

.facebook-logo-top-right svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* Mobile Facebook logo positioning */
@media (max-width: 768px) {
    .facebook-logo-top-right {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .facebook-logo-top-right svg {
        width: 20px;
        height: 20px;
    }
}

/* Modern Hero Section */
.hero {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-gold);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* CSS-based Background Slideshow */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroSlideshow 20s infinite;
    z-index: 0;
}

/* Hero Background Slideshow Animation */
@keyframes heroSlideshow {
    0% { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20220129_141412.jpg');
    }
    20% { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20220129_141412.jpg');
    }
    25% { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20191106_150416.jpg');
    }
    45% { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20191106_150416.jpg');
    }
    50% { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20220225_160058.jpg');
    }
    70% { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20220225_160058.jpg');
    }
    75% { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20200807_165745.jpg');
    }
    95% { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20200807_165745.jpg');
    }
    100% { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20220129_141412.jpg');
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-text h1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    color: #FFFFFF;
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-tagline {
    font-size: var(--text-xl);
    color: #FFFFFF;
    font-weight: 700;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: #FFFFFF;
    line-height: 1.6;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-features {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    border: 2px solid var(--primary-gold);
    font-size: var(--text-sm);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    backdrop-filter: blur(5px);
}

.badge-icon {
    font-size: var(--text-base);
    color: var(--accent-yellow);
}

/* Modern CTA Buttons */
.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease, box-shadow 0.3s ease;
    font-size: var(--text-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--secondary-black);
    border-color: var(--accent-yellow);
}

.btn-primary:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-outline {
    background: transparent;
    color: var(--secondary-black);
    border-color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--background-white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Professional Gallery */
.gallery-section {
	padding: 5rem 0;
	background: var(--background-dark);
	position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-lg);
	margin-top: var(--space-2xl);
}

.gallery-item {
	position: relative;
	display: block;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: var(--background-card);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--border-dark);
}

.gallery-item:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-gold);
}

.gallery-item img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.8));
	color: white;
	padding: var(--space-lg) var(--space-md) var(--space-md);
	transform: translateY(100%);
	transition: transform 0.3s ease;
	font-size: var(--text-sm);
	font-weight: 500;
}

.gallery-item:hover .gallery-caption {
	transform: translateY(0);
}

/* CSS lightbox */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.9);
	z-index: 10000;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.lightbox img {
	max-width: 90vw;
	max-height: 85vh;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
}

.lightbox:target { display: flex; }

.lightbox-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	border: 2px solid var(--primary-gold);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: bold;
	font-size: 1.2rem;
}

.lightbox-caption {
	margin-top: 1rem;
	color: #fff;
	text-align: center;
	font-size: var(--text-lg);
}

/* Modern Services Section - Dark Theme */
.services {
    padding: 5rem 0;
    background: var(--background-darker);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.service-card {
    background: var(--background-card);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.service-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-md);
    color: var(--accent-yellow);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.service-card h3 {
    font-size: var(--text-2xl);
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    text-align: left;
}

.service-features li {
    padding: var(--space-xs) 0;
    color: var(--text-gray);
    position: relative;
    padding-left: var(--space-lg);
    font-size: var(--text-sm);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.service-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--gold-hover);
}

/* Service Highlights - Modern Dark Theme */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-3xl);
    border-top: 2px solid var(--primary-gold);
    position: relative;
}

.service-highlights::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.highlight-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--background-card);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2), 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-gold);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.highlight-item h4 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    font-size: var(--text-lg);
}

.highlight-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* Modern Testimonials Section - Dark Theme */
.testimonials {
    padding: 5rem 0;
    background: var(--background-dark);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--background-card);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 32px rgba(212, 175, 55, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card:hover::before {
    color: var(--gold-hover);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-gold);
    font-family: serif;
    line-height: 1;
}

.stars {
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
}

.testimonial-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.customer-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.customer-info strong {
    color: var(--text-white);
    font-weight: 600;
}

.service-type {
    color: var(--primary-gold);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-black) 0%, #2D3748 100%);
    color: var(--background-white);
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.page-header h1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--background-white);
}

.page-header p {
    font-size: var(--text-xl);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    color: var(--background-white);
}

.page-header .lead {
    color: var(--background-white);
    opacity: 0.95;
}

/* Modern Footer */
.footer {
    background: var(--secondary-black);
    color: var(--background-white);
    padding: 60px 0 20px;
    position: relative;
    margin-top: auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3 {
    margin-bottom: var(--space-md);
    color: #f8fafc;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: var(--space-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 0;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
    transform: translateX(4px);
}

/* Enhanced footer link for Privacy Policy */
.footer-section ul li a[href="privacy.html"] {
    font-weight: 500;
    position: relative;
}

.footer-section ul li a[href="privacy.html"]::before {
    content: '🔒';
    margin-right: 6px;
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: var(--space-xl);
    text-align: center;
    color: #9ca3af;
}

/* Modern Emergency Bar */
.emergency-bar {
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    color: var(--secondary-black);
    padding: 12px 0;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.emergency-phone {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emergency-phone a {
    color: var(--secondary-black);
    text-decoration: none;
    border-bottom: 2px solid rgba(0,0,0,0.2);
}

/* Modern CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--secondary-black) 100%);
    color: var(--text-white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    color: var(--text-gray);
}

.cta-section .cta-buttons {
    position: relative;
    z-index: 2;
}

/* CTA Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-gray);
    font-size: var(--text-base);
    font-weight: 500;
}

.cta-feature .feature-icon {
    color: var(--primary-gold);
    font-size: var(--text-xl);
}

/* Services Page - Modern Dark Theme */
.service-filters {
    background: var(--background-darker);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border-dark);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: var(--text-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--secondary-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.services-page {
    padding: 5rem 0;
    background: var(--background-dark);
}

.services-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.service-item {
    background: var(--background-card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-dark);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: var(--space-2xl);
    text-align: center;
}

.service-content .service-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.service-content h3 {
    font-size: var(--text-2xl);
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.service-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.service-content .service-features {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
    text-align: left;
}

.service-content .service-features li {
    padding: var(--space-xs) 0;
    color: var(--text-gray);
    position: relative;
    padding-left: var(--space-lg);
    font-size: var(--text-sm);
}

.service-content .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Service Card Buttons */
.service-content .btn-primary {
    margin-top: var(--space-lg);
    padding: 12px 24px;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: auto;
    min-width: 180px;
}

/* Service Areas Section */
.service-areas {
    background: var(--background-darker);
    padding: 5rem 0;
    position: relative;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.area-card {
    background: var(--background-card);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-dark);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.area-card h3 {
    color: var(--primary-gold);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.area-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--text-sm);
}

/* Scheduling Page - Modern Dark Theme */
.scheduling-form-section {
    background: var(--background-dark);
    padding: 5rem 0;
    position: relative;
}

/* Payment Fields Styling */
.form-section input[type="radio"] {
    margin-right: 0.5rem;
}

.form-section .checkbox-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

#card-fields, #ach-fields {
    margin-top: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-card) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    max-width: 760px;
    width: 100%;
}

/* Layout refinements to prevent wrapping issues */
.form-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1 1 0;
}

.card-number-group { flex: 1 1 100%; min-width: 0; }
.card-cvv-group { flex: 0 0 140px; }
.exp-month-group { flex: 0 0 110px; }
.exp-year-group { flex: 0 0 120px; }

@media (max-width: 768px) {
    .form-row { flex-direction: column; }
    .card-number-group,
    .card-cvv-group,
    .exp-month-group,
    .exp-year-group { flex: none; }
}

#card-fields::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #06b6d4);
    z-index: 1;
}

#ach-fields::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
    z-index: 1;
}

#card-fields .payment-header, #ach-fields .payment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    z-index: 2;
}

#card-fields .payment-icon, #ach-fields .payment-icon {
    width: 48px;
    height: 48px;
    margin-right: 1rem;
    background: var(--primary-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.3);
}

#card-fields .payment-title, #ach-fields .payment-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
}

#card-fields .payment-subtitle, #ach-fields .payment-subtitle {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
    opacity: 0.8;
}

#card-fields input, #ach-fields input, #ach-fields select {
    background: rgba(58, 58, 58, 0.8);
    border: 2px solid transparent;
    color: var(--text-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 56px;
    position: relative;
    z-index: 1;
}

#card-fields input:hover, #ach-fields input:hover, #ach-fields select:hover {
    background: rgba(58, 58, 58, 0.9);
    border-color: rgba(218, 165, 32, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#card-fields input:focus, #ach-fields input:focus, #ach-fields select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2), 0 4px 16px rgba(0, 0, 0, 0.2);
    background: rgba(58, 58, 58, 1);
    transform: translateY(-2px);
}

#card-fields input::placeholder, #ach-fields input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Payment method radio buttons */
input[type="radio"][name="payment-method"] {
    accent-color: var(--primary-gold);
    margin-right: 0.5rem;
    transform: scale(1.1);
}

/* Card number formatting */
#card-number {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    position: relative;
    min-width: 280px;
    width: 100%;
    max-width: 400px;
}

#card-number::before {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23daa520'%3e%3cpath d='M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

/* CVV field smaller width */
#card-cvv {
    max-width: 140px;
    min-width: 140px;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    text-align: center;
    flex: none;
    font-size: 0.95rem;
}

/* Expiry fields smaller width */
#card-exp-month, #card-exp-year {
    max-width: 110px;
    min-width: 110px;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    text-align: center;
    flex: none;
    font-size: 0.95rem;
}

/* Security indicators */
.form-group {
    position: relative;
}

.security-indicator {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: var(--primary-gold);
    opacity: 0.7;
    pointer-events: none;
}

/* ACH account type select styling */
#ach-type {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23daa520' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

#ach-type option {
    background: var(--background-card);
    color: var(--text-white);
}

/* Payment section header */
.form-section h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: var(--text-lg);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Payment method selection styling */
.form-section label[for="payment-method"] {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

/* Responsive payment fields */
@media (max-width: 768px) {
    #card-fields, #ach-fields {
        padding: 1.5rem;
        margin-top: 1rem;
        max-width: none;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row .form-group {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    #card-number {
        min-width: auto;
        flex: none;
    }
    
    #card-cvv, #card-exp-month, #card-exp-year {
        max-width: none;
        min-width: auto;
    }
}

.scheduling-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.scheduling-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.scheduling-info {
    position: relative;
}

.scheduling-info h2 {
    font-size: var(--text-3xl);
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.scheduling-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    font-size: var(--text-lg);
}

.scheduling-info::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    border-radius: 4px;
    margin-top: var(--space-lg);
}

.booking-features {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--background-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.feature-text h3 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: 600;
}

.feature-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* Scheduling Form Container */
.scheduling-form-container {
    background: var(--background-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.scheduling-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
}

.appointment-form h3 {
    margin: 0 0 var(--space-lg) 0;
    font-size: var(--text-2xl);
    color: var(--text-white);
    font-weight: 700;
    text-align: center;
}

.form-section {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    background: var(--background-darker);
    position: relative;
}

.form-section h4 {
    margin: 0 0 var(--space-md) 0;
    font-size: var(--text-lg);
    color: var(--text-white);
    position: relative;
    font-weight: 600;
}

.form-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-md);
}

.form-group label {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    font-size: var(--text-base);
    outline: none;
    background: var(--background-dark);
    color: var(--text-white);
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    background: var(--background-card);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.form-group textarea {
    min-height: 120px;
    max-height: 200px;
    resize: vertical;
    line-height: 1.5;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    color: var(--text-gray);
    font-size: var(--text-sm);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-gold);
}

/* Service Fee Notice */
.service-fee-notice {
    margin-top: var(--space-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 193, 7, 0.1));
    border: 1px solid var(--primary-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
}

.service-fee-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.fee-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.fee-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.fee-text h4 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: 600;
}

.fee-text p {
    margin: 4px 0 0 0;
    color: var(--text-gray);
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* Submit Button */
#submit-appointment {
    margin-top: var(--space-xl);
    width: 100%;
    padding: 16px 24px;
    font-size: var(--text-lg);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-yellow));
    color: var(--secondary-black);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#submit-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

#submit-appointment:active {
    transform: translateY(0);
}

/* Service Types Section */
.service-types {
    background: var(--background-darker);
    padding: 5rem 0;
    position: relative;
}

.service-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.service-type-card {
    background: var(--background-card);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-type-card:hover::before {
    transform: scaleX(1);
}

.service-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.service-type-card h3 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
    font-weight: 600;
}

.service-type-card p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.response-time {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Emergency Contact Section */
.emergency-contact {
    background: var(--background-dark);
    padding: 5rem 0;
    position: relative;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.emergency-info h2 {
    font-size: var(--text-3xl);
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.emergency-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    font-size: var(--text-lg);
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-lg);
    background: var(--background-card);
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-gold);
}

.phone-icon {
    font-size: 2rem;
    color: var(--primary-gold);
}

.phone-number {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-gold);
}

.emergency-note {
    color: var(--text-muted);
    font-style: italic;
    font-size: var(--text-sm);
}

.emergency-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Payment Modals */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.payment-modal-content {
    background: var(--background-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-dark);
    position: relative;
}

.payment-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.payment-modal .success-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    color: #16a34a;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.payment-modal .error-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    color: #dc2626;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.payment-modal h3 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.payment-modal p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.appointment-details {
    text-align: left;
    margin: var(--space-lg) 0;
    background: var(--background-darker);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}

.appointment-details h4 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
}

.appointment-details p {
    margin: var(--space-xs) 0;
    color: var(--text-gray);
    font-size: var(--text-sm);
}

/* Modern Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 var(--space-md);
    }
    
    .nav-logo img {
        width: 320px;
        max-height: 90px;
    }
}

@media (max-width: 768px) {
    /* Mobile body adjustments */
    body {
        font-size: 16px;
    }

    .container,
    .container-wide,
    .container-narrow {
        padding: 0 var(--space-md);
    }

    .hero {
        padding: var(--space-2xl) var(--space-md);
        min-height: 60vh;
    }

    .page-header {
        padding: 6rem var(--space-md) 3rem;
        margin-top: 80px;
    }

    .page-header h1 {
        font-size: var(--text-3xl);
    }

    .page-header p,
    .page-header .lead {
        font-size: var(--text-lg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: var(--text-3xl);
        text-align: center;
        margin: 0 auto var(--space-md) auto;
    }
    
    .hero-tagline {
        font-size: var(--text-lg);
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .nav-container {
        height: 80px;
        padding: 0 var(--space-md);
        justify-content: center;
    }
    
    .nav-logo img {
        width: 320px;
        max-height: 90px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(42, 42, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(15px);
        padding: var(--space-xl) 0;
        gap: var(--space-md);
        border-bottom: 2px solid var(--primary-gold);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--text-xl);
        border-radius: var(--radius-lg);
        border: 1px solid transparent;
        background: transparent;
        color: var(--primary-gold);
        margin: 0 var(--space-md);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 175, 55, 0.2);
        border-color: var(--primary-gold);
        color: var(--accent-yellow);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-gold);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: var(--radius-sm);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .services-grid-extended {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .filter-btn {
        width: 100%;
        max-width: 250px;
    }

    /* Scheduling page responsive */
    .scheduling-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .service-types-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Privacy page responsive */
    .contact-methods-privacy {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .privacy-intro {
        padding: var(--space-lg);
    }

    .privacy-section {
        padding: var(--space-lg);
    }

    /* Contact page responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .areas-map {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* About page responsive */
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .family-photo-placeholder {
        max-width: 300px;
        height: 280px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--space-lg) var(--space-md);
    }
    
    .hero-text h1 {
        font-size: var(--text-2xl);
        text-align: center;
        margin: 0 auto var(--space-md) auto;
    }
    
    .hero-tagline {
        font-size: var(--text-base);
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
    }
    
    .feature-badge {
        font-size: var(--text-xs);
        padding: var(--space-xs) var(--space-sm);
    }
    
    .section-header h2 {
        font-size: var(--text-3xl);
    }
    
    .section-header p {
        font-size: var(--text-base);
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .nav-logo img {
        width: 120px;
        max-height: 45px;
    }
}

/* Data-saver optimizations */
@media (prefers-reduced-data: reduce) {
    .slideshow {
        animation: none !important;
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/gallery/20220129_141412.jpg') !important;
    }

    .hero::before,
    .hero::after {
        display: none !important;
    }

    .hero-static .hero-photo {
        animation: none !important;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .slideshow {
        animation: none !important;
    }
    
    .animate-fade-in,
    .animate-scale,
    .animate-slide-right,
    .animate-slide-left,
    .animate-bounce {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    .service-card:hover,
    .testimonial-card:hover,
    .btn-primary:hover,
    .btn-outline:hover,
    .nav-link:hover {
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: #000000;
        --border-light: #000000;
    }
    
    .nav-link {
        border: 2px solid var(--text-dark);
    }
    
    .service-card,
    .testimonial-card {
        border: 2px solid var(--text-dark);
    }
}

/* Enhanced Dark Theme - Consistent Across All Pages */
.video-section {
    background: var(--background-darker);
    padding: 5rem 0;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.video-placeholder {
    background: var(--background-card);
    border: 2px solid var(--border-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-text h2 {
    color: var(--text-white);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.video-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.video-features li {
    color: var(--text-gray);
}

.video-features li::before {
    color: var(--primary-gold);
}

/* About Page - Modern Professional Styling */
.family-story {
    background: var(--background-dark);
    padding: 5rem 0;
    position: relative;
}

.family-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.story-text h2 {
    font-size: var(--text-4xl);
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    font-weight: 700;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    border-radius: 2px;
}

.story-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-size: var(--text-base);
}

.story-text strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.family-photo-placeholder {
    width: 100%;
    max-width: 400px;
    height: 350px;
    background: linear-gradient(135deg, var(--background-card), var(--background-darker));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.family-photo-placeholder:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.2);
}

.family-photo-placeholder::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.placeholder-content {
    text-align: center;
    color: var(--text-white);
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.placeholder-content p {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-white);
}

.placeholder-content small {
    font-size: var(--text-base);
    opacity: 0.8;
    color: var(--text-gray);
}

/* Credentials Section */
.credentials {
    background: var(--background-darker);
    padding: 5rem 0;
    position: relative;
}

.credentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.credential-item {
    background: var(--background-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.credential-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.credential-item:hover::before {
    transform: scaleX(1);
}

.credential-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.credential-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.credential-item h3 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-weight: 600;
    font-size: var(--text-xl);
}

.credential-item p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    font-size: var(--text-base);
}



/* Mission & Values Section */
.mission-values {
    background: var(--background-dark);
    padding: 5rem 0;
    position: relative;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.mission-content {
    text-align: center;
}

.mission-text h2 {
    font-size: var(--text-4xl);
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.mission-text p {
    font-size: var(--text-xl);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.value-item {
    background: var(--background-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.value-item h3 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-weight: 600;
    font-size: var(--text-xl);
}

.value-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: var(--text-base);
}

/* Why Choose Us Section */
.why-choose-about {
    background: var(--background-darker);
    padding: 5rem 0;
    position: relative;
}

.why-choose-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.reason-item {
    background: var(--background-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-item:hover::before {
    transform: scaleX(1);
}

.reason-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.reason-item h3 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-weight: 600;
    font-size: var(--text-xl);
}

.reason-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: var(--text-base);
}

/* Contact Page Sections */
.contact-section,
.service-areas-contact,
.faq-section {
    background: var(--background-dark);
    position: relative;
}

.contact-section::before,
.service-areas-contact::before,
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

/* Contact Page - Modern Professional Styling */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    position: relative;
}

.contact-info h2 {
    font-size: var(--text-4xl);
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.contact-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    font-size: var(--text-lg);
}

.contact-methods {
    display: grid;
    gap: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--background-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    min-height: 80px;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15), 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-gold);
}

.method-icon {
    font-size: 2rem;
    min-width: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.method-details h3 {
    color: var(--text-white);
    margin-bottom: var(--space-xs);
    font-size: var(--text-lg);
    font-weight: 600;
}

.method-primary {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: var(--text-lg);
}

.method-primary a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-primary a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.method-secondary {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin: var(--space-xs) 0;
    line-height: 1.4;
}

/* Contact Form Container */
.contact-form-container {
    background: var(--background-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
}

.contact-form h3 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    font-size: var(--text-2xl);
    font-weight: 700;
    text-align: center;
}

.contact-form p {
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    text-align: center;
    font-size: var(--text-base);
}

/* New Customer Form Enhancement */
.new-customer-form {
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-xl);
    border: 2px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--background-card), var(--background-darker));
    position: relative;
    overflow: visible;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.new-customer-form::before {
    content: '🌟';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--background-card);
    padding: 0 8px;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.new-customer-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
}

.new-customer-form h3 {
    color: var(--primary-gold);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    text-align: center;
    font-weight: 700;
}

.new-customer-form p {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: var(--space-2xl);
    font-style: italic;
    font-size: var(--text-lg);
}

/* Service Areas Contact Enhancement */
.service-areas-contact {
    background: var(--background-darker);
    padding: 5rem 0;
}

.areas-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.map-placeholder {
    text-align: center;
    padding: var(--space-md) var(--space-xl);
    background: var(--background-card);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 550px;
    min-height: 120px;
}

.map-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.map-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.map-placeholder h3 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-size: var(--text-2xl);
    font-weight: 600;
}

.map-placeholder p {
    color: var(--text-muted);
    font-size: var(--text-base);
}

.areas-list {
    display: grid;
    gap: var(--space-lg);
}

.area-item {
    background: var(--background-card);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    min-height: 70px;
}

.area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-item:hover::before {
    transform: scaleX(1);
}

.area-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.area-item h4 {
    color: var(--primary-gold);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: 600;
}

.area-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* FAQ Section Enhancement */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.faq-item {
    background: var(--background-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.faq-item h3 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.faq-item h3::before {
    content: '❓';
    font-size: var(--text-lg);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: var(--text-base);
}

/* Privacy Policy Page - Modern Dark Theme */
.privacy-content {
    background: var(--background-dark);
    padding: 5rem 0;
    position: relative;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.privacy-intro {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--background-card);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.privacy-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
}

.privacy-intro .lead {
    color: var(--text-gray);
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.last-updated {
    padding: var(--space-md);
    background: var(--background-darker);
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-gold);
    margin-top: var(--space-lg);
}

.last-updated p {
    margin: 0;
    color: var(--text-white);
    font-size: var(--text-sm);
    font-weight: 600;
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.privacy-section {
    background: var(--background-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.privacy-section:hover::before {
    transform: scaleX(1);
}

.privacy-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.1), 0 4px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.privacy-section h2 {
    color: var(--text-white);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.privacy-section h2::before {
    content: '🔒';
    font-size: var(--text-2xl);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.privacy-section h3 {
    color: var(--primary-gold);
    font-size: var(--text-xl);
    font-weight: 600;
    margin: var(--space-lg) 0 var(--space-md) 0;
}

.section-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 var(--space-lg) 0;
}

.privacy-list li {
    padding: var(--space-sm) 0;
    color: var(--text-muted);
    position: relative;
    padding-left: var(--space-xl);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: var(--text-base);
}

.privacy-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.contact-privacy {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--background-darker);
    border-radius: var(--radius-xl);
    border: 1px solid var(--primary-gold);
    text-align: center;
}

.contact-privacy p {
    margin: 0;
    color: var(--text-white);
    font-weight: 500;
}

/* Privacy Contact Section */
.privacy-contact {
    background: linear-gradient(135deg, var(--background-darker), var(--background-card));
    border: 2px solid var(--primary-gold);
}

.contact-methods-privacy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.contact-method-privacy {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--background-darker);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.contact-method-privacy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.contact-method-privacy .method-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.contact-method-privacy .method-details h4 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: 600;
}

.contact-method-privacy .method-details p {
    margin: 0;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* Privacy Quick Links */
.privacy-quick-links {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--background-card);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-quick-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
}

.privacy-quick-links h3 {
    color: var(--text-white);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--background-darker);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
    text-decoration: none;
    color: var(--text-gray);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.quick-link-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
    color: var(--text-white);
}

.quick-link-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-yellow));
    color: var(--secondary-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* OAuth Callback Page - Modern Dark Theme */
.oauth-callback-section {
    background: var(--background-dark);
    padding: 8rem 0 5rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.oauth-callback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow), var(--primary-gold));
}

.oauth-status-card {
    background: var(--background-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.oauth-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
}

.oauth-status-card.success::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.oauth-status-card.error::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.oauth-header {
    margin-bottom: var(--space-2xl);
}

.oauth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--background-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    animation: pulse 2s infinite;
}

.oauth-status-card.success .oauth-icon {
    color: #10b981;
    border-color: #10b981;
    animation: none;
}

.oauth-status-card.error .oauth-icon {
    color: #ef4444;
    border-color: #ef4444;
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

#oauth-title {
    color: var(--text-white);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

#oauth-message {
    color: var(--text-muted);
    font-size: var(--text-lg);
    margin: 0;
}

/* Progress Bar */
.oauth-progress {
    margin: var(--space-2xl) 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--background-darker);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    border: 1px solid var(--border-dark);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-yellow));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: var(--radius-full);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step.completed .step-number {
    background: var(--primary-gold);
    color: var(--secondary-black);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--background-darker);
    color: var(--text-white);
    border: 2px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
}

.step.active .step-number {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.step-text {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

.step.active .step-text {
    color: var(--text-gray);
    font-weight: 500;
}

/* OAuth Details */
.oauth-details {
    margin: var(--space-2xl) 0;
    padding: var(--space-lg);
    background: var(--background-darker);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
}

.oauth-details h3 {
    color: var(--text-white);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.detail-grid {
    display: grid;
    gap: var(--space-md);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-dark);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
    font-size: var(--text-sm);
    font-weight: 500;
}

.detail-value {
    color: var(--text-white);
    font-size: var(--text-sm);
    font-weight: 600;
}

/* OAuth Actions */
.oauth-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

/* OAuth Error */
.oauth-error {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--background-darker);
    border-radius: var(--radius-xl);
    border: 2px solid #ef4444;
    margin-top: var(--space-lg);
}

.error-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.oauth-error h3 {
    color: #ef4444;
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.oauth-error p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: var(--text-base);
}

.error-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for OAuth Page */
@media (max-width: 768px) {
    .oauth-status-card {
        padding: var(--space-2xl);
        margin: 0 var(--space-md);
    }

    .progress-steps {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .step {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .oauth-actions,
    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .oauth-actions .btn-primary,
    .oauth-actions .btn-outline,
    .error-actions .btn-primary,
    .error-actions .btn-outline {
        width: 100%;
        max-width: 250px;
    }
}
