/* About Us Page - Light Green Theme */

/* Hero Banner Section */
.wo-aboutbannerwrap {
    position: relative;
    background: linear-gradient(135deg, var(--green-50, #ecfdf5) 0%, var(--white, #ffffff) 100%);
    padding: 120px 0 100px;
    overflow: hidden;
}

.wo-aboutbannerwrap::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.wo-aboutbannerbg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.wo-aboutbannerbg svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.wo-aboutbannerbg .path1 {
    fill: var(--green-100, #d1fae5);
    opacity: 0.4;
}

.wo-aboutbannerbg .path2 {
    fill: var(--primary-green, #10b981);
    opacity: 0.15;
}

.wo-aboutbannerwrap .container {
    position: relative;
    z-index: 2;
}

/* About Banner */
.wo-aboutbanner {
    padding: 20px 0;
}

.wo-aboutbanner__title {
    margin-bottom: 36px;
}

.wo-aboutbanner__title h2 {
    font-size: 64px;
    font-weight: 900;
    color: var(--gray-900, #111827);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1.5px;
}

.wo-aboutbanner__title h2 em {
    color: var(--primary-green, #10b981);
    font-style: normal;
    position: relative;
    display: inline-block;
}

.wo-aboutbanner__title h2 em::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green, #10b981), var(--green-600, #059669));
    border-radius: 3px;
}

.wo-aboutbanner__description {
    margin-top: 32px;
}

.wo-aboutbanner__description p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--gray-700, #374151);
    margin-bottom: 24px;
    font-weight: 500;
}

/* About Banner Image */
.wo-aboutbanner-img {
    margin: 0;
    position: relative;
}

.wo-aboutbanner-img::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-100, #d1fae5), var(--green-200, #a7f3d0));
    border-radius: 24px;
    z-index: -1;
}

.wo-aboutbanner-img img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.25);
    border: 6px solid var(--white, #ffffff);
    transition: transform 0.5s ease;
    animation: floatImage 6s ease-in-out infinite;
}

.wo-aboutbanner-img:hover img {
    transform: scale(1.02);
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, -30px) scale(1.1);
    }
}

/* Main Section */
.wo-main {
    background: var(--white, #ffffff);
}

.wo-main-section {
    padding: 100px 0;
    background: var(--white, #ffffff);
    position: relative;
}

.wo-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--green-200, #a7f3d0) 50%,
            transparent 100%);
}

/* Section Header */
.wo-sectionhead {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.wo-sectionhead::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green, #10b981), var(--green-600, #059669));
    border-radius: 2px;
}

