* {
    box-sizing: border-box;
}
:root {
    --primary-color: #fcfbfb;
    --secondary-color: rgb(3, 3, 3);
    --accent-color: #ff7700;
    --tertiary-color: #a2a3a5;
    --whatsapp-btn: #2bb75e;
    --footer-color: #2b2d2f;
}

.bg-orange {
    background: var(--accent-color);
}
body, main, header, nav, .hero-section, .hero-section_p {
    background-image: none !important;
    background: none !important;
}

.text-end {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-orange {
    text-decoration: none;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 16px;
}

.btn-transparent {
    background: none;
    border: none;
    /* background-color: #2b2d2f;
    width: 10px; */
}

main {
    max-width: 100%;

    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    main {
        background-attachment: scroll;
    }

    /* Map section */
    .map {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }

    .map-text ul li {
        padding-left: 30px;
        font-size: 14px;
    }

    .map-img img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    main {
        min-height: 100vh;
    }
}

nav {
    /* position: absolute;
    top: 0; */
    height: 60px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: relative;
    z-index: 1000;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 18px;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: var(--accent-color);
}
.hiliter {
    display: inline;
  
    color: #000;         
    font-weight: bold;  
    padding: 2px 5px;    
    border-radius: 3px;     
}

.hero-btns {
    display: flex;
  
    gap: 20px;
}

.hero-btns a {
    text-decoration: none;
        padding: 7px 25px;
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s ease;
    padding-left: 70px;
    padding-right: 70px;
        font-size: 15px;
            border-radius: 50rem;

}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.login-btn {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
}

.signup-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.signup-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    gap: 50px;
    min-height: calc(100vh - 100px);
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 40px 8%;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 35px 6%;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 5%;
        gap: 30px;
        min-height: auto;
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 25px 4%;
        gap: 25px;
        padding-top: 70px;
    }
}

.hero-text {
    width: 100%;
    height: 10%;
    flex: 1;
    color: var(--primary-color);
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    /* margin-top: -50px; */
}

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--tertiary-color);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hero-text p {
        font-size: 1.4rem;
    }
}

@media (max-width: 1024px) {
    .hero-text p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-text p {
        font-size: 1rem;
    }
}

.search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .search-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .card-header {
        margin-bottom: 25px;
    }

    .search-title {
        font-size: 20px;
    }

    .free-text {
        font-size: 12px;
        padding: 6px 16px;
    }

    .dropdown {
        padding: 12px;
        font-size: 14px;
    }

    .find-btn {
        padding: 15px;
        font-size: 16px;
    }

    .condition-section {
        padding: 15px;
    }

    .radio-option label {
        font-size: 14px;
    }

    .part-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.free-text {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.search-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.form-group.hidden {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.form-group.show {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    margin-bottom: 20px;
}
.dropdown {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    max-height: 150px; /* تقریباً 5-6 options */
    overflow-y: auto;  /* scroll show کرے گا جب زیادہ options ہوں */
}
.select2-results__options {
    max-height: 180px !important;  /* 5–6 items */
    overflow-y: auto !important;
}
.dropdown:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.1);
}

.dropdown:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}
#condition-group {
    display: block;
}
.condition-section {
  background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #e1e5e9;
    margin-top: -10px;
}

.condition-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 13px;
}

.radio-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px; 
    margin-top: 5px; 
}

.radio-option {
   display: flex;
    align-items: center;
    gap: 5px; 
}

.radio-option input[type="radio"] {
    accent-color: var(--accent-color);
    width: 18px;
    height: 18px;
}

.radio-option label {
    font-size: 16px;
    color: var(--secondary-color);
    cursor: pointer;
}

.parts-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    min-height: 30px;
}

.part-tag {
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideIn 0.3s ease;
}

.part-tag .remove-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: white;
    transition: 0.2s;
}

.part-tag .remove-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.find-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #ff9500);
    color: var(--primary-color);
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    /* margin-top: 10px; */
    font-family: 'Montserrat', sans-serif;
}

.find-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.4);
}

.find-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.spareParts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 30px;
}

.spareParts h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0px;
}

.popular-part-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
}

.part-card {
    width: 290px;
    /* height: 200px; */
    background-color: #f3f3f3;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.part-card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
    width: 100%;
    display: block;
}

