:root {
    --luxury-blue-deep: #0F172A;
    --luxury-blue-mid: #1E293B;
    --luxury-accent-gradient: linear-gradient(135deg, #F2994A 0%, #E67E22 100%);
    --luxury-primary-gradient: linear-gradient(135deg, #2F80ED 0%, #1A365D 100%);
    --luxury-light-gradient: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    --luxury-glass: rgba(255, 255, 255, 0.85);
    --luxury-glass-border: rgba(255, 255, 255, 0.4);
    --luxury-glow: 0 0 20px rgba(47, 128, 237, 0.2);
    --luxury-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--luxury-blue-deep);
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* --- PREMIUM HEADER --- */

.topbar-rich {
    height: 42px;
    background: rgba(15, 23, 42, 0.03);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.header-rich {
    background: rgba(15, 23, 42, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 10px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: sticky;
    top: 15px;
    z-index: 1001;
    margin: 15px 20px;
    border-radius: 24px;
    width: calc(100% - 40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.header-rich.sticky {
    top: 10px;
    background: rgba(15, 23, 42, 0.98) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.nav-link-rich {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.nav-link-rich:hover {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link-rich::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #F2994A;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 10px;
}

.nav-link-rich:hover::after {
    width: 15px;
}

.btn-primary-rich {
    background: linear-gradient(135deg, #2F80ED 0%, #1E40AF 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 18px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(47, 128, 237, 0.2);
    border: none;
    transition: all 0.4s ease;
}

.btn-primary-rich:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(47, 128, 237, 0.3);
}

.btn-secondary-rich {
    background: #f8fafc;
    color: #1e293b !important;
    border: 1px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-rich:hover {
    background: white;
    transform: translateY(-1px);
}

/* Premium Video Hero Slider */
.hero-video-section {
    position: relative;
    height: 85vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video-bg.active {
    opacity: 1;
}

/* LCD Style Video Frame Enhancements */
.lcd-frame-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    perspective: 1200px;
}

.lcd-screen {
    position: relative;
    background: #000;
    border: 12px solid #334155;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(47, 128, 237, 0.25);
    aspect-ratio: 16/9;
    transform: rotateX(2deg);
    transition: transform 0.5s ease;
}

.lcd-frame-container:hover .lcd-screen {
    transform: rotateX(0deg) scale(1.02);
}

.lcd-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lcd-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 40%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
}

.lcd-bezel-reflection {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
    z-index: 1;
}

.lcd-stand {
    width: 220px;
    height: 12px;
    background: linear-gradient(to bottom, #475569, #1e293b);
    margin: -5px auto 0;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 2;
}

.hero-slider-container {
    position: relative;
    z-index: 3;
    height: 100%;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content-box {
    color: white;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-box {
    position: relative;
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-box img {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.hero-image-box:hover img {
    transform: translateY(-10px) rotate(1deg);
}

.floating-anim {
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 10px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-arrow:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }

.hero-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subheading {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Trust Cards */
.trust-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--luxury-shadow);
    border-color: rgba(47, 128, 237, 0.1);
}

.trust-card i {
    font-size: 2.5rem;
    background: var(--luxury-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

/* Service Cards Premium & Free */
.service-card-premium, .free-service-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.service-card-premium:hover, .free-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(47, 128, 237, 0.1);
}

.free-service-card {
    padding: 30px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.free-service-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--luxury-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.free-service-card:hover i {
    transform: scale(1.1);
}

/* Advanced Technology Section Redesign */
.tech-card-premium {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    position: relative;
    z-index: 1;
}

.tech-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--luxury-light-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    z-index: -1;
}

.tech-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(47, 128, 237, 0.15);
    border-color: rgba(47, 128, 237, 0.2);
}

.tech-card-premium:hover::before {
    opacity: 1;
}

.tech-card-premium i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-card-premium:hover i {
    transform: scale(1.2) rotate(5deg);
}

.tech-card-premium h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--luxury-blue-deep);
}

.tech-card-premium p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Testimonials Slider Enhancements */
.testimonial-card-premium {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.testimonial-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stars-rating {
    color: #F2C94C;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--luxury-blue-deep);
    margin-bottom: 5px;
}

.service-card-image {
    height: 220px;
    overflow: hidden;
}

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

.service-card-premium:hover .service-card-image img {
    transform: scale(1.1);
}

/* --- PREMIUM BACKGROUND EFFECTS --- */
.bg-premium-texture {
    position: relative;
    overflow: hidden;
}

.bg-premium-texture::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66 3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM37 17c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm40 40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM85 14c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM58 88c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM25 29c.828 0 1.5-.672 1.5-1.5S25.828 26 25 26s-1.5.672-1.5 1.5.672 1.5 1.5 1.5zm52 19c.828 0 1.5-.672 1.5-1.5S77.828 46 77 46s-1.5.672-1.5 1.5.672 1.5 1.5 1.5zm-5 28c.828 0 1.5-.672 1.5-1.5S72.828 73 72 73s-1.5.672-1.5 1.5.672 1.5 1.5 1.5zm-34 7c.828 0 1.5-.672 1.5-1.5S38.828 80 38 80s-1.5.672-1.5 1.5.672 1.5 1.5 1.5zm36-54c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM7 71c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm53 11c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM43 7c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z' fill='%232f80ed' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.section-rounded {
    border-radius: 60px;
    margin: 20px;
}

/* --- CAR JOURNEY ROADMAP --- */
.journey-container {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.roadmap-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
    transform: translateY(-50%);
    border-radius: 10px;
}

.roadmap-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--luxury-primary-gradient);
    transition: width 0.5s ease-out;
}

.car-icon-tracker {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: left 0.5s ease-out;
}

.car-icon-tracker i {
    font-size: 2.5rem;
    color: #2F80ED;
    filter: drop-shadow(0 0 10px rgba(47, 128, 237, 0.4));
}

.step-node {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    color: #94A3B8;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-node.active .step-circle {
    border-color: #2F80ED;
    color: #2F80ED;
    background: #f0f7ff;
    box-shadow: 0 0 20px rgba(47, 128, 237, 0.2);
    transform: scale(1.1);
}

.step-node.completed .step-circle {
    background: #2F80ED;
    border-color: #2F80ED;
    color: #FFFFFF;
}

/* Final CTA Pulse */
@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pulse-animation {
    animation: pulse-white 2s infinite;
}

/* Service Card Depth Enhancement */
.service-card-premium {
    position: relative;
    z-index: 1;
}

.service-card-premium::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.05) 100%);
    z-index: -1;
    pointer-events: none;
}

.service-card-premium .service-card-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-premium:hover .service-card-image::after {
    opacity: 1;
}

/* About Page Hero */
.about-hero {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    margin-bottom: 60px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

.breadcrumb-custom {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.breadcrumb-custom a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-custom a:hover {
    color: var(--luxury-accent);
}

/* Services Page Hero */
.services-hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 100%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Service Detail Block */
.service-detail-block {
    padding: 100px 0;
}

.service-detail-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    transition: transform 0.5s ease;
}

.service-detail-image-wrapper:hover {
    transform: scale(1.02);
}

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

.service-process-step {
    text-align: center;
    position: relative;
}

.service-process-step i {
    font-size: 2.5rem;
    color: #2F80ED;
    margin-bottom: 20px;
    display: block;
}

.service-process-step h6 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Gallery Styles */
.gallery-hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    border-radius: 0 0 60px 60px;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(47, 128, 237, 0.2);
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

@media (max-width: 991px) {
    .roadmap-line {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
        transform: translateX(-50%);
    }
    .car-icon-tracker {
        left: 50%;
        top: 0%;
    }
}

/* Comparison Table */
.comparison-container {
    background: #FFFFFF;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
}

.comparison-header {
    background: var(--luxury-blue-deep);
    color: white;
    padding: 20px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.btn-primary-rich {
    background: var(--luxury-accent-gradient);
    color: white !important;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.2);
    transition: all 0.4s ease;
}

.btn-primary-rich:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 126, 34, 0.3);
}

.btn-secondary-rich {
    background: rgba(47, 128, 237, 0.05);
    color: #2F80ED !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid rgba(47, 128, 237, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.btn-secondary-rich:hover {
    background: #2F80ED;
    color: white !important;
}

/* --- PREMIUM FOOTER --- */

.footer-rich {
    background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
    padding: 120px 0 0;
    color: #CBD5E1;
    position: relative;
    overflow: hidden;
}

.footer-rich::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--luxury-accent-gradient);
    box-shadow: 0 0 20px rgba(242, 153, 74, 0.4);
}

.footer-cta-strip {
    background: var(--luxury-primary-gradient);
    border-radius: 24px;
    padding: 60px 40px;
    margin-top: -180px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(31, 38, 135, 0.3);
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.footer-column h5 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--luxury-accent-gradient);
}

.footer-links-rich {
    list-style: none;
    padding: 0;
}

.footer-links-rich li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}