.wo-sectionhead__title h2 {
    font-size: 52px;
    font-weight: 900;
    color: var(--gray-900, #111827);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.wo-sectionhead__title h2 em {
    color: var(--primary-green, #10b981);
    font-style: normal;
    position: relative;
}

/* Different Posts Wrapper */
.wo-differentpost-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}

/* Different Post Card */
.wo-differentpost {
    background: var(--white, #ffffff);
    border-radius: 24px;
    padding: 52px 36px;
    text-align: center;
    border: 2px solid var(--gray-200, #e5e7eb);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wo-differentpost::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green, #10b981), var(--green-600, #059669));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.wo-differentpost::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.wo-differentpost:hover::before {
    transform: scaleX(1);
}

.wo-differentpost:hover::after {
    width: 400px;
    height: 400px;
}

.wo-differentpost:hover {
    border-color: var(--primary-green, #10b981);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2);
    transform: translateY(-12px);
    background: linear-gradient(135deg, var(--white, #ffffff) 0%, var(--green-50, #ecfdf5) 100%);
}

.wo-differentpost img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 32px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 6px 16px rgba(16, 185, 129, 0.25));
    position: relative;
    z-index: 1;
}

.wo-differentpost:hover img {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 10px 24px rgba(16, 185, 129, 0.4));
}

.wo-differentpost h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900, #111827);
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.wo-differentpost:hover h3 {
    color: var(--primary-green, #10b981);
}

.wo-differentpost p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600, #4b5563);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .wo-aboutbanner__title h2 {
        font-size: 56px;
    }

    .wo-sectionhead__title h2 {
        font-size: 46px;
    }

    .wo-differentpost {
        padding: 48px 32px;
    }
}

@media (max-width: 991px) {
    .wo-aboutbannerwrap {
        padding: 100px 0 80px;
    }

    .wo-aboutbanner__title h2 {
        font-size: 48px;
    }

    .wo-aboutbanner__description p {
        font-size: 18px;
    }

    .wo-aboutbanner-img {
        margin-top: 50px;
    }

    .wo-aboutbanner-img::before {
        top: -15px;
        right: -15px;
    }

    .wo-main-section {
        padding: 80px 0;
    }

    .wo-sectionhead {
        margin-bottom: 60px;
    }

    .wo-sectionhead__title h2 {
        font-size: 42px;
    }

    .wo-differentpost {
        padding: 44px 30px;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .wo-aboutbannerwrap {
        padding: 80px 0 60px;
    }

    .wo-aboutbanner {
        padding: 10px 0;
    }

    .wo-aboutbanner__title {
        margin-bottom: 28px;
    }

    .wo-aboutbanner__title h2 {
        font-size: 42px;
    }

    .wo-aboutbanner__title h2 em::after {
        height: 4px;
        bottom: -8px;
    }

    .wo-aboutbanner__description p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .wo-aboutbanner-img {
        margin-top: 40px;
    }

    .wo-aboutbanner-img::before {
        top: -12px;
        right: -12px;
    }

    .wo-main-section {
        padding: 70px 0;
    }

    .wo-sectionhead {
        margin-bottom: 50px;
    }

    .wo-sectionhead::after {
        bottom: -25px;
        width: 60px;
        height: 3px;
    }

    .wo-sectionhead__title h2 {
        font-size: 36px;
    }

    .wo-differentpost {
        padding: 40px 28px;
        margin-bottom: 20px;
    }

    .wo-differentpost img {
        width: 80px;
        height: 80px;
        margin-bottom: 28px;
    }

    .wo-differentpost h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .wo-differentpost p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .wo-aboutbannerwrap {
        padding: 60px 0 40px;
    }

    .wo-aboutbannerwrap::before {
        width: 400px;
        height: 400px;
    }

    .wo-aboutbanner__title h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .wo-aboutbanner__description p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .wo-aboutbanner-img {
        margin-top: 36px;
    }

    .wo-aboutbanner-img::before {
        top: -10px;
        right: -10px;
        border-radius: 20px;
    }

    .wo-aboutbanner-img img {
        border-radius: 20px;
        border-width: 4px;
    }

    .wo-main-section {
        padding: 60px 0;
    }

    .wo-sectionhead {
        margin-bottom: 45px;
    }

    .wo-sectionhead::after {
        bottom: -22px;
        width: 50px;
    }

    .wo-sectionhead__title h2 {
        font-size: 32px;
    }

    .wo-differentpost {
        padding: 36px 24px;
        margin-bottom: 18px;
        border-radius: 20px;
    }

    .wo-differentpost img {
        width: 70px;
        height: 70px;
        margin-bottom: 24px;
    }

    .wo-differentpost h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .wo-differentpost p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wo-differentpost {
    animation: fadeInUp 0.6s ease-out backwards;
}

.wo-differentpost:nth-child(1) {
    animation-delay: 0.1s;
}

.wo-differentpost:nth-child(2) {
    animation-delay: 0.2s;
}

.wo-differentpost:nth-child(3) {
    animation-delay: 0.3s;
}

/* Title Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wo-aboutbanner__title {
    animation: slideInLeft 0.8s ease-out;
}

.wo-aboutbanner__description {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Contact Us Page - Light Green Theme */

/* Hero Banner Section */
.wo-innerbannertwo-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green, #10b981) 0%, var(--green-600, #059669) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.wo-innerbannertwo-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.wo-innerbannertwo-wrap::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.wo-innerbannertwo-wrap .container {
    position: relative;
    z-index: 2;
}

/* Particles Background */
.wo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

/* Banner Content */
.wo-innerbannertwo {
    padding: 20px 0;
}

.wo-innerbannertwo__title h4 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white, #ffffff);
    line-height: 1.3;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.wo-innerbannertwo__title span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 16px;
    line-height: 1.6;
}

.wo-innerbannertwo__description {
    margin-top: 32px;
}

.wo-innerbannertwo__description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wo-innerbannertwo__description ul li {
    font-size: 16px;
    color: var(--white, #ffffff);
    padding: 12px 0 12px 36px;
    position: relative;
    font-weight: 500;
}

.wo-innerbannertwo__description ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Banner Image */
.wo-innerbannertwo-img {
    margin: 0;
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

.wo-innerbannertwo-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Main Section */
.wo-main {
    background: var(--white, #ffffff);
    overflow: hidden;
}

.wo-main-section {
    padding: 80px 0;
}

/* Contact Banner */
.wo-contactbanner {
    margin-bottom: 60px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.wo-contactbanner figure {
    margin: 0;
    position: relative;
    height: 400px;
}

.wo-contactbanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wo-contactcontent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.wo-contactcontent__title h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--white, #ffffff);
    line-height: 1.3;
    margin: 0;
    text-align: center;
    letter-spacing: -1px;
}

.wo-contactcontent__title h2 span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.95;
}

.wo-contactcontent__title h2 em {
    color: var(--white, #ffffff);
    font-style: normal;
    position: relative;
    display: inline-block;
}

.wo-contactcontent__title h2 em::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

/* Contact Form Wrap */
.wo-contactformwrap {
    background: var(--white, #ffffff);
    border-radius: 20px;
    padding: 48px;
    border: 2px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.wo-replytitle h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900, #111827);
    margin: 0 0 28px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Form Styling */
.wo-themeform fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.wo-themeform .form-group {
    margin-bottom: 24px;
}

.wo-themeform .form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200, #e5e7eb);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-900, #111827);
    background: var(--gray-50, #f9fafb);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.wo-themeform .form-control:focus {
    outline: none;
    border-color: var(--primary-green, #10b981);
    background: var(--white, #ffffff);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.wo-themeform .form-control::placeholder {
    color: var(--gray-400, #9ca3af);
}

.wo-themeform textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Error Messages */
small[class$="_error"] {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

/* Success/Error Alert */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
}

.alert-success {
    background: var(--green-50, #ecfdf5);
    color: var(--green-700, #047857);
    border: 1px solid var(--green-200, #a7f3d0);
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Submit Button */
.wo-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-green, #10b981);
    border: none;
    border-radius: 12px;
    color: var(--white, #ffffff);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.wo-btn:hover {
    background: var(--green-600, #059669);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Our Availability */
.wo-ouravailability {
    background: linear-gradient(135deg, var(--green-50, #ecfdf5) 0%, var(--white, #ffffff) 100%);
    border-radius: 20px;
    padding: 48px 40px;
    border: 2px solid var(--green-100, #d1fae5);
    height: 100%;
}

.wo-ouravailability__title h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900, #111827);
    margin: 0 0 36px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.wo-ouravailability__info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wo-ouravailability__info li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-200, #e5e7eb);
}

.wo-ouravailability__info li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wo-contactimg {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: var(--primary-green, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.wo-ouravailability__info li:hover .wo-contactimg {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.wo-contactimg i {
    font-size: 24px;
    color: var(--white, #ffffff);
}

.wo-contactinfo {
    flex: 1;
}

.wo-contactinfo span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-600, #4b5563);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.wo-contactinfo p,
.wo-contactinfo address {
    font-size: 18px;
    color: var(--gray-900, #111827);
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    font-style: normal;
}

.wo-contactinfo a {
    color: var(--gray-900, #111827);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wo-contactinfo a:hover {
    color: var(--primary-green, #10b981);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .wo-innerbannertwo__title h4 {
        font-size: 42px;
    }

    .wo-contactcontent__title h2 {
        font-size: 38px;
    }

    .wo-contactformwrap {
        padding: 40px;
    }

    .wo-ouravailability {
        padding: 40px 36px;
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .wo-innerbannertwo-wrap {
        padding: 80px 0;
    }

    .wo-innerbannertwo__title h4 {
        font-size: 38px;
    }

    .wo-innerbannertwo-img {
        margin-top: 40px;
    }

    .wo-main-section {
        padding: 60px 0;
    }

    .wo-contactbanner figure {
        height: 350px;
    }

    .wo-contactcontent__title h2 {
        font-size: 34px;
    }

    .wo-contactformwrap {
        padding: 36px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .wo-innerbannertwo-wrap {
        padding: 60px 0;
    }

    .wo-innerbannertwo__title h4 {
        font-size: 32px;
    }

    .wo-innerbannertwo__title span {
        font-size: 16px;
    }

    .wo-innerbannertwo__description ul li {
        font-size: 15px;
        padding: 10px 0 10px 32px;
    }

    .wo-innerbannertwo-img {
        margin-top: 36px;
    }

    .wo-main-section {
        padding: 50px 0;
    }

    .wo-contactbanner {
        margin-bottom: 50px;
    }

    .wo-contactbanner figure {
        height: 300px;
    }

    .wo-contactcontent {
        padding: 30px;
    }

    .wo-contactcontent__title h2 {
        font-size: 28px;
    }

    .wo-contactcontent__title h2 span {
        font-size: 16px;
    }

    .wo-contactformwrap {
        padding: 32px;
    }

    .wo-replytitle h3 {
        font-size: 24px;
    }

    .wo-ouravailability {
        padding: 36px 32px;
    }

    .wo-ouravailability__title h3 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .wo-ouravailability__info li {
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .wo-contactimg {
        width: 56px;
        height: 56px;
    }

    .wo-contactimg i {
        font-size: 22px;
    }

    .wo-contactinfo p,
    .wo-contactinfo address {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .wo-innerbannertwo-wrap {
        padding: 50px 0;
    }

    .wo-innerbannertwo__title h4 {
        font-size: 28px;
    }

    .wo-innerbannertwo__title span {
        font-size: 15px;
    }

    .wo-innerbannertwo__description ul li {
        font-size: 14px;
    }

    .wo-contactbanner figure {
        height: 250px;
    }

    .wo-contactcontent {
        padding: 24px;
    }

    .wo-contactcontent__title h2 {
        font-size: 24px;
    }

    .wo-contactcontent__title h2 span {
        font-size: 14px;
    }

    .wo-contactformwrap {
        padding: 28px 24px;
    }

    .wo-replytitle h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .wo-themeform .form-group {
        margin-bottom: 20px;
    }

    .wo-themeform .form-control {
        padding: 14px 18px;
        font-size: 14px;
    }

    .wo-ouravailability {
        padding: 32px 28px;
    }

    .wo-ouravailability__title h3 {
        font-size: 22px;
    }

    .wo-ouravailability__info li {
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .wo-contactimg {
        width: 52px;
        height: 52px;
    }

    .wo-contactimg i {
        font-size: 20px;
    }

    .wo-contactinfo span {
        font-size: 13px;
    }

    .wo-contactinfo p,
    .wo-contactinfo address {
        font-size: 15px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wo-contactformwrap,
.wo-ouravailability {
    animation: fadeInUp 0.6s ease-out;
}

.wo-ouravailability {
    animation-delay: 0.2s;
    animation-fill-mode: backwards;
}


/* Ads Listing Page - Light Green Theme - Unique Classes */

/* Main Section */
.bh-ads-main {
    background: var(--gray-50, #f9fafb);
    padding: 60px 0;
}

.bh-ads-main-section {
    padding: 0;
}

/* Two Columns Layout */
.bh-ads-twocolumns {
    display: flex;
    gap: 32px;
    width: 100%;
}

/* Sidebar */
.bh-ads-sidebar {
    background: var(--white, #ffffff);
    border-radius: 20px;
    padding: 32px;
    border: 2px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.bh-ads-sidebar::-webkit-scrollbar {
    width: 5px;
}

.bh-ads-sidebar::-webkit-scrollbar-track {
    background: var(--gray-100, #f3f4f6);
    border-radius: 10px;
}

.bh-ads-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-green, #10b981);
    border-radius: 10px;
}

/* Category Filter Header */
.bh-category-filter {
    background: linear-gradient(135deg, var(--primary-green, #10b981), var(--green-600, #059669));
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.bh-category-filter h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white, #ffffff);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.bh-category-filter span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Widget */
.bh-filter-widget {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--gray-200, #e5e7eb);
}

.bh-filter-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bh-widget-title {
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.bh-widget-title h2 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900, #111827);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bh-widget-title h2::after {
    content: '▼';
    font-size: 12px;
    color: var(--primary-green, #10b981);
    transition: transform 0.3s ease;
}

.bh-widget-title[aria-expanded="false"] h2::after {
    transform: rotate(-90deg);
}

/* Category Labels */
.bh-category-lable {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
}

.bh-category-lable a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50, #f9fafb);
    border: 2px solid var(--gray-100, #f3f4f6);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bh-category-lable a:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    transform: translateX(5px);
}

.bh-category-lable .bh-cat-green {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800, #1f2937);
}

.bh-category-lable img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Form Controls */
.bh-widget-content label,
.bh-widget-content lable {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700, #374151);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bh-widget-content .form-control,
.bh-widget-content select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200, #e5e7eb);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900, #111827);
    background: var(--white, #ffffff);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.bh-widget-content .form-control:focus,
.bh-widget-content select:focus {
    outline: none;
    border-color: var(--primary-green, #10b981);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Buttons */
.bh-btn-outline-primary {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-green, #10b981);
    border-radius: 10px;
    color: var(--primary-green, #10b981);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-btn-outline-primary:hover {
    background: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.bh-btn-primary {
    padding: 12px 24px;
    background: var(--primary-green, #10b981);
    border: none;
    border-radius: 10px;
    color: var(--white, #ffffff);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.bh-btn-primary:hover {
    background: var(--green-600, #059669);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Ads List */
.bh-ads-list {
    width: 100%;
}

/* Ad Item */
.bh-ad-item {
    background: var(--white, #ffffff);
    border-radius: 16px;
    border: 2px solid var(--gray-200, #e5e7eb);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bh-ad-item:hover {
    border-color: var(--primary-green, #10b981);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
}

.bh-ad-link {
    display: flex;
    gap: 20px;
    padding: 16px;
    text-decoration: none;
    position: relative;
}

/* Ad Image */
.bh-ad-image {
    flex: 0 0 200px;
    width: 200px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-100, #f3f4f6);
}

.bh-ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bh-ad-item:hover .bh-ad-image img {
    transform: scale(1.08);
}

/* Ad Details */
.bh-ad-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bh-ad-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900, #111827);
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bh-ad-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bh-ad-specs span {
    font-size: 13px;
    color: var(--gray-600, #4b5563);
    font-weight: 500;
    padding: 4px 12px;
    background: var(--gray-100, #f3f4f6);
    border-radius: 6px;
}

.bh-ad-location {
    font-size: 14px;
    color: var(--gray-600, #4b5563);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bh-ad-location::before {
    content: '📍';
    font-size: 14px;
}

.bh-ad-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.bh-ad-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-green, #10b981);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bh-negotiable-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-700, #047857);
    background: var(--green-50, #ecfdf5);
    padding: 4px 10px;
    border-radius: 6px;
}

.bh-ad-badges {
    display: flex;
    gap: 8px;
}

.bh-member-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--white, #ffffff);
    background: var(--primary-green, #10b981);
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ad Meta */
.bh-ad-meta {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.bh-ad-time {
    font-size: 13px;
    color: var(--gray-500, #6b7280);
    font-weight: 500;
    background: var(--white, #ffffff);
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bh-ad-favorite {
    width: 36px;
    height: 36px;
    background: var(--white, #ffffff);
    border: 2px solid var(--gray-200, #e5e7eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-400, #9ca3af);
}

.bh-ad-favorite:hover {
    background: var(--primary-green, #10b981);
    border-color: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
    transform: scale(1.1);
}

/* Contact Row */
.bh-contact-row {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-top: 2px solid var(--gray-100, #f3f4f6);
}

.bh-btn-contact {
    flex: 1;
    padding: 12px 20px;
    background: var(--white, #ffffff);
    border: 2px solid var(--gray-300, #d1d5db);
    border-radius: 10px;
    color: var(--gray-700, #374151);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-btn-contact .bh-contact-text-visible {
    display: none;
}

.bh-btn-contact.active .bh-contact-text-hidden {
    display: none;
}

.bh-btn-contact.active .bh-contact-text-visible {
    display: block;
}

.bh-btn-contact.active {
    background: var(--primary-green, #10b981);
    border-color: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
}

.bh-btn-contact:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    color: var(--primary-green, #10b981);
}

.bh-btn-chat {
    flex: 1;
    padding: 12px 20px;
    background: #25D366;
    border: none;
    border-radius: 10px;
    color: var(--white, #ffffff);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-btn-chat:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    color: var(--white, #ffffff);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-item .page-link {
    padding: 10px 16px;
    border: 2px solid var(--gray-200, #e5e7eb);
    border-radius: 10px;
    color: var(--gray-700, #374151);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background: var(--primary-green, #10b981);
    border-color: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
}

.page-item .page-link:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    color: var(--primary-green, #10b981);
}

/* No Ads Found */
.col-12.text-center {
    padding: 60px 20px;
}

.col-12.text-center i {
    font-size: 64px;
    color: var(--gray-400, #9ca3af);
    margin-bottom: 16px;
}

.col-12.text-center p {
    font-size: 18px;
    color: var(--gray-600, #4b5563);
    font-weight: 600;
}

/* Sale Vehicle Section */
.wo-salevehicle {
    background: linear-gradient(135deg, var(--primary-green, #10b981), var(--green-600, #059669));
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.wo-salevehicle::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.wo-salevehicle__img {
    flex: 0 0 250px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.wo-salevehicle__img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.wo-salevehicle__content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.wo-salevehicle h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--white, #ffffff);
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.wo-salevehicle ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.wo-salevehicle ul li {
    font-size: 16px;
    color: var(--white, #ffffff);
    padding: 8px 0 8px 28px;
    position: relative;
    font-weight: 500;
}

.wo-salevehicle ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.wo-salevehicle .wo-btn {
    padding: 16px 40px;
    background: var(--white, #ffffff);
    color: var(--primary-green, #10b981);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.wo-salevehicle .wo-btn:hover {
    background: var(--green-50, #ecfdf5);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .bh-ads-twocolumns {
        flex-direction: column;
    }

    .bh-ads-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 32px;
    }

    .bh-ad-image {
        flex: 0 0 180px;
        width: 180px;
        height: 140px;
    }

    .bh-ad-price {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .bh-ads-main {
        padding: 40px 0;
    }

    .bh-ads-sidebar {
        padding: 28px;
    }

    .bh-ad-link {
        flex-direction: row;
        gap: 16px;
    }

    .bh-ad-image {
        flex: 0 0 160px;
        width: 160px;
        height: 140px;
    }

    .bh-ad-title {
        font-size: 17px;
    }

    .bh-ad-price {
        font-size: 19px;
    }

    .bh-ad-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .bh-ad-meta {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 16px;
        border-top: 2px solid var(--gray-100, #f3f4f6);
    }

    .bh-contact-row {
        flex-direction: row;
    }

    .wo-salevehicle {
        flex-direction: column;
        padding: 48px 40px;
        text-align: center;
    }

    .wo-salevehicle__img {
        flex: 0 0 auto;
    }

    .wo-salevehicle h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .bh-ads-main {
        padding: 30px 0;
    }

    .bh-ads-sidebar {
        padding: 24px;
        border-radius: 16px;
    }

    .bh-category-filter {
        padding: 20px;
        border-radius: 14px;
        margin-bottom: 24px;
    }

    .bh-category-filter h2 {
        font-size: 20px;
    }

    .bh-category-filter span {
        font-size: 13px;
    }

    .bh-filter-widget {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .bh-widget-title h2 {
        font-size: 17px;
    }

    .bh-category-lable a {
        padding: 10px 14px;
    }

    .bh-category-lable .bh-cat-green {
        font-size: 14px;
    }

    .bh-category-lable img {
        width: 24px;
        height: 24px;
    }

    .bh-widget-content .form-control,
    .bh-widget-content select {
        padding: 11px 14px;
        font-size: 13px;
    }

    .bh-btn-outline-primary,
    .bh-btn-primary {
        padding: 11px 20px;
        font-size: 13px;
        width: 100%;
    }

    .bh-ad-item {
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .bh-ad-link {
        padding: 14px;
        flex-direction: column;
        gap: 0;
    }

    .bh-ad-image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
        border-radius: 10px;
        margin-bottom: 14px;
    }

    .bh-ad-details {
        gap: 8px;
    }

    .bh-ad-title {
        font-size: 16px;
        -webkit-line-clamp: 2;
    }

    .bh-ad-specs span {
        font-size: 12px;
        padding: 3px 10px;
    }

    .bh-ad-location {
        font-size: 13px;
    }

    .bh-ad-footer {
        margin-top: 8px;
    }

    .bh-ad-price {
        font-size: 20px;
    }

    .bh-negotiable-tag {
        font-size: 11px;
        padding: 3px 8px;
    }

    .bh-member-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .bh-ad-meta {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 14px;
        border-top: 2px solid var(--gray-100, #f3f4f6);
    }

    .bh-ad-time {
        font-size: 12px;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }

    .bh-ad-favorite {
        width: 32px;
        height: 32px;
    }

    .bh-contact-row {
        padding: 12px 14px;
    }

    .bh-btn-contact,
    .bh-btn-chat {
        padding: 11px 16px;
        font-size: 13px;
    }

    .wo-salevehicle {
        padding: 40px 28px;
        border-radius: 20px;
        margin: 50px 0;
    }

    .wo-salevehicle h2 {
        font-size: 28px;
    }

    .wo-salevehicle ul li {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .bh-ads-main {
        padding: 20px 0;
    }

    .bh-ads-sidebar {
        padding: 20px;
        border-radius: 14px;
    }

    .bh-category-filter {
        padding: 18px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .bh-category-filter h2 {
        font-size: 18px;
    }

    .bh-category-filter span {
        font-size: 12px;
    }

    .bh-filter-widget {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .bh-widget-title h2 {
        font-size: 16px;
    }

    .bh-category-lable a {
        padding: 9px 12px;
    }

    .bh-category-lable .bh-cat-green {
        font-size: 13px;
        gap: 10px;
    }

    .bh-category-lable img {
        width: 22px;
        height: 22px;
    }

    .bh-widget-content label,
    .bh-widget-content lable {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .bh-widget-content .form-control,
    .bh-widget-content select {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 8px;
        margin-bottom: 14px;
    }

    .bh-btn-outline-primary,
    .bh-btn-primary {
        padding: 10px 18px;
        font-size: 12px;
        border-radius: 8px;
        width: 100%;
    }

    .bh-ad-item {
        margin-bottom: 14px;
        border-radius: 12px;
    }

    .bh-ad-link {
        padding: 12px;
    }

    .bh-ad-image {
        height: 180px;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .bh-ad-details {
        gap: 7px;
    }

    .bh-ad-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .bh-ad-specs {
        gap: 8px;
    }

    .bh-ad-specs span {
        font-size: 11px;
        padding: 3px 8px;
        border-radius: 5px;
    }

    .bh-ad-location {
        font-size: 12px;
    }

    .bh-ad-location::before {
        font-size: 12px;
    }

    .bh-ad-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 6px;
    }

    .bh-ad-price {
        font-size: 18px;
        flex-wrap: wrap;
    }

    .bh-negotiable-tag {
        font-size: 10px;
        padding: 3px 7px;
    }

    .bh-member-badge {
        font-size: 9px;
        padding: 4px 9px;
    }

    .bh-ad-meta {
        padding: 10px 12px;
    }

    .bh-ad-time {
        font-size: 11px;
    }

    .bh-ad-favorite {
        width: 30px;
        height: 30px;
    }

    .bh-ad-favorite svg {
        width: 16px;
        height: 16px;
    }

    .bh-contact-row {
        padding: 10px 12px;
        gap: 10px;
        flex-direction: column;
    }

    .bh-btn-contact,
    .bh-btn-chat {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 8px;
    }

    .bh-btn-contact svg,
    .bh-btn-chat svg {
        width: 14px;
        height: 14px;
    }

    .pagination {
        gap: 6px;
        margin-top: 30px;
    }

    .page-item .page-link {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .wo-salevehicle {
        padding: 32px 20px;
        border-radius: 18px;
        margin: 40px 0;
        gap: 28px;
    }

    .wo-salevehicle h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .wo-salevehicle ul {
        margin-bottom: 24px;
    }

    .wo-salevehicle ul li {
        font-size: 14px;
        padding: 6px 0 6px 24px;
    }

    .wo-salevehicle ul li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
        top: 6px;
    }

    .wo-salevehicle__img {
        flex: 0 0 180px;
    }

    .wo-salevehicle .wo-btn {
        padding: 14px 32px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 400px) {
    .bh-ads-main {
        padding: 15px 0;
    }

    .bh-ad-image {
        height: 160px;
    }

    .bh-ad-title {
        font-size: 14px;
    }

    .bh-ad-price {
        font-size: 16px;
    }

    .bh-contact-row {
        gap: 8px;
    }

    .bh-btn-contact,
    .bh-btn-chat {
        padding: 9px 12px;
        font-size: 11px;
    }

    .wo-salevehicle {
        padding: 28px 16px;
    }

    .wo-salevehicle h2 {
        font-size: 22px;
    }

    .wo-salevehicle__img {
        flex: 0 0 160px;
    }
}

/* Category Ads Listing Page - Light Green Theme - Unique Classes */

/* Main Section */
.bh-category-main {
    background: var(--gray-50, #f9fafb);
    padding: 60px 0;
    overflow: hidden;
}

.bh-category-main-section {
    padding: 0;
}

/* Two Columns Layout */
.bh-category-twocolumns {
    display: flex;
    gap: 32px;
    width: 100%;
}

/* Sidebar */
.bh-category-sidebar {
    background: var(--white, #ffffff);
    border-radius: 20px;
    padding: 32px;
    border: 2px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.bh-category-sidebar::-webkit-scrollbar {
    width: 5px;
}

.bh-category-sidebar::-webkit-scrollbar-track {
    background: var(--gray-100, #f3f4f6);
    border-radius: 10px;
}

.bh-category-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-green, #10b981);
    border-radius: 10px;
}

/* Category Filter Header */
.bh-cat-filter-header {
    background: linear-gradient(135deg, var(--primary-green, #10b981), var(--green-600, #059669));
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.bh-cat-filter-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white, #ffffff);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.bh-cat-filter-header span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Widget */
.bh-cat-widget {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--gray-200, #e5e7eb);
}

.bh-cat-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bh-cat-widget-title {
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.bh-cat-widget-title h2 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900, #111827);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bh-cat-widget-title h2::after {
    content: '▼';
    font-size: 12px;
    color: var(--primary-green, #10b981);
    transition: transform 0.3s ease;
}

.bh-cat-widget-title[aria-expanded="false"] h2::after {
    transform: rotate(-90deg);
}

/* Category Labels */
.bh-cat-label {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
}

.bh-cat-label a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50, #f9fafb);
    border: 2px solid var(--gray-100, #f3f4f6);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bh-cat-label a:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    transform: translateX(5px);
}

.bh-cat-label .bh-cat-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800, #1f2937);
}

.bh-cat-label img {
    width: 28px;
    height: 28px;
    object-fit: contain;

}

.bh-cat-label i {
    font-size: 20px;
    color: var(--primary-green, #10b981);
}

/* Form Controls */
.bh-cat-widget-content label,
.bh-cat-widget-content lable {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700, #374151);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bh-cat-widget-content .form-control,
.bh-cat-widget-content select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200, #e5e7eb);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900, #111827);
    background: var(--white, #ffffff);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.bh-cat-widget-content .form-control:focus,
.bh-cat-widget-content select:focus {
    outline: none;
    border-color: var(--primary-green, #10b981);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Buttons */
.bh-cat-btn-clear {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-green, #10b981);
    border-radius: 10px;
    color: var(--primary-green, #10b981);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.bh-cat-btn-clear:hover {
    background: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.bh-cat-btn-apply {
    padding: 12px 24px;
    background: var(--primary-green, #10b981);
    border: none;
    border-radius: 10px;
    color: var(--white, #ffffff);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    width: 100%;
}

.bh-cat-btn-apply:hover {
    background: var(--green-600, #059669);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Vehicles List */
.bh-cat-vehicles-list {
    width: 100%;
}

/* Vehicle Card */
.bh-cat-vehicle-card {
    background: var(--white, #ffffff);
    border-radius: 16px;
    border: 2px solid var(--gray-200, #e5e7eb);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    gap: 20px;
    padding: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bh-cat-vehicle-card:hover {
    border-color: var(--primary-green, #10b981);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
}

/* Vehicle Image */
.bh-cat-vehicle-img {
    flex: 0 0 200px;
    width: 200px;
    height: 160px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--gray-100, #f3f4f6);
    margin: 0;
    transition: transform 0.5s ease;
}

.bh-cat-vehicle-card:hover .bh-cat-vehicle-img {
    transform: scale(1.05);
}

/* Vehicle Info */
.bh-cat-vehicle-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bh-cat-vehicle-title {
    margin-bottom: 8px;
}

.bh-cat-vehicle-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900, #111827);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.bh-cat-vehicle-title h3 a {
    color: var(--gray-900, #111827);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bh-cat-vehicle-title h3 a:hover {
    color: var(--primary-green, #10b981);
}

.bh-cat-vehicle-title address {
    font-size: 14px;
    color: var(--gray-600, #4b5563);
    font-weight: 500;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.bh-cat-vehicle-title address i {
    color: var(--primary-green, #10b981);
    font-size: 16px;
}

/* Vehicle Specs List */
.bh-cat-vehicle-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.bh-cat-vehicle-specs li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bh-cat-vehicle-specs li span {
    font-size: 12px;
    color: var(--gray-500, #6b7280);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bh-cat-vehicle-specs li em {
    font-size: 15px;
    color: var(--gray-900, #111827);
    font-weight: 700;
    font-style: normal;
    background: var(--gray-100, #f3f4f6);
    padding: 6px 12px;
    border-radius: 6px;
}

/* Amenities */
.bh-cat-amenities {
    margin-top: 8px;
}

.bh-cat-amenities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bh-cat-amenities li {
    font-size: 13px;
    color: var(--gray-700, #374151);
    font-weight: 500;
    padding: 6px 12px;
    background: var(--gray-100, #f3f4f6);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bh-cat-amenities li i,
.bh-cat-amenities li svg {
    color: var(--primary-green, #10b981);
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Contact Info */
.bh-cat-contact-info {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px 0;
}

.bh-cat-price-box {
    text-align: right;
}

.bh-cat-price-box h4 {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-green, #10b981);
    margin: 0 0 4px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.bh-cat-price-box h4 sup {
    font-size: 14px;
    font-weight: 700;
}

.bh-cat-price-box h4 em {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600, #4b5563);
    font-style: normal;
}

.bh-cat-price-box h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-700, #047857);
    background: var(--green-50, #ecfdf5);
    padding: 4px 10px;
    border-radius: 6px;
    margin: 0 0 8px 0;
    display: inline-block;
}

.bh-cat-price-box>span {
    font-size: 12px;
    color: var(--gray-500, #6b7280);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

/* Contact Number */
.bh-cat-contact-num {
    display: inline-block;
    padding: 12px 20px;
    background: var(--white, #ffffff);
    border: 2px solid var(--gray-300, #d1d5db);
    border-radius: 10px;
    color: var(--gray-700, #374151);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.bh-cat-contact-num:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    color: var(--primary-green, #10b981);
}

.bh-cat-contact-num i {
    margin-right: 6px;
}

.bh-cat-hide-num {
    display: inline;
}

.bh-cat-show-num {
    display: none;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.bh-cat-contact-num:hover .bh-cat-hide-num {
    display: none;
}

.bh-cat-contact-num:hover .bh-cat-show-num {
    display: flex;
}

.bh-cat-show-num a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-green, #10b981);
    border-radius: 50%;
    color: var(--white, #ffffff);
    text-decoration: none;
    transition: all 0.3s ease;
}

.bh-cat-show-num a:hover {
    background: var(--green-600, #059669);
    transform: scale(1.1);
}

.bh-cat-show-num a.bh-whatsapp {
    background: #25D366;
}

.bh-cat-show-num a.bh-whatsapp:hover {
    background: #20BA5A;
}

.bh-cat-show-num p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900, #111827);
}

/* CTA Section */
.bh-cat-cta-section {
    background: linear-gradient(135deg, var(--primary-green, #10b981), var(--green-600, #059669));
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.bh-cat-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.bh-cat-cta-img {
    flex: 0 0 250px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.bh-cat-cta-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.bh-cat-cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.bh-cat-cta-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--white, #ffffff);
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.bh-cat-cta-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.bh-cat-cta-content ul li {
    font-size: 16px;
    color: var(--white, #ffffff);
    padding: 8px 0 8px 28px;
    position: relative;
    font-weight: 500;
}

.bh-cat-cta-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.bh-cat-cta-btn {
    padding: 16px 40px;
    background: var(--white, #ffffff);
    color: var(--primary-green, #10b981);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bh-cat-cta-btn:hover {
    background: var(--green-50, #ecfdf5);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-green, #10b981);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-item .page-link {
    padding: 10px 16px;
    border: 2px solid var(--gray-200, #e5e7eb);
    border-radius: 10px;
    color: var(--gray-700, #374151);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background: var(--primary-green, #10b981);
    border-color: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
}

.page-item .page-link:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    color: var(--primary-green, #10b981);
}

/* No Ads Found */
.bh-cat-no-ads {
    padding: 60px 20px;
    text-align: center;
}

.bh-cat-no-ads i {
    font-size: 64px;
    color: var(--gray-400, #9ca3af);
    margin-bottom: 16px;
}

.bh-cat-no-ads p {
    font-size: 18px;
    color: var(--gray-600, #4b5563);
    font-weight: 600;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .bh-category-twocolumns {
        flex-direction: column;
    }

    .bh-category-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 32px;
    }

    .bh-cat-vehicle-img {
        flex: 0 0 180px;
        width: 180px;
        height: 140px;
    }

    .bh-cat-price-box h4 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .bh-category-main {
        padding: 40px 0;
    }

    .bh-category-sidebar {
        padding: 28px;
    }

    .bh-cat-vehicle-card {
        flex-direction: row;
        gap: 16px;
    }

    .bh-cat-vehicle-img {
        flex: 0 0 160px;
        width: 160px;
        height: 140px;
    }

    .bh-cat-vehicle-title h3 {
        font-size: 17px;
    }

    .bh-cat-price-box h4 {
        font-size: 20px;
    }

    .bh-cat-contact-info {
        align-items: flex-start;
    }

    .bh-cat-cta-section {
        flex-direction: column;
        padding: 48px 40px;
        text-align: center;
    }

    .bh-cat-cta-img {
        flex: 0 0 auto;
    }

    .bh-cat-cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .bh-category-main {
        padding: 30px 0;
    }

    .bh-category-sidebar {
        padding: 24px;
        border-radius: 16px;
    }

    .bh-cat-filter-header {
        padding: 20px;
        border-radius: 14px;
        margin-bottom: 24px;
    }

    .bh-cat-filter-header h2 {
        font-size: 20px;
    }

    .bh-cat-filter-header span {
        font-size: 13px;
    }

    .bh-cat-widget {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .bh-cat-widget-title h2 {
        font-size: 17px;
    }

    .bh-cat-label a {
        padding: 10px 14px;
    }

    .bh-cat-label .bh-cat-text {
        font-size: 14px;
    }

    .bh-cat-label img {
        width: 24px;
        height: 24px;
    }

    .bh-cat-widget-content .form-control,
    .bh-cat-widget-content select {
        padding: 11px 14px;
        font-size: 13px;
    }

    .bh-cat-btn-clear,
    .bh-cat-btn-apply {
        padding: 11px 20px;
        font-size: 13px;
    }

    .bh-cat-vehicle-card {
        margin-bottom: 16px;
        border-radius: 14px;
        padding: 14px;
        flex-direction: column;
    }

    .bh-cat-vehicle-img {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
        border-radius: 10px;
    }

    .bh-cat-vehicle-info {
        gap: 10px;
    }

    .bh-cat-vehicle-title h3 {
        font-size: 16px;
    }

    .bh-cat-vehicle-title address {
        font-size: 13px;
    }

    .bh-cat-vehicle-specs {
        gap: 12px;
    }

    .bh-cat-vehicle-specs li em {
        font-size: 14px;
        padding: 5px 10px;
    }

    .bh-cat-amenities li {
        font-size: 12px;
        padding: 5px 10px;
    }

    .bh-cat-contact-info {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 12px;
        border-top: 2px solid var(--gray-100, #f3f4f6);
    }

    .bh-cat-price-box {
        text-align: left;
    }

    .bh-cat-price-box h4 {
        font-size: 20px;
    }

    .bh-cat-contact-num {
        padding: 11px 16px;
        font-size: 13px;
    }

    .bh-cat-cta-section {
        padding: 40px 28px;
        border-radius: 20px;
        margin: 50px 0;
    }

    .bh-cat-cta-content h2 {
        font-size: 28px;
    }

    .bh-cat-cta-content ul li {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .bh-category-main {
        padding: 20px 0;
    }

    .bh-category-sidebar {
        padding: 20px;
        border-radius: 14px;
    }

    .bh-cat-filter-header {
        padding: 18px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .bh-cat-filter-header h2 {
        font-size: 18px;
    }

    .bh-cat-filter-header span {
        font-size: 12px;
    }

    .bh-cat-widget {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .bh-cat-widget-title h2 {
        font-size: 16px;
    }

    .bh-cat-label a {
        padding: 9px 12px;
    }

    .bh-cat-label .bh-cat-text {
        font-size: 13px;
        gap: 10px;
    }

    .bh-cat-label img {
        width: 22px;
        height: 22px;
    }

    .bh-cat-widget-content label,
    .bh-cat-widget-content lable {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .bh-cat-widget-content .form-control,
    .bh-cat-widget-content select {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 8px;
        margin-bottom: 14px;
    }

    .bh-cat-btn-clear,
    .bh-cat-btn-apply {
        padding: 10px 18px;
        font-size: 12px;
        border-radius: 8px;
    }

    .bh-cat-vehicle-card {
        margin-bottom: 14px;
        border-radius: 12px;
        padding: 12px;
    }

    .bh-cat-vehicle-img {
        height: 180px;
        border-radius: 8px;
    }

    .bh-cat-vehicle-info {
        gap: 8px;
    }

    .bh-cat-vehicle-title h3 {
        font-size: 15px;
        line-height: 1.3;
    }

    .bh-cat-vehicle-title address {
        font-size: 12px;
    }

    .bh-cat-vehicle-specs {
        gap: 10px;
    }

    .bh-cat-vehicle-specs li span {
        font-size: 11px;
    }

    .bh-cat-vehicle-specs li em {
        font-size: 13px;
        padding: 4px 8px;
        border-radius: 5px;
    }

    .bh-cat-amenities {
        margin-top: 6px;
    }

    .bh-cat-amenities li {
        font-size: 11px;
        padding: 4px 8px;
    }

    .bh-cat-contact-info {
        padding-top: 10px;
    }

    .bh-cat-price-box h4 {
        font-size: 18px;
    }

    .bh-cat-price-box h5 {
        font-size: 11px;
        padding: 3px 8px;
    }

    .bh-cat-price-box>span {
        font-size: 11px;
    }

    .bh-cat-contact-num {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 8px;
    }

    .bh-cat-show-num a {
        width: 32px;
        height: 32px;
    }

    .bh-cat-show-num p {
        font-size: 13px;
    }

    .pagination {
        gap: 6px;
        margin-top: 30px;
    }

    .page-item .page-link {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .bh-cat-cta-section {
        padding: 32px 20px;
        border-radius: 18px;
        margin: 40px 0;
        gap: 28px;
    }

    .bh-cat-cta-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .bh-cat-cta-content ul {
        margin-bottom: 24px;
    }

    .bh-cat-cta-content ul li {
        font-size: 14px;
        padding: 6px 0 6px 24px;
    }

    .bh-cat-cta-content ul li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
        top: 6px;
    }

    .bh-cat-cta-img {
        flex: 0 0 180px;
    }

    .bh-cat-cta-btn {
        padding: 14px 32px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 400px) {
    .bh-category-main {
        padding: 15px 0;
    }

    .bh-cat-vehicle-img {
        height: 160px;
    }

    .bh-cat-vehicle-title h3 {
        font-size: 14px;
    }

    .bh-cat-price-box h4 {
        font-size: 16px;
    }

    .bh-cat-contact-num {
        padding: 9px 12px;
        font-size: 11px;
    }

    .bh-cat-cta-section {
        padding: 28px 16px;
    }

    .bh-cat-cta-content h2 {
        font-size: 22px;
    }

    .bh-cat-cta-img {
        flex: 0 0 160px;
    }
}

/* Property Detail Page - Light Green Theme - Unique Classes */

/* Main Section */
.bh-detail-main {
    background: var(--gray-50, #f9fafb);
    padding: 40px 0 60px;
}

.bh-detail-main-section {
    padding: 0;
}

.bh-detail-twocolumns {
    width: 100%;
}

/* Header */
.bh-detail-header {
    background: var(--white, #ffffff);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 24px;
    border: 2px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bh-detail-header-title h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--gray-900, #111827);
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.bh-detail-header-title address {
    font-size: 15px;
    color: var(--gray-600, #4b5563);
    font-weight: 500;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.bh-detail-header-title address i {
    color: var(--primary-green, #10b981);
    font-size: 18px;
}

/* Image Gallery - Original Collage Style */
.bh-detail-gallery {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bh-detail-gallery .row {
    margin: 0;
}

.bh-detail-gallery-main {
    position: relative;
    padding: 0;
}

.bh-detail-gallery-main>div {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--gray-100, #f3f4f6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-detail-gallery-main>div:hover {
    filter: brightness(0.95);
}

.bh-detail-gallery-grid {
    padding: 0;
}

.bh-detail-gallery-grid .row {
    margin: 0;
    height: 100%;
}

.bh-detail-gallery-item {
    padding: 0;
    height: 300px;
}

.bh-detail-gallery-item>div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--gray-100, #f3f4f6);
    border-left: 3px solid var(--white, #ffffff);
    border-bottom: 3px solid var(--white, #ffffff);
    transition: all 0.3s ease;
    cursor: pointer;
}

.bh-detail-gallery-item:hover>div {
    filter: brightness(0.95);
    transform: scale(1.02);
}

.bh-detail-gallery-item:last-child {
    position: relative;
}

.bh-detail-gallery-item:nth-child(1),
.bh-detail-gallery-item:nth-child(2) {
    border-bottom: 3px solid var(--white, #ffffff);
}

.bh-detail-gallery-item:nth-child(1)>div,
.bh-detail-gallery-item:nth-child(3)>div {
    border-left: 3px solid var(--white, #ffffff);
}

.bh-detail-gallery-item:nth-child(2)>div,
.bh-detail-gallery-item:nth-child(4)>div {
    border-left: 3px solid var(--white, #ffffff);
}

/* Show All Photos Button */
.bh-detail-show-photos {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.bh-detail-show-photos-mobile {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
}

.bh-detail-btn-photos {
    padding: 12px 24px;
    background: var(--white, #ffffff);
    border: 2px solid var(--primary-green, #10b981);
    border-radius: 10px;
    color: var(--primary-green, #10b981);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bh-detail-btn-photos:hover {
    background: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.bh-detail-btn-photos i {
    font-size: 16px;
}

/* Modal */
.bh-detail-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-green, #10b981), var(--green-600, #059669));
    border-bottom: none;
    padding: 24px 32px;
    border-radius: 16px 16px 0 0;
}

.bh-detail-modal .modal-header h5 {
    color: var(--white, #ffffff);
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.bh-detail-modal .modal-header .close {
    color: var(--white, #ffffff);
    opacity: 1;
    text-shadow: none;
    font-size: 32px;
    font-weight: 300;
}

.bh-detail-modal .modal-content {
    border: none;
    border-radius: 16px;
}

.bh-detail-modal .modal-body {
    padding: 32px;
}

.bh-detail-modal-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.bh-detail-modal-image {
    flex: 0 0 calc(25% - 12px);
}

.bh-detail-modal-image a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.bh-detail-modal-image .image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--gray-100, #f3f4f6);
    transition: transform 0.3s ease;
}

.bh-detail-modal-image a:hover .image {
    transform: scale(1.1);
}

/* Two Column Layout - Custom (No Bootstrap) */
.bh-detail-layout {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.bh-detail-left-col {
    flex: 1;
    min-width: 0;
}

.bh-detail-right-col {
    flex: 0 0 400px;
    width: 400px;
}

/* Content Section */
.bh-detail-content {
    margin-top: 40px;
}

.bh-detail-description {
    background: var(--white, #ffffff);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    border: 2px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.bh-detail-section-title {
    margin-bottom: 28px;
}

.bh-detail-section-title h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900, #111827);
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--primary-green, #10b981);
    display: inline-block;
}

.bh-detail-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--gray-700, #374151);
    font-weight: 500;
}

/* Amenities */
.bh-detail-amenities {
    background: var(--white, #ffffff);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    border: 2px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.bh-detail-amenity-item {
    margin-bottom: 20px;
}

.bh-detail-amenity-item span {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--gray-800, #1f2937);
    font-weight: 600;
    padding: 16px 20px;
    background: var(--gray-50, #f9fafb);
    border-radius: 12px;
    border: 2px solid var(--gray-100, #f3f4f6);
    transition: all 0.3s ease;
}

.bh-detail-amenity-item span:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.bh-detail-amenity-item i,
.bh-detail-amenity-item svg {
    color: var(--primary-green, #10b981);
    font-size: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Map */
.bh-detail-map-container {
    background: var(--white, #ffffff);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    border: 2px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.bh-detail-map {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Sidebar */
.bh-detail-sidebar {
    position: sticky;
    top: 100px;
}

.bh-detail-price-card {
    background: var(--white, #ffffff);
    border-radius: 20px;
    padding: 0;
    border: 3px solid var(--gray-200, #e5e7eb);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.bh-detail-price-content {
    padding: 40px;
}

/* Price Info */
.bh-detail-price-info {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-200, #e5e7eb);
}

.bh-detail-price-final strong {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-green, #10b981);
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    line-height: 1;
}

.bh-detail-price-final sup {
    font-size: 20px;
    font-weight: 700;
}

.bh-detail-price-final small {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-600, #4b5563);
}

.bh-detail-price-final span {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-700, #047857);
    background: var(--green-50, #ecfdf5);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 12px;
}

/* Contact Number */
.bh-detail-contact-box {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-200, #e5e7eb);
}

.bh-detail-contact-num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: var(--gray-50, #f9fafb);
    border: 3px solid var(--gray-300, #d1d5db);
    border-radius: 14px;
    color: var(--gray-700, #374151);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.bh-detail-contact-num:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    color: var(--primary-green, #10b981);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

.bh-detail-contact-num i {
    font-size: 20px;
}

.bh-detail-hide-num {
    display: inline;
}

.bh-detail-show-num {
    display: none;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.bh-detail-contact-num:hover .bh-detail-hide-num {
    display: none;
}

.bh-detail-contact-num:hover .bh-detail-show-num {
    display: flex;
}

.bh-detail-show-num a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-green, #10b981);
    border-radius: 50%;
    color: var(--white, #ffffff);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.bh-detail-show-num a:hover {
    background: var(--green-600, #059669);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.bh-detail-show-num a.bh-whatsapp-btn {
    background: #25D366;
}

.bh-detail-show-num a.bh-whatsapp-btn:hover {
    background: #20BA5A;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.bh-detail-show-num p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900, #111827);
}

/* Price Note */
.bh-detail-price-note {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-200, #e5e7eb);
}

.bh-detail-price-note span {
    font-size: 14px;
    color: var(--gray-600, #4b5563);
    font-weight: 500;
    line-height: 1.7;
}

.bh-detail-price-note a {
    color: var(--primary-green, #10b981);
    font-weight: 700;
    text-decoration: none;
}

.bh-detail-price-note a:hover {
    text-decoration: underline;
}

/* Dealer Info */
.bh-detail-dealer-info {
    margin-bottom: 32px;
}

.bh-detail-dealer-profile {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 24px;
    background: var(--gray-50, #f9fafb);
    border-radius: 14px;
    border: 2px solid var(--gray-200, #e5e7eb);
    transition: all 0.3s ease;
}

.bh-detail-dealer-profile:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.bh-detail-dealer-profile figure {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-green, #10b981);
    margin: 0;
}

.bh-detail-dealer-profile figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bh-detail-dealer-profile figure i {
    font-size: 36px;
    color: var(--gray-400, #9ca3af);
}

.bh-detail-dealer-profile-info {
    flex: 1;
}

.bh-detail-dealer-profile-info h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900, #111827);
    margin: 0 0 6px 0;
}

.bh-detail-dealer-profile-info small {
    font-size: 13px;
    color: var(--gray-500, #6b7280);
    font-weight: 500;
}

.bh-detail-dealer-profile-info a {
    font-size: 14px;
    color: var(--primary-green, #10b981);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 6px;
}

.bh-detail-dealer-profile-info a:hover {
    text-decoration: underline;
}

/* Book Button */
.bh-detail-book-btn-area {
    padding: 0;
    margin: 0;
    list-style: none;
}

.bh-detail-book-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-green, #10b981);
    border: none;
    border-radius: 14px;
    color: var(--white, #ffffff);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
}

.bh-detail-book-btn:hover {
    background: var(--green-600, #059669);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
    color: var(--white, #ffffff);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .bh-detail-layout {
        gap: 28px;
    }

    .bh-detail-right-col {
        flex: 0 0 350px;
        width: 350px;
    }

    .bh-detail-price-final strong {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .bh-detail-main {
        padding: 30px 0 50px;
    }

    .bh-detail-layout {
        flex-direction: column;
        gap: 32px;
    }

    .bh-detail-left-col,
    .bh-detail-right-col {
        flex: 1;
        width: 100%;
    }

    .bh-detail-header {
        padding: 24px 28px;
        margin-bottom: 20px;
    }

    .bh-detail-header-title h2 {
        font-size: 28px;
    }

    .bh-detail-gallery-main>div {
        height: 400px;
    }

    .bh-detail-gallery-item {
        height: 200px;
    }

    .bh-detail-sidebar {
        position: relative;
        top: 0;
    }

    .bh-detail-description,
    .bh-detail-amenities,
    .bh-detail-map-container {
        padding: 28px;
        margin-bottom: 28px;
    }

    .bh-detail-section-title h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .bh-detail-main {
        padding: 20px 0 40px;
    }

    .bh-detail-header {
        padding: 20px 24px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .bh-detail-header-title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .bh-detail-header-title address {
        font-size: 14px;
    }

    .bh-detail-gallery {
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .bh-detail-gallery-main>div {
        height: 300px;
    }

    .bh-detail-gallery-item {
        height: 150px;
    }

    .bh-detail-show-photos {
        display: none;
    }

    .bh-detail-show-photos-mobile {
        display: block;
    }

    .bh-detail-btn-photos {
        padding: 10px 20px;
        font-size: 13px;
    }

    .bh-detail-modal .modal-header {
        padding: 20px 24px;
    }

    .bh-detail-modal .modal-header h5 {
        font-size: 18px;
    }

    .bh-detail-modal .modal-body {
        padding: 24px;
    }

    .bh-detail-modal-image {
        flex: 0 0 calc(50% - 8px);
    }

    .bh-detail-modal-image .image {
        height: 150px;
    }

    .bh-detail-content {
        margin-top: 20px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .bh-detail-description,
    .bh-detail-amenities,
    .bh-detail-map-container {
        padding: 24px;
        border-radius: 14px;
        margin-bottom: 24px;
    }

    .bh-detail-section-title {
        margin-bottom: 20px;
    }

    .bh-detail-section-title h3 {
        font-size: 20px;
        padding-bottom: 14px;
    }

    .bh-detail-text {
        font-size: 15px;
    }

    .bh-detail-amenity-item {
        margin-bottom: 12px;
    }

    .bh-detail-amenity-item span {
        font-size: 14px;
        padding: 10px 14px;
    }

    .bh-detail-map {
        height: 350px;
    }

    .bh-detail-sidebar {
        margin-top: 24px;
    }

    .bh-detail-price-card {
        border-radius: 14px;
    }

    .bh-detail-price-content {
        padding: 28px;
    }

    .bh-detail-price-info,
    .bh-detail-contact-box,
    .bh-detail-price-note,
    .bh-detail-dealer-info {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .bh-detail-price-final strong {
        font-size: 22px;
    }

    .bh-detail-contact-num {
        padding: 14px 20px;
        font-size: 14px;
    }

    .bh-detail-dealer-profile {
        padding: 16px;
    }

    .bh-detail-dealer-profile figure {
        width: 56px;
        height: 56px;
    }

    .bh-detail-dealer-profile-info h4 {
        font-size: 17px;
    }

    .bh-detail-book-btn {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .bh-detail-main {
        padding: 15px 0 30px;
    }

    .bh-detail-header {
        padding: 18px 20px;
        border-radius: 12px;
    }

    .bh-detail-header-title h2 {
        font-size: 20px;
    }

    .bh-detail-header-title address {
        font-size: 13px;
    }

    .bh-detail-gallery {
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .bh-detail-gallery-main>div {
        height: 250px;
    }

    .bh-detail-gallery-item {
        height: 125px;
    }

    .bh-detail-btn-photos {
        padding: 9px 18px;
        font-size: 12px;
    }

    .bh-detail-modal .modal-header {
        padding: 18px 20px;
    }

    .bh-detail-modal .modal-header h5 {
        font-size: 16px;
    }

    .bh-detail-modal .modal-body {
        padding: 20px;
    }

    .bh-detail-modal-image {
        flex: 0 0 100%;
    }

    .bh-detail-modal-image .image {
        height: 200px;
    }

    .bh-detail-description,
    .bh-detail-amenities,
    .bh-detail-map-container {
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .bh-detail-section-title {
        margin-bottom: 18px;
    }

    .bh-detail-section-title h3 {
        font-size: 18px;
        padding-bottom: 12px;
    }

    .bh-detail-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .bh-detail-amenity-item {
        margin-bottom: 10px;
    }

    .bh-detail-amenity-item span {
        font-size: 13px;
        padding: 9px 12px;
        gap: 10px;
    }

    .bh-detail-amenity-item i,
    .bh-detail-amenity-item svg {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }

    .bh-detail-map {
        height: 300px;
    }

    .bh-detail-sidebar {
        margin-top: 20px;
    }

    .bh-detail-price-card {
        border-radius: 12px;
    }

    .bh-detail-price-content {
        padding: 24px;
    }

    .bh-detail-price-info,
    .bh-detail-contact-box,
    .bh-detail-price-note,
    .bh-detail-dealer-info {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .bh-detail-price-final strong {
        font-size: 26px;
    }

    .bh-detail-price-final sup {
        font-size: 16px;
    }

    .bh-detail-price-final small {
        font-size: 14px;
    }

    .bh-detail-price-final span {
        font-size: 12px;
        padding: 5px 10px;
    }

    .bh-detail-contact-num {
        padding: 12px 18px;
        font-size: 13px;
    }

    .bh-detail-show-num a {
        width: 40px;
        height: 40px;
    }

    .bh-detail-show-num p {
        font-size: 15px;
    }

    .bh-detail-price-note span {
        font-size: 12px;
    }

    .bh-detail-dealer-profile {
        padding: 14px;
        gap: 14px;
    }

    .bh-detail-dealer-profile figure {
        width: 52px;
        height: 52px;
    }

    .bh-detail-dealer-profile figure i {
        font-size: 28px;
    }

    .bh-detail-dealer-profile-info h4 {
        font-size: 16px;
    }

    .bh-detail-dealer-profile-info small {
        font-size: 11px;
    }

    .bh-detail-dealer-profile-info a {
        font-size: 12px;
    }

    .bh-detail-book-btn {
        padding: 13px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 400px) {
    .bh-detail-gallery-main>div {
        height: 220px;
    }

    .bh-detail-gallery-item {
        height: 110px;
    }

    .bh-detail-price-final strong {
        font-size: 20px;
    }

    .bh-detail-map {
        height: 250px;
    }
}

/* Compact Ad Card Design - Matching Upload Style */
.bh-compact-ads-list {
    width: 100%;
}

.bh-compact-ad-card {
    background: var(--white, #ffffff);
    border-radius: 12px;
    border: 1px solid var(--gray-200, #e5e7eb);
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    gap: 16px;
    padding: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.bh-compact-ad-card:hover {
    border-color: var(--primary-green, #10b981);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

/* Image - Small Square */
.bh-compact-ad-image {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray-100, #f3f4f6);
}

.bh-compact-ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bh-compact-ad-card:hover .bh-compact-ad-image img {
    transform: scale(1.08);
}

/* Content Area */
.bh-compact-ad-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

/* Title */
.bh-compact-ad-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900, #111827);
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bh-compact-ad-title:hover {
    color: var(--primary-green, #10b981);
}

/* Subtitle/Specs */
.bh-compact-ad-subtitle {
    font-size: 13px;
    color: var(--gray-600, #4b5563);
    font-weight: 500;
    line-height: 1.4;
}

/* Badges Row */
.bh-compact-ad-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bh-compact-member-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--gray-100, #f3f4f6);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-700, #374151);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bh-compact-member-badge i {
    color: var(--yellow-500, #f59e0b);
    font-size: 12px;
}

.bh-compact-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--blue-50, #eff6ff);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-700, #1d4ed8);
    text-transform: uppercase;
}

.bh-compact-verified-badge i {
    color: var(--blue-600, #2563eb);
    font-size: 12px;
}

/* Location */
.bh-compact-ad-location {
    font-size: 10px;
    color: var(--gray-500, #6b7280);
    font-weight: 500;
}

/* Price Section */
.bh-compact-ad-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.bh-compact-ad-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-green, #10b981);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.bh-compact-ad-price sup {
    font-size: 12px;
    font-weight: 700;
}

.bh-compact-ad-price small {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600, #4b5563);
    margin-left: 2px;
}

.bh-compact-negotiable {
    font-size: 11px;
    font-weight: 600;
    color: var(--green-700, #047857);
    background: var(--green-50, #ecfdf5);
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

/* Time Badge */
.bh-compact-ad-time {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 12px;
    color: var(--gray-500, #6b7280);
    font-weight: 500;
}

/* Contact Buttons - Compact */
.bh-compact-contact-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100, #f3f4f6);
}

.bh-compact-btn-phone {
    flex: 1;
    padding: 8px 14px;
    background: var(--gray-50, #f9fafb);
    border: 1px solid var(--gray-300, #d1d5db);
    border-radius: 8px;
    color: var(--gray-700, #374151);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bh-compact-btn-phone:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    color: var(--primary-green, #10b981);
}

.bh-compact-btn-phone i {
    font-size: 14px;
}

.bh-compact-btn-whatsapp {
    flex: 1;
    padding: 8px 14px;
    background: #25D366;
    border: none;
    border-radius: 8px;
    color: var(--white, #ffffff);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-compact-btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: var(--white, #ffffff);
}

.bh-compact-btn-whatsapp i {
    font-size: 14px;
}

/* Specs/Amenities - Inline */
.bh-compact-ad-specs {
    font-size: 13px;
    color: var(--gray-600, #4b5563);
    font-weight: 500;
    line-height: 1.5;
}

/* Amenities Tags */
.bh-compact-ad-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bh-compact-amenity-tag {
    font-size: 10px;
    color: var(--gray-700, #374151);
    background: var(--gray-100, #f3f4f6);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.page-item .page-link {
    padding: 8px 14px;
    border: 2px solid var(--gray-200, #e5e7eb);
    border-radius: 8px;
    color: var(--gray-700, #374151);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.page-item.active .page-link {
    background: var(--primary-green, #10b981);
    border-color: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
}

.page-item .page-link:hover {
    background: var(--green-50, #ecfdf5);
    border-color: var(--primary-green, #10b981);
    color: var(--primary-green, #10b981);
}

/* No Ads */
.bh-compact-no-ads {
    text-align: center;
    padding: 60px 20px;
}

.bh-compact-no-ads i {
    font-size: 48px;
    color: var(--gray-400, #9ca3af);
    margin-bottom: 12px;
}

.bh-compact-no-ads p {
    font-size: 16px;
    color: var(--gray-600, #4b5563);
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .bh-compact-ad-card {
        padding: 12px;
        gap: 12px;
    }

    .bh-compact-ad-image {
        flex: 0 0 90px;
        width: 90px;
        height: 90px;
    }

    .bh-compact-ad-content {
        gap: 6px;
    }

    .bh-compact-ad-title {
        font-size: 14px;
    }

    .bh-compact-ad-subtitle,
    .bh-compact-ad-specs {
        font-size: 12px;
    }

    .bh-compact-member-badge,
    .bh-compact-verified-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .bh-compact-amenity-tag {
        font-size: 8px;
        padding: 3px 8px;
    }

    .bh-compact-ad-location {
        font-size: 10px;
    }

    .bh-compact-ad-price {
        font-size: 16px;
    }

    .bh-compact-ad-time {
        position: static;
        text-align: right;
        font-size: 11px;
    }

    .bh-compact-contact-row {
        margin-top: 8px;
        padding-top: 8px;
        gap: 6px;
    }

    .bh-compact-btn-phone,
    .bh-compact-btn-whatsapp {
        padding: 7px 12px;
        font-size: 12px;
        gap: 4px;
    }

    .bh-compact-btn-phone i,
    .bh-compact-btn-whatsapp i {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .bh-compact-ad-card {
        padding: 10px;
        margin-bottom: 10px;
        gap: 10px;
    }

    .bh-compact-ad-image {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
    }

    .bh-compact-ad-content {
        gap: 5px;
    }

    .bh-compact-ad-title {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .bh-compact-ad-subtitle,
    .bh-compact-ad-specs {
        font-size: 11px;
    }

    .bh-compact-member-badge,
    .bh-compact-verified-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .bh-compact-amenity-tag {
        font-size: 8px;
        padding: 2px 6px;
    }

    .bh-compact-ad-location {
        font-size: 10px;
    }

    .bh-compact-ad-price {
        font-size: 15px;
    }

    .bh-compact-ad-price sup {
        font-size: 10px;
    }

    .bh-compact-ad-price small {
        font-size: 10px;
    }

    .bh-compact-negotiable {
        font-size: 9px;
        padding: 2px 6px;
    }

    .bh-compact-ad-time {
        font-size: 10px;
    }

    .bh-compact-contact-row {
        margin-top: 6px;
        padding-top: 6px;
        gap: 5px;
    }

    .bh-compact-btn-phone,
    .bh-compact-btn-whatsapp {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    .bh-compact-btn-phone i,
    .bh-compact-btn-whatsapp i {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .bh-compact-ad-card {
        padding: 8px;
        gap: 8px;
    }

    .bh-compact-ad-image {
        flex: 0 0 70px;
        width: 70px;
        height: 70px;
    }

    .bh-compact-ad-title {
        font-size: 12px;
    }

    .bh-compact-ad-price {
        font-size: 14px;
    }

    .bh-compact-contact-row {
        gap: 4px;
    }

    .bh-compact-btn-phone,
    .bh-compact-btn-whatsapp {
        padding: 5px 8px;
        font-size: 10px;
    }
}