.part-card p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .search-card {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 5%;
    }

    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .nav-menu ul li a {
        font-size: 24px;
        color: var(--primary-color);
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns a {
        padding: 12px 30px;
        font-size: 18px;
        text-align: center;
        min-width: 200px;
    }

    .hero-section {
        padding: 30px 5%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .search-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 15px 4%;
    }

    .nav-menu ul li a {
        font-size: 20px;
    }

    .hero-btns a {
        min-width: 180px;
        padding: 10px 25px;
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .search-card {
        padding: 25px 20px;
    }
}

.carMakes {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 10%;
    background: var(--primary-color);
}

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

.section-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    justify-items: center;
}

@media (max-width: 768px) {
    .carMakes {
        padding: 40px 5%;
    }

    .brands {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .section-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .carMakes {
        padding: 30px 4%;
    }

    .brands {
        grid-template-columns: repeat(2, 1fr); /* fixed 2 columns */
        gap: 5px;
    }

    .section-text h2 {
        font-size: 1.5rem;
    }

    .make {
        padding: 10px 10px;
    }

    .make img {
        width: 60px;
        height: 40px;
    }

    .make h4 {
        font-size: 0.9rem;
    }
}


.make {
    text-decoration: none;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.make:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.make img {
    width: 100px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.make h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-it-works-section {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
}

.how-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.how-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.how-text p {
    font-size: 1rem;
    line-height: 1.6;
    /* color: var(--accent-color); */
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.step {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    box-sizing: border-box;
}



.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-text p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 90%;
    }

    .how-text h2 {
        font-size: 1.6rem;
    }

    .how-text p {
        font-size: 0.95rem;
    }

    .step-text h3 {
        font-size: 1.1rem;
    }

    .step-text p {
        font-size: 0.95rem;
    }
}


.ad-cards {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 5%;
}

h2.section-title {
    text-align: center;
    margin: 30px 0 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.filters a {
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--tertiary-color);
    font-size: 0.9rem;
    transition: 0.3s;
}

.filters a:hover,
.filters a.active {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 2%; /* 10% bohut zyada tha */
}

@media (max-width: 768px) {
    .ad-cards {
        padding: 40px 5%;
    }

    .grid {
        padding: 0 5%;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .filters {
        gap: 10px;
        margin-bottom: 25px;
    }

    .filters a {
        padding: 5px 12px;
        font-size: 0.85rem;
    }

    .section-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ad-cards {
        padding: 30px 4%;
    }

    .grid {
        padding: 0 4%;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .filters {
        align-items: center;
        gap: 8px;
    }

    .filters a {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-width: 120px;
        text-align: center;
    }

    .section-text h2 {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 12px;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1rem;
    }

    .meta {
        font-size: 0.75rem;
    }

    .btn {
        padding: 6px;
        font-size: 0.8rem;
    }
}

/* .card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    
} */

.card:hover {
    transform: translateY(-6px);
}

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

.card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.meta {
    font-size: 0.8rem;
    color: var(--tertiary-color);
    line-height: 1.5;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-direction: column;
}

.btn {
    flex: 1;
    padding: 8px;
    text-align: center;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn.whatsapp {
    background: var(--whatsapp-btn);
    color: #fff;
}

.btn.call {
    background: var(--secondary-color);
    color: #fff;
}

.btn.call:hover {
    background-color: var(--accent-color);
}

.btn:hover {
    opacity: 0.85;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    gap: 8px;
}

@media (max-width: 768px) {
    .pagination {
        margin: 30px 0;
        gap: 6px;
    }

    .pagination button {
        padding: 6px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination {
        margin: 25px 0;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination button {
        padding: 5px 10px;
        font-size: 13px;
        margin: 2px;
    }
}

.pagination button {
    border: none;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid var(--tertiary-color);
    cursor: pointer;
    transition: 0.3s;
}

.pagination button.active,
.pagination button:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.locations-section {
    padding: 80px 5%;
    background: var(--gradient-bg);
    /* position: relative; */
    overflow: hidden;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* .locations-grid{
    display: flex;
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.location-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
 
    overflow: hidden;
}



.location-icon {
    font-size: 1.1rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.location-card:hover .location-icon {
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.location-text {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.location-card:hover .location-text {
    color: #ffffff;
}

 .location-card:nth-child(1),
.location-card:nth-child(6) {
    background: white;
    border-color: white;
} 

@media (max-width: 768px) {
    .locations-section {
        padding: 60px 4%;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }

    .location-card {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }

    .location-card {
        padding: 14px 16px;
        font-size: 0.85rem;
        gap: 8px;
    }
}

/* Accessibility improvements */
.location-card:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    .location-card,
    .location-card::before,
    .location-icon {
        transition: none;
    }
}

.faqs {
    max-width: 100%;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    border-left: 4px solid var(--accent);
    padding-left: 12px;
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    background-color: white;
    border: none;
    box-shadow: none;
    padding: 24px 28px;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #1a1a1a;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.accordion-item {
    border: none;
    border-radius: 8px !important;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

   
.accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.buyer-contact {
    background-color: var(--tertiary-color);
    opacity: 0.7;
}

.accordion-button:hover {
    background-color: #fafafa;
}

.accordion-body {
    padding: 0 28px 24px 28px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.support-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 20px 20px 20px;
    }
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    gap: 40px;
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .trust-points {
        justify-content: center;
        gap: 15px;
    }

    .cta-image {
        max-width: 250px;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 30px 20px;
        gap: 25px;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 16px;
    }

    .trust-points {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-image {
        max-width: 200px;
        min-height: 200px;
    }
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--tertiary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-btn {
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
}

.cta-btn:hover {
    background: #e86600;
    box-shadow: 0 6px 16px rgba(255, 119, 0, 0.4);
}

.trust-points {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--secondary-color);
    flex-wrap: wrap;
}

.trust-points span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-points i {
    background: rgba(255, 119, 0, 0.1);
    color: var(--accent-color);
    padding: 6px;
    border-radius: 50%;
    font-size: 0.9rem;
}

.cta-image {
    max-width: 300px;
    min-height: 300px;
    flex: 1;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
}

.cta-image img {
    width: 100%;
    border-radius: 12px;
}

/* Footer Styles */
.footer-section {
    background: var(--footer-color);
    color: white;
    padding: 60px 0 20px 0;
     margin-bottom: 0;
     padding-bottom: 0px !important;
    
}

.footer-logo {
    width: 200px;
}

.footer-logo img {
    width: 100%;
}

.footer-description {
    color: #adb5bd;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.contact-phone {
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-phone:hover {
    /* background: #d35400; */
    color: white;
    transform: translateY(-2px);
}

.contact-phone i {
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.pinterest {
    background: #bd081c;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.app-stores {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.app-store-btn {
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-2px);
}

.app-store-btn img {
    height: 50px;
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.copyright {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .heroo-title {
        font-size: 2.2rem;
    }

    .heroo-subtitle {
        font-size: 1.1rem;
    }

    .heroo-card {
        padding: 2rem;
        margin-top: 2rem;
    }

    .find-part-btn {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        font-size: 0.9rem;
    }

    .app-stores {
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-section {
        padding: 40px 0 20px 0;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .contact-phone {
        padding: 10px 20px;
        font-size: 14px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .heroo-content {
        padding: 40px 0;
    }

    .footer-section {
        padding: 30px 0 15px 0;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .contact-phone {
        padding: 8px 16px;
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .app-store-btn img {
        height: 40px;
    }
}


.buyer-contact {
    background-color: var(--primary-color);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
}

.action-btn {
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.3s;
}

.action-btn:hover {
    opacity: 0.85;
}

.btn-whatsapp {
    background-color: var(--whatsapp-btn);
    color: #fff;
}

.btn-call {
    background-color: var(--tertiary-color);
    color: #fff;
}

.btn-buy {
    background-color: var(--accent-color);
    color: #fff;
}

.spec-table {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.spec-table th {
    background: var(--footer-color);
    color: #fff;
    text-align: left;
    padding: 12px;
}

.spec-table td {
    padding: 12px;
    border-bottom: 1px solid #eaeaea;
}

.carousel-item img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 320px;
}

.shop-card {
    width: 350px;
    background: var(--primary-color);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
}

.header-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin-top: -50px;
    object-fit: cover;
    background: white;
}

.shop-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 10px 0 5px;
}

.shop-about {
    font-size: 0.9rem;
    color: var(--tertiary-color);
    padding: 0 15px 15px;
}

.contact-buttons {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
}

.btn {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn.whatsapp {
    background: var(--whatsapp-btn);
}

.btn.whatsapp:hover {
    background: #239b4c;
}

.btn.call {
    background: var(--accent-color);
}

.btn.call:hover {
    background: #e86700;
}

.signup-card {
    max-width: 500px;
    margin: 60px auto;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.signup-card h3 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--accent-color);
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid var(--tertiary-color);
    padding: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 119, 0, 0.25);
}

.btn-submit {
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #e86900;
}

.map {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 40px 80px;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

.map-text ul {
    font-size: 16px;
    font-weight: 500;
    list-style: none;
    padding-left: 0;
}

.map-text ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.map-text ul li:before {
    content: '⦿';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 20px;
    font-weight: bold;
}
