
/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 130vh;
    background: linear-gradient(180deg,
            rgba(30, 0, 0, 1) 0%,
            rgba(50, 20, 20, 1) 40%,
            rgba(60, 30, 30, 1) 100%
        );
    overflow: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 80px);
    z-index: 10;
}

.logo {
    position: absolute;
    top: 20px;
    left: 300px;
    width: 120px;
    height: auto;
    z-index: 100;
    margin: 0;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
    opacity: 0.65;
    transition: opacity 0.3s ease;  
}
.logo:hover {
    opacity: 1;
}

.content-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 150px;
}

.background-text {
    position: absolute;
    top: 150px;
    right: 200px;
    font-size: 8vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 20px;
    z-index: 1;
    text-align: center;
}

.text-content {
    position: relative;
    top: 120px;
    right: 80px;
    z-index: 2;
    padding-right: 150px;
}

.main-title {
    font-size: 4em;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    margin-top: 90px;
    font-size: 2em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    padding: 5px 30px;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    gap: 8px;  
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
}

.arrow-icon {
    font-size: 20px;
    display: inline-block;
    transform: rotate(180deg);
    transition: transform 0.3s ease, color 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: rotate(180deg) translateX(-5px);
    transform: translateX(5px);
    color: #000;
}

.car-image {
    position: absolute;
    bottom: 0;
    z-index: 50;
    top: 310px;
    right: 600px;
    width: 1200px;
    height: 600px;
    pointer-events: none;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 100%);
}

/* ====== HERO RESPONSIVE ====== */
@media (max-width: 900px) {

    .logo {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }

    .text-content {
        padding-right: 40px;
        padding-left: 40px; 
        padding-top: 10px;
        right: 0; 
    }

    .background-text {
        font-size: 10vw;
        text-align: center;
        top: 50px;
        right: 20px;
        left: 20px;
        z-index: -1;
    }

    .main-title {
        font-size: 3em;
        text-align: right; 
    }

    .subtitle {
        font-size: 1.2em;
        text-align: right;
        margin-top: 40px;
    }

    .cta-button {
        display: inline-flex;
        margin: 20px auto;
    }

    .car-image {
        width: 600px;
        height: 300px;
        right: 50%;
        /*transform: translateX(50%);*/
        top: auto;
        bottom: -100px; 
        object-position: bottom center;
    }

    .hero-section {
        min-height: 150vh;
    }
}

@media (max-width: 800px){
    .logo {
        position: absolute;
        top: 15px;
        left: -5%;
        transform: translateX(-50%);
        width: 80px;
    }
    .car-image {
        width: 100%;
        max-width: 400px;
        height: 200px;
        right: 50%;
       /* transform: translateX(50%);*/
        bottom: -400px;
        
    }

    .car-image img {
        object-position: center;
    }
}


@media (max-width: 600px) {
    .logo {
        position: absolute;
        top: 15px;
        right: -5%;
        transform: translateX(-50%);
        width: 30px;
    }
    
    .navbar {
        padding: 20px;
        width: calc(100% - 40px);
    }

    .text-content {
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 10px;
        text-align: center; 
    }

    .main-title {
        font-size: 2em; 
        line-height: 1.3;
    }

    .subtitle {
        font-size: 0.9em;
        margin-top: 30px;
        padding: 0 10px;
    }

    .cta-button {
        display: flex;
        justify-content: center;
        margin: 20px auto 0;
        padding: 8px 25px;
        font-size: 1em;
        width: fit-content; 
    }

    .car-image {
        width: 100%;
        max-width: 400px;
        height: 200px;
        right: 50%;
        /*transform: translateX(50%);*/
        bottom: -400px;
    }

    .car-image img {
        object-position: bottom center;
    }

    .background-text {
        font-size: 12vw;
        opacity: 0.3; 
    }

    .hero-section {
        min-height: 120vh;
    }
}

@media (max-width: 390px) {
    .logo{
        position: absolute;
        top: 15px;
        left: 95%;
        transform: translateX(-50%);
        width: 30px;
    }
    .main-title {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 0.85em;
    }

    .cta-button {
        font-size: 0.9em;
        padding: 6px 20px;
    }

    .car-image {
        height: 180px;
        bottom: -60px;
    }
}

/* ====== INCOME SECTION ====== */
.income-section {
    margin-top: -170px;
    background: #e0e0e0;
    background: radial-gradient(circle, rgba(224, 224, 224, 1) 0%, rgba(199, 199, 199, 1) 42%);
    color: #333;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    min-height: 600px;
    overflow: visible;
}

.side-strip {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    overflow: hidden;
    z-index: 1;
}

.side-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 50%;
}

.section-content {
    flex: 1;
    padding-right: 280px;
    padding-top: 140px;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 20;
}

.section-header h2 {
    color: #a33535;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: #444;
    font-size: 20px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    gap: 40px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-label {
    color: #a33535;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    white-space: nowrap;
    text-align: center;
}

.icon-bubble {
    width: 110px;
    height: 110px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(220, 220, 220, 0.85) 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2),
                0 0 25px rgba(255, 255, 255, 0.5) inset;
    color: #444;
    font-size: 45px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover .icon-bubble {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25),
                0 0 30px rgba(255,255,255,0.6) inset;
}

