.directory-header {
    background: #FFFFFF99;
    backdrop-filter: blur(30px);
    border-radius: 12px;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 16px;
}

.directory-header h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #111;
    font-family: "Outfit", sans-serif;
}

.directory-action {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.directory-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #FFFFFF99;
    border: 1px solid #0000001A;
    backdrop-filter: blur(30px);
    border-radius: 8px;
    padding: 9px 12px;

}

.search-wrapper {
    position: relative;
    width: 250px;
}

.search-wrapper svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.search-wrapper input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border: none;
    border-radius: 8px;
    background: #EDEDED99;
    outline: none;
    font-size: 13px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.search-wrapper input:focus {
    background: #EDEDED99;
}

.filter-dropdowns {
    display: flex;
    gap: 8px;
}

.filter-dropdowns select {
    padding: 8px 28px 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center;
    font-size: 13px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    color: #333;
    outline: none;
    cursor: pointer;
}

.btn-add-business {
    background: #0056b3;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-add-business:hover,
.btn-add-business:active,
.btn-add-business:focus {
    background: #004494;
    color: #fff;
    text-decoration: none;
}

.directory-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 60px 20px;
    color: #888;
    font-size: 14px;
}

.directory-loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-top-color: #555;
    border-radius: 50%;
    animation: dir-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes dir-spin {
    to {
        transform: rotate(360deg);
    }
}

.discover-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 40vh;
    padding: 40px 20px;
}

.discover-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    font-family: "Outfit", sans-serif;
    margin-bottom: 12px;
    margin-top: 0;
}

.discover-section p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.discover-search {
    width: 100%;
    max-width: 500px;
}

.discover-search input {
    padding: 14px 20px 14px 45px;
    font-size: 15px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.discover-search input:focus {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.discover-search svg {
    left: 18px;
    width: 18px;
    height: 18px;
}


/*create business*/

.iti {
    width: 100%;
    display: block;
}

#create-business-modal .modal-header {
    border: none;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    background: transparent;
}

#create-business-modal .close {
    font-size: 28px;
    font-weight: 300;
    color: #999;
    opacity: 1;
}

#create-business-modal .close:hover {
    color: #333;
}

.cb-header {
    margin-bottom: 30px;
}

.cb-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0056b3;
    margin: 0 0 10px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.cb-header h2 span {
    color: #ffb300;
}

.cb-step-indicator {
    font-size: 16px;
    color: #333;
}

.cb-step-indicator span {
    color: #0056b3;
    font-weight: 600;
}

.cb-step {
    display: none;
}

.cb-step.active {
    display: block;
}

.cb-form-group {
    margin-bottom: 18px;
}

.cb-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    box-shadow: none;
    transition: border-color 0.2s;
}

.cb-form-control:focus {
    border-color: #0056b3;
    outline: none;
}

.cb-form-control::placeholder {
    color: #999;
}

select.cb-form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.cb-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.cb-row .cb-form-group {
    margin-bottom: 0;
}

.cb-col {
    flex: 1;
}

.cb-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.cb-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
    border: none;
}

.cb-btn-primary {
    background-color: #0056b3;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cb-btn-primary:hover {
    background-color: #004494;
}

.cb-btn-outline {
    background-color: transparent;
    color: #0056b3;
    border: 1px solid #0056b3;
}

.cb-btn-outline:hover {
    background-color: #f8fbff;
}

.cb-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #0056b3;
    color: #0056b3;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    background: transparent;
}

.cb-upload-btn svg {
    width: 18px;
    height: 18px;
}

.cb-upload-btn:hover {
    background: #f8fbff;
}

.cb-gallery-placeholder {
    width: 120px;
    height: 140px;
    border: 2px dashed #0056b3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    cursor: pointer;
    background-color: #fcfcfc;
}

.cb-gallery-placeholder:hover {
    background-color: #f5f9ff;
}

.cb-radio-group {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 10px;
}

.cb-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    cursor: pointer;
    color: #333;
}

.cb-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #0056b3;
    cursor: pointer;
}

