/* ============================================================
   LIGHT GREEN THEME FOR EXISTING HTML
   Fresh, Clean, Professional
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Green Theme Colors */
    --primary-green: #10b981;
    --green-600: #059669;
    --green-700: #047857;
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #a7f3d0;

    /* White & Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --text-muted: #6b7280;
}

body.homepage {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--gray-50);
    line-height: 1.6;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

body.homepage h1,
body.homepage h2,
body.homepage h3,
body.homepage h4,
body.homepage h5,
body.homepage h6 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

body.wo-homepage {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--gray-50);
    line-height: 1.6;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

body.wo-homepage h1,
body.wo-homepage h2,
body.wo-homepage h3,
body.wo-homepage h4,
body.wo-homepage h5,
body.wo-homepage h6 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 100%);
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Left */
.hero-left {
    padding: 40px;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-left .subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.price-tag i {
    font-size: 20px;
}

.price-tag .currency {
    font-weight: 800;
}

/* Hero Right */
.hero-right {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.hero-right h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 36px;
    color: var(--gray-900);
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--gray-50);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    background: var(--green-50);
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.category-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(89%) saturate(1347%)
        hue-rotate(122deg) brightness(96%) contrast(93%);
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    margin-top: 16px;
    margin-bottom: 12px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link i {
    font-size: 16px !important;
    transition: transform 0.3s ease;
}

.category-card:hover .category-link {
    color: var(--green-600);
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* ============================================================
   SEARCH SECTION
   ============================================================ */

.search-section {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 100%);
    padding: 0 20px 80px;
    margin-top: -60px;
    position: relative;
    z-index: 100;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    padding: 18px 20px;
    border-radius: 14px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.search-input-group:hover,
.search-input-group:focus-within {
    background: var(--white);
    border-color: var(--primary-green);
}

.search-input-group i {
    font-size: 20px;
    color: var(--primary-green);
}

.search-input-group select,
.search-input-group input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    font-family: "Inter", sans-serif;
}

.search-input-group select {
    cursor: pointer;
}

.search-input-group input::placeholder {
    color: var(--gray-400);
}

.search-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--green-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.search-btn i {
    font-size: 18px;
}

/* ============================================================
   LISTINGS SECTION
   ============================================================ */

.listings-section {
    padding: 10px 20px;
    background: var(--white);
}

.listings-section2 {
    padding: 5px 200px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.listing-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.listing-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
    transform: translateY(-5px);
}

.listing-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.08);
}

.favorite-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.listing-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.listing-content {
    padding: 24px;
}

.listing-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.4;
}

.listing-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.spec-item i {
    color: var(--primary-green);
    font-size: 12px;
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.listing-location i {
    color: var(--primary-green);
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.listing-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-green);
}

.listing-price .currency {
    font-size: 16px;
    font-weight: 700;
}

