.venture-entry {
    position: relative;
    width: 92%;
    height: 80vh;
    min-height: 400px;
    background: url('/photos/ourcar-img.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* NEW: Aligns content to the left side */
.venture-left {
    justify-content: flex-start;
    padding-left: 8%; /* Spacing from the left edge */
}

.venture-veil {
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.venture-manifest {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
    text-align: left; /* Aligns text lines to the left */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Locks elements to the left edge */
}

.venture-manifest h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.venture-cap {
    text-transform: uppercase;
    font-size: 4.5rem;
}

.venture-accent {
    font-style: italic;
    color: #f7df1e; /* Yellow accent */
}

.venture-manifest p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 450px;
}

.venture-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-start; /* Ensures buttons start from the left */
}

/* Button Styles - Consistent with previous designs */
.v-btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
}

.v-btn-teal {
    background-color: #0d7a86; /* Matches Teal Button */
    color: #fff;
}

.v-btn-orange {
    background-color: #ff9f43; /* Matches Orange Button */
    color: #fff;
}


.car-grid-section {
    padding: 80px 5%;
    background-color: #f8f9fa; /* Light grey background for the whole section */
}

.car-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.car-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-card:hover {
    transform: translateY(-5px);
}

/* TOP INFO AREA */
.car-category {
    font-size: 12px;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.car-name {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* PRICE & BUTTON ROW */
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-bottom: 20px;
}

.from-text {
    font-size: 11px;
    color: #999;
    display: block;
}

.price-amount {
    font-size: 18px;
    color: #e74c3c; /* Red price color */
    margin-left: 5px;
}

.book-btn {
    background-color: #ffb400; /* Yellow button */
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 4px;
    transition: background 0.3s;
}

.book-btn:hover {
    background-color: #e5a100;
}

/* CAR IMAGE AREA */
.car-image-box {
    text-align: center;
    padding-top: 10px;
}

.car-image-box img {
    max-width: 100%;
    height: auto;
    /* Reflection effect seen in your image */
    -webkit-box-reflect: below 0px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.1));
}

/* Responsive Grid */
@media (max-width: 992px) {
    .car-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .car-container { grid-template-columns: 1fr; }
}