.elementor-492 .elementor-element.elementor-element-2175702{--display:flex;}.elementor-492 .elementor-element.elementor-element-2d93cb9{--display:flex;}.elementor-492 .elementor-element.elementor-element-66e70d8{margin:-171px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-492 .elementor-element.elementor-element-b7f195c{--display:flex;}.elementor-492 .elementor-element.elementor-element-3e73336{margin:-203px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-492 .elementor-element.elementor-element-7b1e3b7{--display:flex;}.elementor-492 .elementor-element.elementor-element-949c783{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -20px) 0px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-492 .elementor-element.elementor-element-66e70d8{margin:-43px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-492 .elementor-element.elementor-element-3e73336{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-6b61643 *//* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rose-gold: #b96f5b;
    --rose-gold-light: #e6a896;
    --dark-bg: #0f0f0f;
    --text-gray: #a0a0a0;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
}

/* Hero Section Main Container */
.hero-section {
   width: 100vw;
    height: 100vh;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #000000;
}

/* Background & Overlay */
.hero-background {
    position: fixed;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-cover: cover;
    filter: grayscale(20%) brightness(0.7);
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right, 
        rgba(15, 15, 15, 0.95) 15%, 
        rgba(15, 15, 15, 0.4) 100%
    );
}

/* Content Layout */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%; /* Marge interne pour le texte, mais le container fait 100% */
}

/* Tagline */
.hero-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-tagline .line {
    width: 50px;
    height: 1px;
    background-color: var(--rose-gold);
}

.hero-tagline .tag-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-weight: 700;
    color: var(--rose-gold-light);
}

/* Title Styling */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 30px;
}

.italic-gold {
    font-style: italic;
    color: var(--rose-gold-light);
}

/* Description */
.hero-description {
    max-width: 550px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 300;
    margin-bottom: 45px;
}

/* Actions / Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-primary {
    padding: 20px 40px;
    background-color: transparent;
    border: 1px solid var(--rose-gold);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--rose-gold);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    padding: 20px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--rose-gold-light);
    color: var(--rose-gold-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--rose-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 8%;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-66e70d8 *//* Section Container - Using your specific requirements */
.transport-features {
    width: 100vw;
    height: 100vh;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Layout Grid */
.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    padding: 0 5%;
    gap: 80px;
    align-items: center;
}

/* Left Side: Text */
.features-text-side {
    z-index: 2;
}

.section-tag {
    color: #b96f5b; /* Rose Gold */
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 50px;
}

.gold-text {
    font-style: italic;
    color: #e6a896;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.icon-box {
    min-width: 45px;
    height: 45px;
    border: 1px solid #b96f5b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b96f5b;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

.item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.item-content p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Right Side: Visual */
.features-image-side {
    position: relative;
    height: 70%;
    width: 100%;
}

.image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.8s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(185, 111, 91, 0.9);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
}

.experience-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.experience-badge .label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: 1fr;
        padding-top: 50px;
    }
    .features-image-side {
        display: none;
    }
}/* End custom CSS */