.negotiable-tag {
    display: inline-block;
    background: var(--green-50);
    color: var(--green-700);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.listing-time {
    font-size: 13px;
    color: var(--gray-500);
}

.listing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-phone {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-phone:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-ad {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.sidebar-ad:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
}

.sidebar-ad img {
    width: 100%;
    height: auto;
}

/* ============================================================
   ALL CATEGORIES SECTION
   ============================================================ */

.all-categories-section {
    padding: 80px 20px;
    background: var(--gray-50);
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.categories-header {
    text-align: center;
    margin-bottom: 60px;
}

.categories-header span {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.categories-header h2 {
    font-size: 30px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.categories-header h2 em {
    color: var(--primary-green);
    font-style: normal;
}

.categories-header p {
    font-size: 14px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.category-item {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--gray-100);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--green-50);
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.15);
}

.category-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(89%) saturate(1347%)
        hue-rotate(122deg) brightness(96%) contrast(93%);
    transition: all 0.3s ease;
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-item h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.category-item span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-size: 10px;
    font-weight: 700;
}

.category-item:hover span {
    color: var(--green-600);
}

.category-item span i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.category-item:hover span i {
    transform: translateX(5px);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1199px) {
    .hero-left h1 {
        font-size: 56px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }

    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-left {
        padding: 20px;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left .subtitle {
        font-size: 18px;
    }

    .hero-right {
        padding: 32px 24px;
    }

    .hero-right h2 {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .search-section {
        padding: 0 16px 60px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 11px;
        color: var(--gray-600);
    }

    .listings-section {
        padding: 2px 16px;
    }

    .listings-section2 {
        padding: 5px 5px;
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }

    .categories-header h2 {
        font-size: 36px;
    }

    .categories-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left .subtitle {
        font-size: 16px;
    }

    .price-tag {
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-right h2 {
        font-size: 24px;
    }

    .category-card {
        padding: 20px;
    }

    .category-card img {
        width: 60px;
        height: 60px;
    }

    .search-container {
        padding: 10px;
    }

    .search-input-group {
        padding: 16px 18px;
    }

    .search-btn {
        padding: 18px 32px;
    }

    .section-header h2 {
        font-size: 18px;
    }
    .section-header p {
        font-size: 10px;
        color: var(--gray-600);
    }

    .listing-actions {
        grid-template-columns: 1fr;
    }
}

.datepicker-dropdown .datepicker-switch,
.datepicker-dropdown .prev i,
.datepicker-dropdown .next i {
    color: white !important;
}

.datepicker table tr td span,
.datepicker table tr td,
.datepicker table tr th {
    color: white !important;
}

/* Modal Overlay */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: none;
}

/* Modal Content */
#category1 .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Modal Header */
#category1 .modal-header {
    background: linear-gradient(
        135deg,
        var(--primary-green, #10b981) 0%,
        var(--green-600, #059669) 100%
    );
    border-bottom: none;
    padding: 15px 40px;
    position: relative;
}

#category1 .modal-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--white, #ffffff);
    opacity: 0.2;
}

#category1 .modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white, #ffffff) !important;
    margin: 0;
    letter-spacing: -0.5px;
}

#category1 .modal-header .close {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 1;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#category1 .modal-header .close:hover {
    background: var(--white, #ffffff);
    transform: translateY(-50%) rotate(90deg);
}

#category1 .modal-header .close span {
    color: var(--white, #ffffff);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
}

#category1 .modal-header .close:hover span {
    color: var(--primary-green, #10b981);
}

/* Modal Body */
#category1 .modal-body {
    padding: 48px 40px;
    background: var(--gray-50, #f9fafb);
}

#category1 .wo-dbpost__content {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Post Step Card */
.wo-dbpoststep {
    background: var(--white, #ffffff);
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
    border: 2px solid var(--gray-200, #e5e7eb);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wo-dbpoststep:hover {
    border-color: var(--primary-green, #10b981);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}

/* Post Step Image */
.wo-dbpoststep__img {
    flex: 0 0 280px;
    width: 280px;
    height: 240px;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.wo-dbpoststep__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.1) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wo-dbpoststep:hover .wo-dbpoststep__img::after {
    opacity: 1;
}

.wo-dbpoststep__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wo-dbpoststep:hover .wo-dbpoststep__img img {
    transform: scale(1.08);
}

/* Post Step Content */
.wo-dbpoststep__title {
    flex: 1;
    padding: 32px 40px 32px 0;
}

.wo-dbpoststep__title h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900, #111827);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.wo-dbpoststep__title p {
    font-size: 15px;
    color: var(--gray-600, #4b5563);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Button */
.wo-dbpoststep__title .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wo-dbpoststep__title .btn-outline-primary {
    background: transparent;
    color: var(--primary-green, #10b981);
    border: 2px solid var(--primary-green, #10b981);
}

.wo-dbpoststep__title .btn-outline-primary:hover {
    background: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
    border-color: var(--primary-green, #10b981);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Right Step - Reverse Layout */
.wo-rightstep {
    flex-direction: row-reverse;
}

.wo-rightstep .wo-dbpoststep__title {
    padding: 32px 0 32px 40px;
}

/* Responsive Design */
@media (max-width: 991px) {
    #category1 .modal-dialog {
        max-width: 90%;
        margin: 20px auto;
    }

    #category1 .modal-header {
        padding: 28px 32px;
    }

    #category1 .modal-title {
        font-size: 24px;
        padding-right: 50px;
    }

    #category1 .modal-body {
        padding: 36px 32px;
    }

    .wo-dbpoststep,
    .wo-rightstep {
        flex-direction: column;
        gap: 0;
    }

    .wo-dbpoststep__img {
        flex: 0 0 auto;
        width: 100%;
        height: 220px;
    }

    .wo-dbpoststep__title,
    .wo-rightstep .wo-dbpoststep__title {
        padding: 28px 32px;
    }

    .wo-dbpoststep__title h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    #category1 .modal-dialog {
        max-width: 95%;
        margin: 10px auto;
    }

    #category1 .modal-header {
        padding: 24px 28px;
    }

    #category1 .modal-title {
        font-size: 20px;
    }

    #category1 .modal-header .close {
        width: 36px;
        height: 36px;
        right: 20px;
    }

    #category1 .modal-header .close span {
        font-size: 24px;
    }

    #category1 .modal-body {
        padding: 28px 24px;
    }

    .wo-dbpost__content {
        gap: 24px;
    }

    .wo-dbpoststep__img {
        height: 200px;
    }

    .wo-dbpoststep__title {
        padding: 24px 28px;
    }

    .wo-dbpoststep__title h3 {
        font-size: 20px;
    }

    .wo-dbpoststep__title p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wo-dbpoststep__title .btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    #category1 .modal-dialog {
        max-width: 100%;
        margin: 0;
        height: 100vh;
    }

    #category1 .modal-content {
        border-radius: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    #category1 .modal-body {
        flex: 1;
        overflow-y: auto;
        padding: 24px 20px;
    }

    .wo-dbpoststep__img {
        height: 180px;
    }

    .wo-dbpoststep__title {
        padding: 20px 24px;
    }

    .wo-dbpoststep__title h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .wo-dbpoststep__title p {
        font-size: 13px;
        margin-bottom: 18px;
    }
}

