* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    background: #ffffff;
    color: #222;
}

a { 
    text-decoration: none; 
}

.visit-hero {
    margin: 40px ;
    position: relative;
    height: 250px;
    border-radius: 5px;
    overflow: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
}

.visit-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 5px;
    background: linear-gradient(rgba(18, 141, 207, 0.712), rgba(18, 201, 207, 0.705)),url("../assets/image/1765750092.jpg") center/cover no-repeat;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-illustration {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.hero-illustration img {
    height: 115%;
    max-height: 320px;
    width: auto;
    display: block;
    margin-bottom: 0;
    filter: drop-shadow(4px 0 18px rgba(0,0,0,0.15));
}

.visit-hero .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    border-radius: 5px;
    pointer-events: none;
}

.visit-hero .hero-overlay::before {
    content: "";
    position: absolute;
    width: 500px;
     height: 500px;
    border-radius: 50%;
    border: 80px solid rgba(255,255,255,0.05);
    top: -180px; 
    left: -180px;
}

.visit-hero .hero-overlay::after {
    content: "";
    position: absolute;
    width: 380px; 
    height: 380px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.05);
    bottom: -150px; right: -100px;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: right;
    padding: 30px 40px;
    margin-right: 0;
    margin-left: auto;
    max-width: 40%;

}

.hero-content h1 {
    color: white;
    font-size: 25px;
    font-weight: bold;
}

.line {
    width: 160px;
    height: 15px;
    border: 3px solid #ffd166;
    border-color: #ffd166 transparent transparent transparent;
    border-radius: 50%/100% 100% 0 0;
    margin-top: 5px;
    margin-bottom: 20px;
    transform: scaleX(-1);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto;
}

.visit-main {
    margin:  0 70px;
}

.filter-section {
    border: 1.5px solid #e0ecf8;
    margin-bottom: 20px;
}


.visit-type-tabs {
    display: flex;
    justify-content: center;
    align-items: center;

}

.visit-type-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: none ;
    background: #ffffff;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.visit-type-btn i { 
    font-size: 15px; 
}

.visit-type-btn:hover {
    border-color: #128CCF;
    color: #128CCF;
    background: #edf6ff;
}

.visit-type-btn.active {
    background: #128CCF;
    border-color: #128CCF;
    color: #fff;
    box-shadow: 0 4px 14px rgba(18,140,207,0.3);
}

.filter-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    padding: 30px 100px;
}

.filter-item label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.filter-item label i {
    color: #128CCF;
    margin-left: 5px;
}


.filter-item input[type="text"],
.filter-item input[type="email"] {
    width: 250px;
    padding: 8px 20px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 13px;
    background: #fdfdfd;
    transition: 0.3s;
}

.filter-item input[type="text"]:focus,
.filter-item input[type="email"]:focus {
    border-color: #128CCF;
    box-shadow: 0 0 0 3px rgba(18,140,207,0.1);
    background: #fff;
}

.custom-select-wrapper {
    position: relative;
    width: 150px;
    height: 100% !important;
}

.custom-select-wrapper select.custom-select {
    width: 100%;
    height: 100% !important;
    padding: 7px 20px !important;
    border: 1px solid #ddd;
    background: #fdfdfd;
    color: #444;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.custom-select-wrapper select.custom-select:focus {
    border-color: #128CCF;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(18,140,207,0.1);
}


.price-range-wrap {
    height: 100%;
    padding: 8px 20px;

    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-range-wrap input[type="range"] {
    flex: 1;
    accent-color: #128CCF;
    cursor: pointer;
    height: 4px;
}

#priceLabel {
    font-size: 13px;
    color: #128CCF;
    font-weight: 700;
    white-space: nowrap;
}

.filter-reset-wrap {
    display: flex;
    align-items: flex-end;
}

.reset-btn {
    padding: 8px 20px;
    border: none;
    background: #fff;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.reset-btn:hover {
    border-color: #128CCF;
    color: #128CCF;
}

.results-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.results-count {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.results-count span {
    color: #128CCF;
    font-weight: 700;
    font-size: 15px;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.provider-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    animation: cardIn 0.4s ease both;
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(18,140,207,0.14);
}

.provider-img {
    position: relative;
    padding: 20px;
    border-radius: 5px;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.provider-img img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s;
}


.provider-rating-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #fff8e1;
    color: #e6a817;
    border: 1.5px solid #fde08a;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.provider-card-body {
    padding: 14px 16px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.provider-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a2a3a;
    line-height: 1.3;
    text-align: center;

}

.provider-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #128CCF;
    font-weight: 600;
}

.provider-spec i { 
    font-size: 12px; 
}

.provider-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #444;
    font-weight: 600;
}

