/* ============================================
   ADD SERVICE PAGE STYLES
   ============================================ */

/* Page Title Header */
.page-title-header {
    flex: 1;
    text-align: center;
}

.page-title-header h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Back Button */
.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f3f4f6;
    color: #4b5563;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: #e0e0e0;
    color: #1a1a1a;
}

/* Add Service Page */
.add-service-page {
    padding: 100px 40px;
    min-height: calc(100vh - 80px);
    background: #f3f4f6;
}

.add-service-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
}

.add-service-form {
    padding: 0;
}

/* Two Column Layout */
.form-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
}

/* Left Column - Sidebar */
.form-left-column {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Section Labels */
.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #526432;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Selector */
.category-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.category-option {
    cursor: pointer;
}

.category-option input {
    display: none;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    background: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.category-card i {
    font-size: 1.2rem;
    color: #9ca3af;
    transition: all 0.25s ease;
}

.category-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
    transition: all 0.25s ease;
}

.category-option input:checked + .category-card {
    background: #e6f972;
    border-color: #526432;
}

.category-option input:checked + .category-card i {
    color: #526432;
}

.category-option input:checked + .category-card .category-title {
    color: #526432;
}

.category-option:hover .category-card {
    background: rgba(0, 0, 0, 0.04);
}

/* Tips Section */
.tips-section {
    background: rgba(230, 249, 114, 0.15);
    margin: 0 -24px -24px;
    padding: 20px 24px;
    border-radius: 0 0 16px 16px;
    border-bottom: none;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #4b5563;
    padding: 6px 0;
}

.tips-list li i {
    color: #526432;
    font-size: 0.7rem;
}

/* Stats Card */
.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 20px;
}

.stats-card {
    background: linear-gradient(135deg, #526432 0%, #024959 100%);
    color: white;
}

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

.stats-header i {
    font-size: 1.25rem;
    color: #e6f972;
}

.stats-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.stats-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    gap: 20px;
}

.stats-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.stats-list .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6f972;
}

.stats-list .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.btn-browse-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #e6f972;
    color: #526432;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-browse-services:hover {
    background: #fff;
    color: #526432;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 249, 114, 0.4);
}