.cb-map-placeholder {
    width: 100%;
    height: 200px;
    background-image: url('https://developers.google.com/static/maps/images/landing/hero_maps_static_api.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-map-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #0056b3;
    background-color: rgba(0, 86, 179, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-map-dot {
    width: 12px;
    height: 12px;
    background-color: #0056b3;
    border-radius: 50%;
    border: 2px solid #fff;
}

.cb-social-link {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cb-social-link select {
    width: 200px;
}

.cb-social-link input {
    flex: 1;
}

.cb-social-link button {
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
}

.cb-social-link button:hover {
    background-color: #004494;
}

.cb-label-title {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: #111;
    font-size: 14px;
}

@keyframes cb-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.dir-tabs {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #fff;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #f3f5f5;
    overflow-x: auto;
}

.modern-tab {
    position: relative;
    padding: 20px 15px;
    text-decoration: none;
    color: #727272;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.modern-tab:hover {
    color: #015ba8;
}

.modern-tab.active {
    color: #015ba8;
    font-weight: 600;
}

.modern-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: #015ba8;
    border-radius: 10px;
}

.sun_pub_box.panel,
.dir-panel {
    border-radius: 0px 0px 16px 16px !important;
}

.wo_page_review_innr h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(28, 28, 28, 1);

}

.dir-company-card {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background: transparent;
}

.dir-company-info {
    flex: 1;
}

.dir-company-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.dir-info-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.dir-info-label {
    width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(114, 114, 114, 1);
    font-size: 14px;
    font-weight: 600;
}

.dir-info-label i {
    width: 18px;
    color: #888;
}

.dir-info-value {
    color: rgba(114, 114, 114, 1);
    font-size: 14px;
    font-weight: 600;
}

.dir-company-sidebar {
    width: 360px;
    background: rgba(1, 91, 168, 0.1);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e2edf7;
}

.dir-status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(28, 28, 28, 1);
    font-size: 14px;
    font-weight: 600;
}

.dir-status-item strong {
    margin-left: auto;
    font-weight: 600;
}

.dir-status-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
}

.dir-socials {
    border-top: 1px solid #dbe7f1;
    display: flex;
    gap: 12px;
}

.dir-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
}

.enquire-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offers-header {
    padding: 25px;
    margin-bottom: 20px;
}

.offers-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.offers-title h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: rgba(28, 28, 28, 1);
}

.offers-title p {
    margin-top: 8px;
    color: #727272;
    font-size: 12px;
    font-weight: 600;
}


.offers-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.offer-tabs {
    display: flex;
    gap: 12px;
}

.offer-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 30px;
    padding: 0 15px;
    min-width: 320px;
}

.offer-search i.fa-search {
    color: #888;
}

.offer-search input {
    border: none;
    outline: none;
    flex: 1;
    padding: 12px;
    background: transparent;
}

.filter-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 18px;
}


.search-box {
    margin-bottom: 16px;
}

.search-box input {
    width: 280px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 0 18px;
    outline: none;
    font-size: 14px;
}

.user-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0px;
    border-top: 1px solid #1c1c1c10;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-wrap {
    position: relative;
}

.avatar-wrap img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #d8a31c;
    object-fit: cover;
}

.dir-card-crown {
    position: absolute;
    bottom: -4px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.add-btn {
    background: #005bab;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.add-btn:hover {
    opacity: .9;
}


.dir-stack-stats-wrapper {
    display: flex;
    gap: 14px;
    background: #0f5da8;
    padding: 14px;
    border-radius: 16px;
    max-width: 560px;
    box-sizing: border-box;
}

.dir-stack-stat-card {
    flex: 1;
    background: #1d67b1;
    border-radius: 10px;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
}

.dir-stack-stat-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.dir-stack-stat-label {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit';
}

.dir-stack-star {
    color: #ffc107;
    font-size: 16px;
    vertical-align: middle;
}

.enquire-footer {
    display: flex;
    justify-content: end;
    margin-bottom: 14px;
}

/*Enquire components*/

.enquires-list {
    margin-top: 20px;
}

.enquire-card {
    width: 100%;
    border: 1px solid #0000001A;
    border-radius: 16px;
    padding: 20px;
    background-color: #FFFFFF99;
    margin-bottom: 20px;
    box-sizing: border-box;
    box-shadow: none;
}

.enquire-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.enquire-avatar-container {
    position: relative;
    width: 44px;
    height: 44px;
    margin-right: 15px;
    flex-shrink: 0;
}

.enquire-avatar {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    border: none;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.enquire-avatar svg {
    width: 24px;
    height: 24px;
}

.enquire-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.enquire-user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enquire-user-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: block;
    margin-bottom: 3px;
}

.enquire-contact-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #727272;
    font-family: 'Outfit', sans-serif;
}

.enquire-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.enquire-contact-item i {
    color: #999;
    font-size: 13px;
}

.enquire-text {
    color: #5B5B5B;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}