.provider-price i { 
    color: #128CCF; 
    font-size: 12px; 
}

.provider-price span {
    color: #128CCF;
    font-weight: 800;
    font-size: 14px;
}

.provider-card-footer {
    padding: 0 16px 16px;
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.more-btn {
    flex: 1;
    padding: 8px;
    color: #128CCF;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.more-btn:hover {
    text-decoration: underline;
}

.book-btn {
    flex: 1;
    padding: 8px;
    border-radius: 28px;
    border: none;
    background: #128CCF;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn:hover {
    background: #0f76b3;
}


.empty-state {
    text-align: center;
    padding: 80px 20px;
    display: none;
}

.empty-state.show { 
    display: block; 
}

.empty-state i {
    font-size: 52px;
    color: #d0e8f8;
    margin-bottom: 14px;
    display: block;
}

.empty-state h3 {
    font-size: 18px;
    color: #888;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: #bbb;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.overlay.open {
    display: flex;
}

.booking-modal {
    background: #fff;
    border-radius: 5px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    animation: modalIn 0.25s ease;
    scrollbar-width: thin;
    scrollbar-color: #128CCF transparent;
}

@keyframes modalIn {
    from { transform: scale(0.95) translateY(20px); opacity: 0; }
    to   { transform: scale(1) translateY(0);       opacity: 1; }
}

.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    border-bottom: 1px solid #eef2f7;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.booking-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #128CCF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-close-btn {
    width: 30px; 
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f0f4f8;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.booking-close-btn:hover {
    background: #fde8e8;
    color: #e53838;
}

.booking-provider-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid #eef2f7;
    

}

.booking-provider-img {
    width: 70px; 
    height: 70px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e8f4fd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.booking-provider-img img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
}

.booking-provider-name {
    font-size: 14px;
    font-weight: 700;
    color: #128CCF;
}

.booking-provider-spec,.booking-provider-price {
    font-size: 12px;
    color: #aaa;
    font-weight: 600;
    margin-top: 2px;
}

#bookingForm {
    padding: 20px 24px;
}

.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
    background: #fafafa;
}

.input-group input[type="datetime-local"] {
    direction: ltr;
    text-align: right;
}

.input-group textarea {
    resize: none;
    height: 90px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #128CCF;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(18,140,207,0.1);
}

.double-input {
    display: flex;
    gap: 16px;
}

.double-input .input-group {
    flex: 1;
}

.file-upload {
    display: block;
    align-self: center;
    text-align: center;
    padding: 7px;
    border: 2px dashed #ddd;
    border-radius: 12px;
    cursor: pointer;
    color: #666;
    font-size: 13px;
    transition: 0.3s;
    background: #fafafa;
}

.file-upload:hover {
    border-color: #128CCF;
    color: #128CCF;
    background: #f0f8ff;
}

.file-upload label {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-form-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.submit-btn {
    flex: 1;
    padding: 8px 20px;
    border: none;
    border-radius: 28px;
    background: #128CCF;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: #0f76b3;
    box-shadow: 0 5px 15px rgba(18,140,207,0.3);
}

.register-link {
    padding: 10px 20px;
    color: #128CCF;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    white-space: nowrap;
}

.register-link:hover {
    text-decoration: underline;
}

.success-modal {
    background: #fff;
    border-radius: 5px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    animation: modalIn 0.3s ease;
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 10px;
}

.success-modal h2 {
    font-size: 18px;
    color: #128CCF;
    margin-bottom: 10px;
}

.success-modal p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 50px 0 20px;
}

.page-btn {
    width: 38px; 
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #dce8f5;
    background: #fff;
    color: #555;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
     align-items: center; 
     justify-content: center;
    transition: all 0.2s;
}
.page-btn:hover { 
    border-color: 
    #128CCF; color: #128CCF; 
}
.page-btn.active {
    background: #128CCF;
    border-color: #128CCF;
    color: #fff;
    box-shadow: 0 4px 12px rgba(18,140,207,0.3);
}
.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.page-btn.arrow { 
    font-size: 13px; 
}




body.dark-mode {
    background: #111113;
    color: #e0e0e0;
}
 
body.dark-mode html {
    background: #111113;
}
 
body.dark-mode .visit-main {
    background: #111113;
}
 
body.dark-mode .filter-section {
    background: #16213e;
    border-color: #1a4a8a;
}
 
body.dark-mode .visit-type-btn {
    background: #16213e;
    color: #aaa;
    border-color: #1a4a8a;
}
 
body.dark-mode .visit-type-btn:hover {
    background: #0f3460;
    color: #84ccf3;
}
 
body.dark-mode .visit-type-btn.active {
    background: #128CCF;
    color: #fff;
}
 
body.dark-mode .filter-item label {
    color: #aaa;
}
 
