* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body, html {
    height: 100%;
    overflow-x: hidden;
}

.vin-lookup-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/images/bg-car.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    color: white;
    position: relative;
}

.section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.phone-container {
    width: 35%;
    max-width: 320px;
    position: relative;
    left: -20px;
    z-index: 2;
    transition: all 0.3s ease;
    filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.35));
}

.phone-image {
    width: 100%;
    height: auto;
    display: block;
}

.content-container {
    width: 60%;
    padding-left: 30px;
    z-index: 1;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

p.subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 400;
}

/* Updated input container to match image 1 */
.vin-input-container {
    background: white;
    border-radius: 30px;
    width: 100%;
    padding: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    max-width: 480px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.vin-input-container:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.vin-input-wrapper {
    flex-grow: 1;
    position: relative;
}

.vin-input {
    width: 100%;
    border: none;
    padding: 12px 45px 12px 20px;
    font-size: 1rem;
    outline: none;
    border-radius: 30px;
}

.vin-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #EEEEEE;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

.vin-button {
    background: #FF9900;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.vin-button:hover {
    background: #ff8800;
    transform: translateY(-1px);
}

.vin-button-icon {
    margin-left: 8px;
}

.data-info {
    margin-top: 25px;
}

.data-title {
    font-size: 1rem;
    margin-bottom: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Updated check options to match image 2 */
.check-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.check-button {
    background: white;
    border: none;
    border-radius: 30px;
    padding: 8px 16px;
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.check-button:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile design based on the image */
.logo-container {
    display: none;
}

.tab-navigation {
    display: none;
}

.mobile-no-vin {
    display: none;
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.3rem;
    }
    
    p.subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .vin-lookup-section {
        padding: 0px 20px;
        height: auto;
        min-height: 100vh;
    }
    
    .section-container {
        flex-direction: column-reverse;
    }
    
    .phone-container {
        width: 70%;
        max-width: 280px;
        margin-top: 40px;
        left: 0;
    }
    
    .content-container {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .vin-input-container {
        margin: 0 auto 30px;
    }
    
    .check-options {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body, html {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/images/bg-car.jpg');
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
    
    .vin-lookup-section {
        background: none;
        padding: 0px 15px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    
    .logo-container {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .logo {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .tab-navigation {
        display: flex;
        background: #2673FF;
        border-radius: 30px;
        padding: 5px;
        margin: 0 auto 20px;
        max-width: 320px;
    }
    
    .tab-btn {
        flex: 1;
        padding: 10px;
        text-align: center;
        color: white;
        font-weight: 500;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .tab-btn.active {
        background-color: white;
        color: #2673FF;
    }
    
    .content-container {
        padding: 0;
    }
    
    h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    p.subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .vin-input-container {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .vin-input {
        width: 100%;
        background: white;
        border-radius: 30px;
        padding: 14px 25px;
        margin-bottom: 12px;
        text-align: left;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    
    .vin-input-wrapper {
        position: relative;
        width: 100%;
        margin-bottom: 12px;
    }
    
    .vin-input-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: #EEEEEE;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #777;
    }
    
    .vin-button {
        width: 100%;
        background: #FF9900;
        justify-content: center;
        padding: 14px 0;
        font-size: 1rem;
        border-radius: 30px;
    }
    
    .mobile-no-vin {
        display: block;
        width: 100%;
        background: transparent;
        border: 1px solid white;
        color: white;
        border-radius: 30px;
        padding: 12px 0;
        margin-top: 10px;
        font-size: 0.9rem;
        cursor: pointer;
    }
    
    .check-options {
        justify-content: center;
        margin-top: 5px;
    }
    
    .check-button {
        background: white;
        color: black;
        border: none;
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 4px;
    }
    
    .data-title {
        font-size: 0.9rem;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    
    .section-container {
        /* padding-bottom: 20px; */
    }
    
    .phone-container {
        margin-top: 30px;
        background: white;
        border-radius: 25px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        padding: 0;
        width: 110%;
        max-width: none;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    
    .phone-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}



/* Pop Up form css */
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 30px auto;
    max-width: 500px;
    width: 90%;
    border-radius: 4px;
    position: relative;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper:after {
    content: '\25BC';
    font-size: 12px;
    position: absolute;
    right: 12px;
    top: 14px;
    color: #555;
    pointer-events: none;
}

.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    appearance: none;
    background-color: white;
}

.package-selection {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.package-selection h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.package-selection p {
    margin-bottom: 10px;
    font-size: 14px;
}

.package-selection ul {
    padding-left: 20px;
    margin: 0;
}

.package-selection li {
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
}

.terms-link {
    color: #0078ff;
    text-decoration: none;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cancel-btn {
    padding: 12px 25px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.payment-btn {
    padding: 12px 25px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.cancel-btn:hover {
    background-color: #222;
}

.payment-btn:hover {
    background-color: #1665cc;
}

.footer-logo {
    margin-bottom: 20px;
}



.site-header {
    padding-top: 10px;
    text-align: center;
    background: none;
}

.logo-container {
    display: block;
    margin: 0 auto;
}

.logo {
    max-width: 80px;
    height: auto;
}

@media (max-width: 480px) {
    .logo-container {
        display: block;
        text-align: center;
    }
    
    .logo {
        max-width: 80px;
        margin: 0 auto;
    }
}







body, html {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/images/bg-car.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.vin-lookup-section {
    background: none; /* Remove the duplicated background here */
    /* Keep all other existing styles for .vin-lookup-section */
}