/* Premium Sophisticated CSS for JC Mobile Detailing V2 */
/* Luxury automotive theme with sophisticated design elements */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0e1a;
    --primary-blue: #1a237e;
    --accent-gold: #ffd700;
    --accent-silver: #c0c0c0;
    --premium-red: #b71c1c;
    --text-light: #f5f5f5;
    --text-dark: #1a1a1a;
    --gradient-premium: linear-gradient(135deg, #0a0e1a 0%, #1a237e 50%, #283593 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    color: var(--text-light);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-light);
}

.call-btn {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent-gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-premium);
    z-index: 1;
}

.car-showcase {
    position: absolute;
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    opacity: 0.15;
    z-index: 2;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) brightness(1.1);
}

.hero-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 150px 0 100px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.hero-text {
    color: var(--text-light);
}

.hero-text h1 {
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.premium-features {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.premium-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.premium-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-section {
    margin-top: 40px;
}

.cta-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-premium);
    border: 3px solid transparent;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4);
    border-color: var(--accent-gold);
}

.cta-subtext {
    margin-top: 15px;
    opacity: 0.8;
    font-style: italic;
}

/* Owners Section */
.owners-section {
    display: flex;
    justify-content: center;
}

.owners-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-premium);
}

.owners-photo-v2 {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-soft);
}

.owners-info {
    color: var(--text-light);
}

.owners-info h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.owners-info p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credentials span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.credentials i {
    color: var(--accent-gold);
    margin-right: 8px;
}

/* Services Gallery */
.services-gallery {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
}

.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.service-premium {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.service-premium.full-width {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    align-self: stretch;
    min-height: 350px;
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-premium.full-width .service-image {
    height: 100%;
    min-height: 350px;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-premium:hover .showcase-img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.service-icon-large i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.service-content {
    padding: 40px 30px;
}

.service-premium.full-width .service-content {
    padding: 35px 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.service-content h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.service-features i {
    color: var(--accent-gold);
    margin-right: 10px;
    font-size: 0.9rem;
}

.premium-package {
    margin-top: 20px;
    margin-bottom: 0;
}

.package-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 0;
}

.feature-column h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-column ul {
    list-style: none;
}

.feature-column li {
    margin-bottom: 6px;
    color: #666;
    padding-left: 15px;
    position: relative;
}

.feature-column li:last-child {
    margin-bottom: 0;
}

.feature-column li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

/* Why Choose Us */
.why-choose {
    padding: 120px 0;
    background: var(--gradient-premium);
    color: var(--text-light);
}

.why-choose h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 80px;
}

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

.reason-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-soft);
}

.reason-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.reason-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.reason-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta {
    padding: 120px 0;
    background: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-text h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #555;
}

.contact-item i {
    color: var(--accent-gold);
    margin-right: 15px;
    width: 25px;
    font-size: 1.2rem;
}

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

.cta-ultimate {
    background: var(--gradient-premium);
    color: var(--text-light);
    padding: 30px 40px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-premium);
    border: 3px solid transparent;
    margin-bottom: 20px;
}

.cta-ultimate:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(26, 35, 126, 0.4);
    border-color: var(--accent-gold);
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.cta-details {
    text-align: left;
}

.cta-main {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cta-sub {
    display: block;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cta-guarantee {
    color: var(--accent-gold);
    font-weight: 500;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.footer-brand h3 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-contact p {
    opacity: 0.8;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 30px;
    margin-top: 30px;
}

/* Floating Car Elements */
.floating-cars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.car-float-1, .car-float-2, .car-float-3 {
    position: absolute;
    color: rgba(255, 215, 0, 0.05);
    font-size: 4rem;
    animation: float 20s infinite ease-in-out;
}

.car-float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.car-float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.car-float-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(1deg); }
    50% { transform: translate(-15px, 15px) rotate(-1deg); }
    75% { transform: translate(25px, 10px) rotate(0.5deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-premium.full-width {
        grid-template-columns: 1fr;
        margin: 0;
    }
    
    .service-premium.full-width .service-image {
        height: 100%;
        min-height: 300px;
    }
    
    .service-premium.full-width .service-content {
        padding: 30px 30px 20px;
        height: 100%;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .premium-features {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .owners-photo-v2 {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 30px 20px;
    }
    
    .cta-ultimate {
        flex-direction: column;
        gap: 15px;
        padding: 25px 30px;
    }
    
    .cta-details {
        text-align: center;
    }
}

/* Smooth animations */
html {
    scroll-behavior: smooth;
}

/* Image loading animation */
.showcase-img, .owners-photo-v2 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for premium feel */
.service-premium, .reason-card, .owners-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium gradient animations */
.highlight {
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}