body.dark-mode .filter-item input[type="text"],
body.dark-mode .filter-item input[type="email"] {
    background: #0f3460;
    border-color: #1a4a8a;
    color: #e0e0e0;
}
 
body.dark-mode .filter-item input[type="text"]::placeholder,
body.dark-mode .filter-item input[type="email"]::placeholder {
    color: #666;
}
 
body.dark-mode .filter-item input[type="text"]:focus,
body.dark-mode .filter-item input[type="email"]:focus {
    border-color: #84ccf3;
    box-shadow: 0 0 0 3px rgba(132,204,243,0.1);
}
 
body.dark-mode .custom-select-wrapper select.custom-select {
    background: #0f3460;
    border-color: #1a4a8a;
    color: #e0e0e0;
}
 
body.dark-mode .custom-select-wrapper select.custom-select:focus {
    border-color: #84ccf3;
    box-shadow: 0 0 0 3px rgba(132,204,243,0.1);
}
 
body.dark-mode .custom-select-wrapper .dropdown-icon {
    color: #555;
}
 
body.dark-mode .price-range-wrap {
    background: #0f3460;
    border-color: #1a4a8a;
}
 
body.dark-mode #priceLabel {
    color: #84ccf3;
}
 
body.dark-mode .reset-btn {
    background: #16213e;
    color: #888;
    border-color: #1a4a8a;
}
 
body.dark-mode .reset-btn:hover {
    color: #84ccf3;
    border-color: #84ccf3;
}
 
body.dark-mode .results-count {
    color: #888;
}
 
body.dark-mode .results-count span {
    color: #84ccf3;
}
 