/* Backdrop */
.modal-backdrop.show {
    opacity: 0.6;
    background-color: #111827;
}

/* Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal.show .modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

/* Footer Start */
.bh-footer-wrapper ul {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

.bh-footer-wrapper ul li {
    list-style: none !important;
    list-style-type: none !important;
}

.bh-footer-wrapper ul li::before {
    display: none !important;
}

.bh-footer-wrapper ul li::marker {
    display: none !important;
    content: none !important;
}

.bh-footer-wrapper {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

.bh-footer-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 80%,
            rgba(16, 185, 129, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(16, 185, 129, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* Social Icons Section */
.bh-footer-social-section {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}

.bh-footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.bh-footer-social-icons li {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.bh-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white, #ffffff);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bh-footer-social-link:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: var(--primary-green, #10b981);
    color: var(--white, #ffffff);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* Navigation Links Section */
.bh-footer-nav-section {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.bh-footer-nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.bh-footer-nav-links li {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.bh-footer-nav-link {
    color: var(--white, #ffffff);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.bh-footer-nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green, #10b981);
    transition: width 0.3s ease;
}

.bh-footer-nav-link:hover {
    color: var(--primary-green, #10b981);
}

.bh-footer-nav-link:hover::after {
    width: 100%;
}

/* Copyright Section */
.bh-footer-copyright-section {
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.bh-footer-copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bh-footer-copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.bh-footer-brand-name {
    color: var(--primary-green, #10b981);
    font-weight: 700;
}

.bh-footer-developer-link {
    color: var(--primary-green, #10b981);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bh-footer-developer-link:hover {
    color: var(--white, #ffffff);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 767px) {
    .bh-footer-wrapper {
        padding: 40px 0 0;
    }

    .bh-footer-social-section {
        padding-bottom: 25px;
    }

    .bh-footer-social-icons {
        gap: 15px;
    }

    .bh-footer-social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .bh-footer-nav-section {
        padding-bottom: 25px;
    }

    .bh-footer-nav-links {
        gap: 30px;
    }

    .bh-footer-nav-link {
        font-size: 15px;
    }

    .bh-footer-copyright-section {
        padding: 20px 0;
    }

    .bh-footer-copyright-text {
        font-size: 13px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .bh-footer-wrapper {
        padding: 35px 0 0;
    }

    .bh-footer-social-section {
        padding-bottom: 20px;
    }

    .bh-footer-social-icons {
        gap: 12px;
    }

    .bh-footer-social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .bh-footer-nav-section {
        padding-bottom: 20px;
    }

    .bh-footer-nav-links {
        gap: 15px;
    }

    .bh-footer-nav-link {
        font-size: 14px;
    }

    .bh-footer-copyright-section {
        padding: 18px 0;
    }

    .bh-footer-copyright-text {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .bh-footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .bh-footer-nav-links {
        gap: 12px;
    }

    .bh-footer-nav-link {
        font-size: 13px;
    }

    .bh-footer-copyright-text {
        font-size: 11px;
    }
}

/* Footer End */
