/* public/css/pet-chauffeur-stunning.css */

/* Core Theme overrides based on E-Class */
:root {
    --exec-car-bg: #f8f7f4;
    --exec-car-accent: #1a6b4a;
    --exec-car-text: #1a1a2e;
    --stunning-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bg-light-ivory {
    background-color: var(--exec-car-bg);
}

/* Stunning Hero */
.stunning-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('/images/pet-chauffeur/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden;
}

.stunning-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 45%, transparent 100%);
    z-index: 1;
}

.stunning-hero .container {
    position: relative;
    z-index: 2;
}

.stunning-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--exec-car-text);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

/* Stunning Floating Image Section */
.floating-img-block {
    position: relative;
    padding: 6rem 0;
}

.floating-image {
    border-radius: 2rem;
    box-shadow: var(--stunning-shadow);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.floating-image:hover {
    transform: rotate(0) scale(1.02);
}

.decorative-blob {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background: var(--exec-car-bg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: morphBlob 15s ease-in-out infinite alternate;
}

@keyframes morphBlob {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Stunning VIP Cards */
.stunning-vip-card {
    background: #fff;
    border-radius: 2rem;
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(26,107,74,0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stunning-vip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: var(--exec-car-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.stunning-vip-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--stunning-shadow);
}

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

.stunning-vip-icon {
    width: 90px; height: 90px;
    background: var(--exec-car-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
    color: var(--exec-car-accent);
    transition: all 0.5s ease;
}

.stunning-vip-card:hover .stunning-vip-icon {
    background: var(--exec-car-accent);
    color: #fff;
    transform: rotateY(360deg);
}

/* Sticky Journey Steps */
.step-stunning {
    background: #fff;
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.step-stunning:hover {
    transform: translateX(10px);
    border-color: rgba(26,107,74,0.2);
}

.step-number-bg {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 12rem;
    font-weight: 900;
    color: var(--exec-car-bg);
    line-height: 1;
    z-index: 0;
    transition: color 0.3s ease;
}

.step-stunning:hover .step-number-bg {
    color: rgba(26,107,74,0.05);
}

.step-stunning > * { position: relative; z-index: 1; }

.sticky-image-wrapper {
    position: sticky;
    top: 120px;
    height: calc(100vh - 240px);
    min-height: 600px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--stunning-shadow);
}

.sticky-image-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}

/* Fleet Showcase Masonry */
.stunning-fleet-item {
    background: #fff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.stunning-fleet-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--stunning-shadow);
}

.stunning-fleet-img {
    height: 250px;
    background: var(--exec-car-bg);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
}

.stunning-fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.stunning-fleet-item:hover .stunning-fleet-img img {
    transform: scale(1.1);
}

.stunning-fleet-content {
    padding: 2.5rem;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .stunning-hero {
        background-attachment: scroll; /* Disable parallax on mobile */
    }
    .stunning-hero-overlay {
        background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    }
    .sticky-image-wrapper {
        position: relative;
        top: 0;
        height: 400px;
        min-height: auto;
        margin-bottom: 2rem;
    }
    .step-number-bg {
        font-size: 8rem;
    }
}

/* ═══════════════════ BRAND INJECTIONS (MODERN, LIGHTWEIGHT) ═══════════════════ */
.bg-brand-soft {
    background: linear-gradient(135deg, #f8f7f4 0%, #eaf4f0 100%);
    position: relative;
    overflow: hidden;
}
.bg-brand-soft::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(26,107,74,0.06) 0%, transparent 70%);
    bottom: -300px; left: -300px;
    pointer-events: none;
}
.bg-brand-soft::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,107,74,0.04) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
}
