body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Dark purple gradient background with enhanced effects */
.soft-page-bg {
    position: relative;
    background:
        radial-gradient(circle at 20% 10%, rgba(147, 51, 234, 0.25), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.20), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(168, 85, 247, 0.18), transparent 50%),
        radial-gradient(circle at 10% 50%, rgba(139, 92, 246, 0.15), transparent 40%),
        linear-gradient(180deg, #1a1f3a 0%, #0a0a15 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Add subtle animated glow effect */
.soft-page-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.1), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Ensure content stays above background effects */
nav, section, footer {
    position: relative;
    z-index: 1;
}

/* Improve text contrast on dark sections */
#contact h2, #enquiry h2 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

#contact h2 span {
    color: #d8b4fe;
}

/* Section Title Accent */
.section-title {
    font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
    font-weight: 800;
    color: #d8b4fe;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
}

.section-title span {
    color: #d8b4fe;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Pricing Cards */
.price {
    font-size: 28px;
    font-weight: bold;
    color: #10b981;
    transition: color 0.3s ease;
}

.car-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.car-img:hover {
    transform: scale(1.05);
}

.pricing-card {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    padding: 24px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(168, 85, 247, 0.3), 0 0 40px rgba(168, 85, 247, 0.15);
}

.card-title {
    font-weight: 600;
    font-size: 18px;
    color: #1f2937;
}

/* Navigation Enhancement */
nav {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Button Enhancement */
button, a[class*="btn"] {
    transition: all 0.3s ease;
}

button:hover, a[class*="btn"]:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* CTA Buttons */
.cta-btn {
    display: inline-block;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    will-change: transform, box-shadow;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.22);
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.cta-btn:focus-visible {
    outline: 3px solid var(--cta-ring, rgba(59,130,246,0.45));
    outline-offset: 3px;
}

.cta-blue { --cta-ring: rgba(59,130,246,0.45); }
.cta-green { --cta-ring: rgba(16,185,129,0.45); }
.cta-purple { --cta-ring: rgba(168,85,247,0.45); }

/* Section Spacing */
section {
    padding: 60px 0;
}

/* Big headings for sections */
.section-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a; /* slate-900 */
    line-height: 1.2;
    font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}

/* Gallery Responsiveness */
@media (max-width: 768px) {
    .car-img {
        max-width: 100%;
    }
    
    .price {
        font-size: 24px;
    }
}