.connector-line {
    flex-grow: 1;
    height: 3px;
    background-color: #ccc;
    margin: 0 25px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.step-item:hover ~ .connector-line {
    background-color: #a33535;
}

/* ====== INCOME RESPONSIVE ====== */
@media (max-width: 768px) {
    .side-strip {
        display: none;
    }

    .section-content {
        padding-right: 0px;
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .connector-line {
        width: 3px;
        height: 50px;
        margin: 20px 0;
    }
}

/* ====== CAR SLIDER SECTION ====== */
.car-slider-section {
    width: 100%;
    background: linear-gradient(135deg, #d4d4d4 0%, #8a8080 50%, #6e6363 100%);
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.car-slider-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.slider-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.top-line {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 0 auto 20px auto;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.prev::before,
.next::before {
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.prev::before {
    content: "‹";
}

.next::before {
    content: "›";
}

.prev {
    right: 5%;
}

.next {
    left: 5%;
}

.slider-track {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 0;
}

.cars-title{
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
}

.subtitle-pt2 {
    font-size: 1.5em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.car-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.75) translateY(20px);
    position: relative;
}

.car-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car-card:hover::before {
    opacity: 1;
}

.car-card.active {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.car-card.active .car-image-wrapper {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 255, 255, 0.1);
}

.car-card.side {
    transform: scale(0.85) translateY(10px);
    opacity: 0.7;
}

.car-image-wrapper {
    width: 400px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.car-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.car-card.active .car-image-wrapper::after {
    animation: shine 3s infinite;
}

.car-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.car-card.active .car-image-wrapper img {
    transform: scale(1.05);
}

.slider-dots {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.slider-dots .dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-dots .dot:hover::before {
    opacity: 1;
}

.slider-dots .dot.active {
    background-color: #fff;
    border-color: #fff;
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* ====== CAR SLIDER RESPONSIVE ====== */
@media (max-width: 1200px) {
    .slider-track {
        gap: 40px;
    }

    .car-image-wrapper {
        width: 350px;
        height: 240px;
    }

    .prev {
        right: 3%;
    }

    .next {
        left: 3%;
    }
}

@media (max-width: 900px) {
    .car-slider-section {
        padding: 80px 0 100px;
    }

    .slider-track {
        gap: 20px;
        padding: 40px 60px; 
    }

    .car-image-wrapper {
        width: 320px;
        height: 220px;
        padding: 25px;
    }

    .nav-button {
        width: 50px;
        height: 50px;
    }

    .prev {
        right: 10px;
    }

    .next {
        left: 10px;
    }

    .car-card.side {
        display: none;
    }

    .car-card {
        opacity: 0;
        transform: scale(0.8);
    }

    .car-card.active {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .car-slider-section {
        padding: 60px 0 80px;
    }

    .slider-wrapper {
        padding: 0 15px;
    }

    .slider-track {
        gap: 0;
        padding: 20px 50px;
    }

    .car-image-wrapper {
        width: 100%;
        max-width: 300px;
        height: 200px;
        padding: 20px;
        margin: 0 auto;
    }

    .nav-button {
        width: 45px;
        height: 45px;
    }

    .prev::before,
    .next::before {
        font-size: 24px;
    }

    .prev {
        right: 5px;
    }

    .next {
        left: 5px;
    }

    .car-card {
        display: none;
    }

    .car-card.active {
        display: block;
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .car-card.side {
        display: none;
    }

    .top-line {
        width: 150px;
        height: 3px;
    }

    .subtitle-pt2 {
        font-size: 0.9em;
        padding: 0 20px;
    }

    .slider-dots {
        margin-top: 30px;
        gap: 8px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }

    .slider-dots .dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .car-image-wrapper {
        max-width: 260px;
        height: 180px;
        padding: 15px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }

    .prev::before,
    .next::before {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .car-image-wrapper {
        max-width: 260px;
        height: 180px;
        padding: 5px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }

    .prev::before,
    .next::before {
        font-size: 20px;
    }
}

/* ====== CONTACT SECTION MODIFY ====== */
.contact {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #606060 0%, #595959 50%, #525252 100%);
}


.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,.02) 60px, rgba(255,255,255,.02) 61px);
    pointer-events: none;
    z-index: 0;
}


.contact::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    align-items: center;
}

.contact-content {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
}

.contact-title {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

.contact-info a{
    text-decoration: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.contact-item-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
}

.contact-item-value {
    font-size: 18px;
    color: #ffffff;
    font-weight: 300;
    direction: ltr;
    text-align: right;
}

.map-container {
    width: 100%;
    max-width: 600px;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ====== END CONTACT SECTION MODIFY ====== */

/* ====== CONTACT RESPONSIVE ====== */

@media (max-width: 1024px) {
    .contact-content {
        max-width: 100%;
        padding: 50px 30px;
    }

    .contact-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .contact-grid {
        gap: 40px;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact {
        min-height: auto;
        padding: 40px 0;
    }

    .contact-content {
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        grid-column: 1;
        order: 1;
    }

    .map-container {
        grid-column: 1;
        order: 2;
        height: 350px;
    }

    .contact-item {
        padding: 15px 20px;
    }

    .contact-item-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 30px 15px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .contact-grid {
        gap: 25px;
    }

    .contact-item {
        padding: 12px 15px;
        gap: 12px;
    }

    .contact-item-icon {
        width: 40px;
        height: 40px;
    }

    .contact-item-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-item-label {
        font-size: 11px;
    }

    .contact-item-value {
        font-size: 15px;
    }

    .map-container {
        height: 300px;
        border-radius: 12px;
        border-width: 2px;
    }
}