.footer-links-rich a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-rich a:hover {
    color: #F2994A;
    padding-left: 10px;
}

.footer-bottom-rich {
    background: #020617;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 80px;
    font-size: 0.9rem;
}

.rise-studio-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.rise-studio-link:hover {
    color: #F2994A;
    text-shadow: 0 0 10px rgba(242, 153, 74, 0.5);
}

/* Animations */
.slide-down-fade {
    animation: slideDownFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}


  .contact-highlight-section {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 20px 0;
}

.contact-badge {
  background: linear-gradient(45deg, #c9a063, #e6c27a);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 40px 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.contact-card h5 {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #6c757d;
  margin: 0;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 18px;
  background: rgba(201,160,99,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #c9a063;
}

.contact-card.featured {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
}

.contact-card.featured p,
.contact-card.featured a {
  color: rgba(255,255,255,0.85);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}
  .why-ori-cars-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 90px 0;
}

.why-badge {
  background: linear-gradient(45deg, #c9a063, #e6c27a);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

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

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(201,160,99,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #c9a063;
  flex-shrink: 0;
}

.why-point h5 {
  font-weight: 700;
  margin-bottom: 6px;
}
   .addon-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.premium-badge {
  background: linear-gradient(45deg, #c9a063, #e6c27a);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
}

.addon-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.addon-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.addon-card.horizontal img {
  /*width: 100%;*/
  min-height: 270px;
}

.addon-content {
  padding: 24px;
}

.addon-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.addon-content p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.addon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

.addon-cta-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 50px 30px;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.addon-cta-box p {
  color: rgba(255,255,255,0.75);
}

.service-highlight-section {
    margin-top: -80px; /* hero se overlap look */
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.highlight-box {
    background: linear-gradient(135deg, #ffffff, #f5f7fa);
    border-radius: 22px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.highlight-header {
    text-align: center;
    margin-bottom: 40px;
}

.highlight-header .badge {
    display: inline-block;
    background: #c9a063;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.highlight-header h2 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 10px;
}

.highlight-header p {
    color: #6c757d;
    max-width: 520px;
    margin: 0 auto;
}

.highlight-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

.service-item i {
    font-size: 22px;
    color: #c9a063;
}

.service-item span {
    font-weight: 600;
    font-size: 15px;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}



.inspection-trust-section {
    padding: 90px 0;
    background: #ffffff;
}

/* TRUST CARD */
.trust-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.trust-card i {
    font-size: 34px;
    color: #c9a063;
    margin-bottom: 12px;
    display: inline-block;
}

.trust-card h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.trust-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* LCD VIDEO FRAME (safe responsive) */
.lcd-frame-container {
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0,0,0,0.15);
}

.lcd-screen video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 991px) {
    .inspection-trust-section {
        padding: 70px 0;
    }

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

    .trust-card i {
        font-size: 32px;
    }
}