/* Right Column - Form */
.form-right-column {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.form-header {
    padding: 28px 32px;
    background: #526432;
    color: white;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    width: 50px;
    height: 3px;
    background: #e6f972;
    border-radius: 2px 2px 0 0;
}

.form-header h1 {
    margin: 0 0 4px 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: white;
}

.form-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.form-right-column .form-section {
    padding: 24px 32px;
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.form-right-column .form-section:last-of-type {
    border-bottom: none;
}

.form-footer {
    background: #fafafa;
    border-bottom: none !important;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.span-2 {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 6px;
}

.form-group label .required {
    color: #ef4444;
}

.form-group label .optional {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.75rem;
}

/* Form Controls */
.add-service-form .form-control {
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: #fff;
}

.add-service-form .form-control:focus {
    border-color: #526432;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 249, 114, 0.3);
}

.add-service-form .form-control::placeholder {
    color: #9ca3af;
}

.add-service-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Image Upload Area */
.image-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    background: #fafafa;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-upload-area:hover {
    border-color: #526432;
    background: #f8faf5;
}

.image-upload-area.dragover {
    border-color: #e6f972;
    background: rgba(230, 249, 114, 0.1);
    border-style: solid;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.upload-placeholder i {
    font-size: 2rem;
    color: #9ca3af;
}

.upload-placeholder span {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.upload-hint {
    font-size: 0.7rem !important;
    color: #9ca3af !important;
    font-weight: 400 !important;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

.image-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-item .remove-image {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    transition: all 0.2s ease;
}

.image-preview-item .remove-image:hover {
    background: #ef4444;
}

/* Days Selector */
.days-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.day-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
}

.day-checkbox input {
    accent-color: #526432;
}

.day-checkbox:has(input:checked) {
    background: #e6f972;
    color: #526432;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #4b5563;
    cursor: pointer;
    margin-bottom: 20px;
}

.checkbox-label input {
    margin-top: 3px;
    accent-color: #526432;
}

.checkbox-label a {
    color: #526432;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-cancel {
    padding: 12px 24px;
    background: #f3f4f6;
    color: #4b5563;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.btn-submit {
    padding: 12px 28px;
    background: #526432;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-submit:hover {
    background: #e6f972;
    color: #526432;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 249, 114, 0.4);
}

/* ============================================
   LIST PAGE FILTER STYLES
   ============================================ */

/* Listings Header */
.listPage .listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    margin-bottom: 0;
}

.listPage .results-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.listPage .results-info h3 {
    margin: 0;
    font-weight: 600;
}

.listPage .verified-icon {
    font-size: 24px;
}

/* Add Service Button */
.btn-add-service {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #526432;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-add-service:hover {
    background: #526432;
    color: #e6f972;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 49, 61, 0.3);
}

.btn-add-service i {
    font-size: 0.8rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Filters Row */
.filters-row {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.filters-row .sort-controls {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group .form-select,
.filter-group .form-control {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.85rem;
    min-width: 120px;
    background: #fff;
    height: 38px;
}

.filter-group .form-select:focus,
.filter-group .form-control:focus {
    border-color: #526432;
    outline: none;
    box-shadow: 0 0 0 2px rgba(230, 249, 114, 0.3);
}

/* Search Group */
.filter-group.search-group {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
}

.filter-group.search-group .form-control {
    width: 100%;
}

/* View Toggle Buttons */
.view-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 8px;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.view-btn:hover {
    color: #4b5563;
}

.view-btn.active {
    background: #526432;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Map Toggle in filters row */
.filters-row .map-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filters-row .map-toggle > label:first-child {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   LIST VIEW STYLES
   ============================================ */

.listings-wrapper.list-view .row {
    flex-direction: column;
    gap: 15px;
}

.listings-wrapper.list-view .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.listings-wrapper.list-view .listing-card {
    display: flex;
    flex-direction: row;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.listings-wrapper.list-view .listing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.listings-wrapper.list-view .listing-card-content {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.listings-wrapper.list-view .listing-image-wrapper {
    flex: 0 0 220px;
    height: 160px;
    border-radius: 0;
}

.listings-wrapper.list-view .listing-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listings-wrapper.list-view .listing-info {
    flex: 1;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.listings-wrapper.list-view .listing-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.listings-wrapper.list-view .listing-rating {
    margin-bottom: 8px;
}

.listings-wrapper.list-view .listing-location {
    margin-bottom: 6px;
}

.listings-wrapper.list-view .listing-owner {
    margin-bottom: 0;
}

/* ============================================
   FULL WIDTH WHEN MAP HIDDEN
   ============================================ */

#listingsColumn.full-width .listings-wrapper .row {
    display: flex;
    flex-wrap: wrap;
}

#listingsColumn.full-width .listings-wrapper .col-md-4 {
    flex: 0 0 25%;
    max-width: 25%;
}

#listingsColumn.full-width .listings-wrapper.list-view .row {
    flex-direction: column;
}

#listingsColumn.full-width .listings-wrapper.list-view .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .add-service-page {
        padding: 80px 20px;
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sticky-sidebar {
        position: relative;
        top: 0;
    }

    .form-left-column {
        order: 1;
    }

    .form-right-column {
        order: 2;
    }

    .category-selector {
        grid-template-columns: repeat(5, 1fr);
    }

    .form-header {
        padding: 24px;
    }

    .form-right-column .form-section {
        padding: 20px 24px;
    }

    .filters-row .sort-controls {
        gap: 10px;
    }

    .filter-group .form-select,
    .filter-group .form-control {
        min-width: 100px;
    }

    .filter-group.search-group {
        max-width: 200px;
    }

    #listingsColumn.full-width .listings-wrapper .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .listings-wrapper.list-view .listing-image-wrapper {
        flex: 0 0 180px;
        height: 140px;
    }
}

@media (max-width: 767px) {
    .add-service-page {
        padding: 70px 15px;
    }

    .sticky-sidebar {
        padding: 20px;
    }

    .category-selector {
        grid-template-columns: repeat(3, 1fr);
    }

    .tips-section {
        margin: 0 -20px -20px;
        padding: 16px 20px;
    }

    .form-header {
        padding: 20px;
    }

    .form-header::after {
        left: 20px;
    }

    .form-header h1 {
        font-size: 1.25rem;
    }

    .form-right-column .form-section {
        padding: 20px;
    }

    .form-grid,
    .form-grid.cols-2 {
        grid-template-columns: 1fr;
    }

    .form-group.span-2 {
        grid-column: span 1;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .days-selector {
        gap: 6px;
    }

    .day-checkbox {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    /* List page header */
    .listPage .listings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .listPage .header-actions {
        width: 100%;
    }

    .listPage .btn-add-service {
        width: 100%;
        justify-content: center;
    }

    .filters-row .sort-controls {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-group {
        flex: 1;
        min-width: calc(50% - 5px);
    }

    .filter-group.search-group {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .filter-group label {
        min-width: auto;
    }

    .filter-group .form-select,
    .filter-group .form-control {
        width: 100%;
        min-width: auto;
    }

    .view-toggle {
        order: 10;
    }

    .filters-row .map-toggle {
        order: 11;
    }

    #listingsColumn.full-width .listings-wrapper .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* List view mobile */
    .listings-wrapper.list-view .listing-card {
        flex-direction: column;
    }

    .listings-wrapper.list-view .listing-card-content {
        flex-direction: column;
    }

    .listings-wrapper.list-view .listing-image-wrapper {
        flex: none;
        width: 100%;
        height: 180px;
    }

    .listings-wrapper.list-view .listing-info {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .category-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    #listingsColumn.full-width .listings-wrapper .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .filter-group {
        min-width: 100%;
    }

    .view-toggle,
    .filters-row .map-toggle {
        flex: 0 0 auto;
        min-width: auto;
    }
}

/* ============================================
   OTHER LISTINGS SECTION
   ============================================ */

.other-listings-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.other-listings-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.other-listings-section .section-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.other-listings-section .view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #526432;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.other-listings-section .view-all-link:hover {
    color: #e6f972;
    gap: 10px;
}

.other-listings-section .view-all-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.other-listings-section .view-all-link:hover i {
    transform: translateX(3px);
}

/* Listing Card Styles */
.other-listings-section .listing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.other-listings-section .listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.other-listings-section .listing-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.other-listings-section .listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.other-listings-section .listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.other-listings-section .listing-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: #526432;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.other-listings-section .listing-content {
    padding: 16px;
}

.other-listings-section .listing-content h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.other-listings-section .listing-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.other-listings-section .listing-location i {
    color: #526432;
    font-size: 0.75rem;
}

.other-listings-section .listing-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
}

.other-listings-section .listing-rating i {
    color: #fbbf24;
}

.other-listings-section .listing-rating span {
    font-weight: 600;
    color: #1a1a1a;
}

.other-listings-section .listing-rating .reviews {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 991px) {
    .other-listings-section {
        padding: 50px 0;
    }

    .other-listings-section .section-header h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .other-listings-section {
        padding: 40px 0;
    }

    .other-listings-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .other-listings-section .listing-image {
        height: 160px;
    }
}

/* ============================================
   MASKED CONTACT INFO - LOGIN TO UNLOCK
   Same style as lost-pet-details.html
   ============================================ */

/* Locked Info Container */
.locked-info {
    flex-wrap: wrap;
}

/* Login Unlock Button - matches lost-pet-details */
.login-unlock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff3e0 !important;
    color: #e65100 !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600 !important;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s;
    text-decoration: none;
}


.login-unlock:hover {
    background: #ffe0b2;
    color: #e65100;
}

.login-unlock i {
    font-size: 0.75rem !important;
    margin-top: 0px !important;
}

/* Masked value display */
.masked-value {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #888;
    letter-spacing: 0.5px;
}

/* Contact item layouts */
.contact-masked {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* For detail-item structure (clinic-details) */
.detail-item.masked {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.detail-item.masked span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* For contact-item structure (creche-details) */
.contact-item.masked .contact-text p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

/* Info item structure (grooming/trainer) */
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    flex-wrap: wrap;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #555;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 767px) {
    .login-unlock {
        margin-left: 0;
        margin-top: 5px;
    }

    .contact-masked {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ============================================
   MODERN FOOTER REDESIGN
   ============================================ */

.modern-footer {
    background: #526432;
    color: #fff;
    padding: 0;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand img {
    max-height: 50px;
    margin-bottom: 15px;
    filter: invert(1) brightness(10);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e6f972;
    color: #526432;
    transform: translateY(-3px);
}

.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #e6f972;
}

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

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: #e6f972;
    padding-left: 5px;
}

.footer-links-list a i {
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links-list a:hover i {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: #e6f972;
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #e6f972;
}

/* Newsletter */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 12px 20px;
    background: #e6f972;
    color: #526432;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-copyright a {
    color: #e6f972;
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e6f972;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column {
        text-align: center;
    }

    .footer-links-list a {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}