body.dark-mode .provider-card {
    background: #16213e;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
 
body.dark-mode .provider-card:hover {
    box-shadow: 0 12px 35px rgba(18,140,207,0.2);
}
 
body.dark-mode .provider-name {
    color: #e0e0e0;
}
 
body.dark-mode .provider-price {
    color: #aaa;
}
 
body.dark-mode .provider-price span {
    color: #84ccf3;
}
 
body.dark-mode .more-btn {
    color: #84ccf3;
}
 
body.dark-mode .booking-modal {
    background: #16213e;
}
 
body.dark-mode .booking-modal-header {
    background: #16213e;
    border-color: #1a4a8a;
}
 
body.dark-mode .booking-modal-title {
    color: #84ccf3;
}
 
body.dark-mode .booking-close-btn {
    background: #0f3460;
    color: #aaa;
}
 
body.dark-mode .booking-close-btn:hover {
    background: #3d1515;
    color: #ff6b6b;
}
 
body.dark-mode .booking-provider-info {
    border-color: #1a4a8a;
}
 
body.dark-mode .booking-provider-name {
    color: #84ccf3;
}
 
body.dark-mode .booking-provider-spec {
    color: #aaa;
}
 
body.dark-mode .input-group label {
    color: #aaa;
}
body.dark-mode .input-group input,
body.dark-mode .input-group textarea {
    background: #0f3460;
    border-color: #1a4a8a;
    color: #e0e0e0;
}
 
body.dark-mode .input-group input::placeholder,
body.dark-mode .input-group textarea::placeholder {
    color: #555;
}
 
body.dark-mode .input-group input:focus,
body.dark-mode .input-group textarea:focus {
    border-color: #84ccf3;
    background: #0a2a50;
    box-shadow: 0 0 0 4px rgba(132,204,243,0.1);
}
 
body.dark-mode .file-upload {
    background: #0f3460;
    border-color: #1a4a8a;
    color: #888;
}
 
body.dark-mode .file-upload:hover {
    border-color: #84ccf3;
    color: #84ccf3;
    background: #0a2a50;
}
 
body.dark-mode .register-link {
    color: #84ccf3;
}
 
body.dark-mode .success-modal {
    background: #16213e;
}
 
body.dark-mode .success-modal h2 {
    color: #84ccf3;
}
 
body.dark-mode .success-modal p {
    color: #aaa;
}
 
body.dark-mode .page-btn {
    background: #16213e;
    border-color: #1a4a8a;
    color: #aaa;
}
 
body.dark-mode .page-btn:hover {
    border-color: #84ccf3;
    color: #84ccf3;
}
 
body.dark-mode .page-btn.active {
    background: #128CCF;
    border-color: #128CCF;
    color: #fff;
}
 
body.dark-mode .empty-state h3 {
    color: #aaa;
}
 
body.dark-mode .empty-state p {
    color: #666;
}
 
body.dark-mode .empty-state i {
    color: #1a4a8a;
}

@media (max-width: 1024px) {
    .visit-main {
        margin: 0 30px;
    }
 
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
 
    .filter-grid {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
    }
 
    .filter-item input[type="text"],
    .filter-item input[type="email"] {
        width: 200px;
    }

    .custom-select-wrapper {
        width: 160px;
    }

    .price-range-wrap {
        width: 200px;
    }

    .hero-illustration img {
        height: 100%;
        max-height: 300px;
    }

    .hero-content {
        max-width: 40%;
    }
}
 
@media (max-width: 768px) {
 
    .visit-hero {
        margin: 15px;
        height: auto;
        min-height: 220px;
        padding: 35px 20px;
    }

    .hero-illustration {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        padding: 25px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-badges {
        gap: 8px;
    }
 
    .hero-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
 
    .visit-main {
        margin: 0 15px;
    }
 
    .visit-type-tabs {
        flex-wrap: wrap;
    }
 
    .visit-type-btn {
        flex: 1;
        min-width: 120px;
        padding: 10px 14px;
        font-size: 13px;
    }
 
    .filter-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
    }
 
    .filter-item input[type="text"],
    .filter-item input[type="email"] {
        width: 100%;
        box-sizing: border-box;
    }
 
    .custom-select-wrapper {
        width: 100%;
    }
 
    .price-range-wrap {
        width: 100%;
        box-sizing: border-box;
    }
 
    .filter-reset-wrap {
        align-items: stretch;
    }
 
    .reset-btn {
        width: 100%;
        justify-content: center;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 10px;
    }
 
    body.dark-mode .reset-btn {
        border-color: #1a4a8a;
    }
 
    .results-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
 
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
 
    .provider-card-img {
        height: 200px;
    }
 
    .booking-modal {
        max-width: 95vw;
        max-height: 95vh;
    }
 
    .double-input {
        flex-direction: column;
        gap: 0;
    }
 
    .booking-form-footer {
        flex-direction: column;
        gap: 10px;
    }
 
    .register-link {
        text-align: center;
        font-size: 12px;
        white-space: normal;
    }
 
    .pagination-wrap {
        padding: 30px 0 15px;
        gap: 6px;
    }
 
    .page-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
 
@media (max-width: 480px) {
 
    .visit-hero {
        margin: 10px;
        padding: 30px 15px;
        border-radius: 5px;
    }
 
    .hero-content h1 {
        font-size: 18px;
    }
 
    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero-content p {
        font-size: 13px;
    }

    .visit-main {
        margin: 0 10px;
    }
 
    .visit-type-btn {
        font-size: 12px;
        padding: 9px 10px;
        gap: 5px;
    }
 
    .filter-grid {
        padding: 12px;
        gap: 12px;
    }
 
    .filter-item label {
        font-size: 12px;
    }
 
    .filter-item input[type="text"],
    .filter-item input[type="email"],
    .custom-select-wrapper select.custom-select {
        font-size: 12px;
        padding: 8px 14px;
    }
 
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
 
    .provider-card-img {
        height: 220px;
    }
 
    .provider-card-body {
        padding: 12px 14px 8px;
    }
 
    .provider-name {
        font-size: 14px;
    }
 
    .provider-card-footer {
        padding: 0 14px 14px;
        gap: 8px;
    }
 
    .book-btn,
    .more-btn {
        font-size: 12px;
        padding: 8px;
    }
 
    .booking-modal {
        max-width: 100vw;
        border-radius: 5px 5px 0 0;
        max-height: 95vh;
    }
 
    .booking-modal-header {
        padding: 12px 16px;
    }
 
    .booking-modal-title {
        font-size: 14px;
    }
 
    .booking-doctor-info {
        padding: 12px 16px;
        gap: 10px;
    }
 
    .booking-doc-img {
        width: 55px;
        height: 55px;
    }
 
    .booking-doc-name {
        font-size: 13px;
    }
 
    .booking-doc-spec {
        font-size: 11px;
    }
 
    #bookingForm {
        padding: 14px 16px;
    }
 
    .input-group label {
        font-size: 12px;
    }
 
    .input-group input,
    .input-group textarea {
        font-size: 13px;
        padding: 8px 10px;
    }
 
    .submit-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
 
    .success-modal {
        max-width: 90vw;
        padding: 25px 16px;
    }
 
    .success-icon {
        font-size: 48px;
    }
 
    .success-modal h2 {
        font-size: 18px !important;
    }
 
    .success-modal p {
        font-size: 13px;
    }
 
    .pagination-wrap {
        padding: 25px 0 10px;
        gap: 5px;
    }
 
    .page-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
 
    .results-count {
        font-size: 13px;
    }
 
    .empty-state i {
        font-size: 40px;
    }
 
    .empty-state h3 {
        font-size: 16px;
    }
 
    .empty-state p {
        font-size: 13px;
    }
}