:root {
    --text-1: #fff;
    --text-2: #C90F16;
    --text-3: #060404;
    --text-4: #5A5454;
    --text-5: #142637;
    --text-6: #525455;
    --text-7: #0A0400;
    --text-8: #5F5C5A;
    --text-9: #EC631A;
    --text-10: #01060E;
    --text-11: #5A5A5A;

    --bg-1: #F3F5F7;
    --bg-2: #FAE7E8;
    --bg-3: #FFD028;
    --bg-4: #2C3C4B;
    --bg-5: #E7E9EB;
    --bg-6: #B9BEC3;
    --bg-7: #EE6400;
    --bg-8: #F3E7DE;
    --bg-10: #FDF0E5;
    --bg-11: #0145AC;
    --bg-12: #DBE4F3;
    --bg-13: #E6ECF7;
    --bg-14: #E7ECF3;

    /* Border Colors */
    --border-1: #f0f0f0;
    --border-2: #dfdcdc;
}


.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 140px;
    height: 60px;
}

.logo-text {
    font-family: var(--ztc-family-font1);
    font-size: 24px;
    font-weight: bold;
    color: var(--ztc-text-text-1);
}

/* ========== LOGIN/REGISTER COMPONENT STYLES ========== */

.login-register-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #F3F5F7 0%, #E6ECF7 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-register-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-register-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(20, 38, 55, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    min-height: 700px;
}

.login-register-row {
    display: flex;
    min-height: 700px;
}

/* Form Side Styles */
.login-register-form-side {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.login-register-form-container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.login-register-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-register-form-header h2 {
    color: #142637;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-register-form-header p {
    color: #5A5454;
    font-size: 16px;
}

/* Form Elements */
.modern-form {
    width: 100%;
}

.form-floating-group {
    position: relative;
    margin-bottom: 24px;
}

.form-floating-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 16px;
    color: #060404;
    background: #fff;
    transition: all 0.3s ease;
}

.form-floating-input:focus {
    outline: none;
    border-color: #0145AC;
    box-shadow: 0 0 0 3px rgba(1, 69, 172, 0.1);
}

.form-floating-label {
    position: absolute;
    top: 18px;
    left: 50px;
    color: #5A5454;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-floating-input:focus+.form-floating-label,
.form-floating-input:not(:placeholder-shown)+.form-floating-label {
    top: -10px;
    left: 40px;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    color: #0145AC;
}

.form-floating-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #5A5454;
    font-size: 16px;
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #5A5454;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    z-index: 3;
}

.password-toggle:hover {
    color: #0145AC;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #5A5454;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid #f0f0f0;
    border-radius: 4px;
    position: relative;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #0145AC;
    border-color: #0145AC;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.forgot-link {
    color: #0145AC;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #C90F16;
}

/* Buttons */
.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0145AC 0%, #C90F16 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 69, 172, 0.3);
}

.btn-primary-modern:active {
    transform: translateY(0);
}

.btn-primary-modern i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary-modern:hover i {
    transform: translateX(3px);
}

/* Social Buttons */
.social-login-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    background: #fff;
    color: #142637;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-social i,
.btn-social svg {
    margin-right: 10px;
    font-size: 16px;
}

.google-btn:hover {
    border-color: #4285F4;
    color: #4285F4;
}

.facebook-btn:hover {
    border-color: #1877F2;
    color: #1877F2;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #5A5454;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #f0f0f0;
}

.divider::before {
    margin-right: 16px;
}

.divider::after {
    margin-left: 16px;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 24px;
    color: #5A5454;
    font-size: 14px;
}

.register-link {
    color: #0145AC;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: #C90F16;
}

/* Info Side Styles */
.login-register-info-side {
    flex: 1;
    background: linear-gradient(135deg, #0145AC 0%, #2C3C4B 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.login-register-info-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="20" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.login-register-info-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 400px;
}

/* Info Side Elements */
.login-register-info-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.login-register-info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #FFD028 0%, #EC631A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.login-register-info-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Features List */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.feature-content p {
    font-size: 14px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #FFD028;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    width: 200px;
    height: 200px;
    background: #FFD028;
    top: 10%;
    left: 10%;
}

.floating-element-2 {
    width: 300px;
    height: 300px;
    background: #EC631A;
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.floating-element-3 {
    width: 150px;
    height: 150px;
    background: #0145AC;
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* Modal Styles */
.modern-modal {
    border-radius: 16px;
    border: none;
    box-shadow: 0 25px 50px rgba(20, 38, 55, 0.2);
}

.modern-modal .modal-header {
    border-bottom: none;
    padding: 24px 24px 0;
}

.modern-modal .modal-title {
    font-weight: 600;
    color: #142637;
}

.modern-modal .modal-body {
    padding: 24px;
}

.modern-modal .btn-close {
    box-shadow: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .login-register-card {
        min-height: auto;
    }

    .login-register-row {
        min-height: auto;
        flex-direction: column;
    }

    .login-register-info-side {
        padding: 40px 30px;
        order: -1;
    }

    .login-register-form-side {
        padding: 40px 30px;
    }

    .stats-container {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .mobile-logo {
        width: 80px;
        margin-right: 10px;
    }

    .logos {
        width: 140px;
        height: auto;
        margin-right: 10px;
    }

    .login-register-wrapper {
        padding: 10px;
    }

    .login-register-card {
        border-radius: 16px;
    }

    .login-register-info-side,
    .login-register-form-side {
        padding: 30px 20px;
    }

    .login-register-info-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .login-register-info-title {
        font-size: 24px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animations */
.login-register-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.login-register-slide-in {
    animation: slideIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* service page */
.pagination-area {
    margin-top: 30px;
}

.pagination-area ul {
    text-align: center;
    justify-content: center;
}

.pagination-area ul li {
    display: inline-block;
    margin: 0 8px;
}

.pagination-area ul li a {
    height: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px !important;
    transition: all 0.4s;
    border: none;
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    color: var(--ztc-text-text-3);
    background: var(--ztc-bg-bg-1);
    text-decoration: none;
}

.pagination-area ul li a:hover {
    background: var(--ztc-text-text-2);
    color: var(--ztc-text-text-1);
}

.pagination-area ul li.active a {
    background: var(--ztc-text-text-2) !important;
    color: var(--ztc-text-text-1);
}

.pagination-area ul li.disabled a {
    opacity: 0.6;
    cursor: not-allowed;
}

.service1-section-area .service-auhtor-boxarea {
    position: relative;
    z-index: 1;
    transition: all .4s;
    background: var(--ztc-text-text-1);
    border-radius: 4px;
    margin-bottom: 0;
    height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.181);
    overflow: hidden;
    width: 100%;
}

.service1-section-area .service-auhtor-boxarea .img1 {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 4px 4px 0 0;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.service1-section-area .service-auhtor-boxarea .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}

.service1-section-area .service-auhtor-boxarea .content-area {
    padding: 20px 20px 20px 20px;
    text-align: center;
    position: relative;
    transition: all .4s;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service1-section-area .service-auhtor-boxarea .content-area h3 {
    font-size: var(--ztc-font-size-font-s20);
    font-family: var(--ztc-family-font1);
    color: var(--ztc-text-text-1);
    font-weight: var(--ztc-weight-bold);
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 65px;
    background: var(--ztc-text-text-3);
    border-radius: 50%;
    transition: all .4s;
    margin: 0 auto;
    margin-top: -60px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.service1-section-area .service-auhtor-boxarea .content-area>a {
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s18);
    line-height: var(--ztc-font-size-font-s22);
    display: inline-block;
    color: var(--ztc-text-text-3);
    font-weight: var(--ztc-weight-bold);
    margin-bottom: 10px;
    transition: all .4s;
}

.service1-section-area .service-auhtor-boxarea .content-area p {
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s14);
    line-height: var(--ztc-font-size-font-s20);
    color: var(--ztc-text-text-4);
    font-weight: var(--ztc-weight-medium);
    transition: all .4s;
    /* margin-bottom: 15px; */
    flex-grow: 1;
}

.service1-section-area .service-auhtor-boxarea .content-area a.readmore {
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s14);
    line-height: var(--ztc-font-size-font-s14);
    color: var(--text-1);
    display: inline-block;
    margin-bottom: 0;
    font-weight: var(--ztc-weight-bold);
    background-color: var(--text-2);
    padding: 12px;
    border-radius: 5px;
    transition: all .4s;
}

.service1-section-area .service-auhtor-boxarea .content-area a.readmore i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.service1-section-area .service-auhtor-boxarea:hover .content-area .readmore {
    color: var(--text-3);
    background-color: var(--text-1);
    transition: all .4s
}

/* Left Sidebar Filter Styles */
.filter-sidebar {
    background: var(--ztc-text-text-1);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-1);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.filter-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-1);
}

.filter-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-3);
    margin: 0 0 15px 0;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 6px;
    border: 1px solid var(--border-1);
    font-size: 15px;
    color: var(--text-3);
    background: var(--ztc-bg-bg-1);
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.search-box input:focus {
    border-color: var(--text-2);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 15, 22, 0.1);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-4);
    font-size: 16px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-3);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.filter-group-title i {
    margin-right: 10px;
    color: var(--text-2);
    font-size: 18px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.category-item {
    display: flex;
    align-items: center;
    background: var(--bg-1);
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.2s;
}

.category-item:hover {
    background: var(--bg-2);
}

.category-item input {
    margin-right: 12px;
    accent-color: var(--text-2);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.category-item label {
    color: var(--text-4);
    cursor: pointer;
    transition: all 0.2s;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.category-item input:checked+label {
    color: var(--text-2);
    font-weight: 500;
}

.category-count {
    background: var(--bg-5);
    color: var(--text-3);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 10px;
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.filter-btn {
    background: var(--text-2);
    color: var(--ztc-text-text-1);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.filter-btn:hover {
    background: #a00c12;
    transform: translateY(-1px);
}

.reset-btn {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--text-2);
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reset-btn:hover {
    background: var(--bg-2);
    transform: translateY(-1px);
}

.active-filters {
    margin-bottom: 20px;
}

.filter-tag {
    display: inline-block;
    background: var(--text-2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 2px;
    position: relative;
}

.filter-tag .remove-filter {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
}

.clear-all-filters {
    color: var(--text-2);
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    margin-left: 10px;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.services-content {
    background: var(--ztc-bg-bg-1);
    padding: 30px;
    border-radius: 8px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-1);
}

.results-count {
    font-size: 16px;
    color: var(--text-4);
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--ztc-text-text-1);
    border-radius: 8px;
    margin: 20px 0;
}

.no-results i {
    font-size: 64px;
    color: var(--text-4);
    margin-bottom: 20px;
}

.no-results h4 {
    color: var(--text-3);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-4);
    margin-bottom: 0;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}
.service1-section-area .service-auhtor-boxarea:hover .img1 img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Service meta (category and price) hover styles */
.service1-section-area .service-auhtor-boxarea:hover .service-meta small {
    color: rgba(255, 255, 255, 0.8) !important;
}

.service1-section-area .service-auhtor-boxarea:hover .service-meta small i {
    color: var(--ztc-text-text-1);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .filter-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service1-section-area .service-auhtor-boxarea {
        height: 380px;
    }

    .service1-section-area .service-auhtor-boxarea .img1 {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .mobile-logo {
        width: 80px;
        margin-right: 10px;
    }

    .logos {
        width: 140px;
        height: auto;
        margin-right: 10px;
    }

    .filter-header {
        text-align: center;
    }

    .filter-actions {
        flex-direction: row;
        justify-content: space-between;
    }

    .filter-btn,
    .reset-btn {
        flex: 1;
    }

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

    .service1-section-area .service-auhtor-boxarea {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }

    .service1-section-area .service-auhtor-boxarea .img1 {
        height: 160px;
    }
}


/* service details page */
.service-details {
    --primary-color: var(--text-2);
    --success-color: var(--text-9);
    --warning-color: var(--bg-7);
    --info-color: var(--bg-11);
    --dark-color: var(--text-5);
}

/* Hero Area */
.service-details .service-hero-icon {
    color: var(--text-2);
    animation: service-details-pulse 2s infinite;
}

@keyframes service-details-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Cards */
.service-details .card {
    transition: all 0.3s ease;
    border: none !important;
    background-color: var(--bg-1);
}

.service-details .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Card Headers */
.service-details .quick-info-header,
.service-details .business-hours-header,
.service-details .contact-info-header {
    background-color: var(--text-5);
    color: var(--text-1);
}

/* Icons */
.service-details .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-details .price-icon {
    background-color: rgba(236, 99, 26, 0.1);
}

.service-details .price-icon i {
    color: var(--text-9);
}

.service-details .category-icon {
    background-color: rgba(1, 69, 172, 0.1);
}

.service-details .category-icon i {
    color: var(--bg-11);
}

.service-details .provider-icon {
    background-color: rgba(238, 100, 0, 0.1);
}

.service-details .provider-icon i {
    color: var(--bg-7);
}

/* Business Hours */
.service-details .weekday-dot {
    font-size: 0.5rem;
    color: var(--text-9);
}

.service-details .weekend-dot {
    font-size: 0.5rem;
    color: var(--text-2);
}

/* Contact Info Icons */
.service-details .address-icon {
    background-color: rgba(201, 15, 22, 0.1);
}

.service-details .address-icon i {
    color: var(--text-2);
}

.service-details .phone-icon {
    background-color: rgba(236, 99, 26, 0.1);
}

.service-details .phone-icon i {
    color: var(--text-9);
}

.service-details .website-icon {
    background-color: rgba(1, 69, 172, 0.1);
}

.service-details .website-icon i {
    color: var(--bg-11);
}

.service-details .email-icon {
    background-color: rgba(238, 100, 0, 0.1);
}

.service-details .email-icon i {
    color: var(--bg-7);
}

/* Service Image */
.service-details .service-image {
    height: 350px;
    object-fit: cover;
}

.service-details .service-image-overlay {
    background-color: rgba(0, 0, 0, 0.25);
}

.service-details .service-image-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.service-details .service-image-icon i {
    color: white;
}

/* Service Icon Large */
.service-details .service-icon-large {
    color: var(--text-2);
    animation: service-details-float 3s ease-in-out infinite;
}

@keyframes service-details-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Service Detail Cards */
.service-details .service-detail-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background-color: var(--bg-1);
}

.service-details .service-detail-card:hover {
    border-color: var(--text-2);
    transform: translateY(-2px);
}

/* Calendar Styles */
.booking-calendar .calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.booking-calendar .calendar-row {
    display: flex;
    justify-content: space-between;
}

.booking-calendar .calendar-cell {
    width: calc(50% / 7);
    padding: 8px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-calendar .weekday-header .calendar-cell {
    color: var(--text-5);
    font-size: 0.8rem;
    padding-bottom: 10px;
}

.booking-calendar .calendar-days .calendar-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-calendar .current-month {
    background-color: var(--bg-1);
    color: var(--text-3);
}

.booking-calendar .other-month {
    background-color: transparent;
    color: var(--text-6);
    opacity: 0.5;
}

.booking-calendar .calendar-cell:hover:not(.weekday-header .calendar-cell) {
    background-color: var(--text-5);
    color: white;
}

.booking-calendar .today {
    background-color: var(--text-2);
    color: white;
    font-weight: bold;
}

.booking-calendar .selected {
    background-color: var(--text-5);
    color: white;
    font-weight: bold;
}

/* Date Selection */
.calendar-cell.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    background-color: #f8f9fa !important;
    color: #6c757d !important;
}

/* Modal Styles */
#bookingModal .modal-content {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: visible;
}

#bookingModal .modal-dialog {
    overflow: visible;
}

#bookingModal .modal-header {
    padding: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    color: white;
}

#bookingModal .modal-body {
    background-color: #fff;
    padding-bottom: 2rem;
    overflow: visible;
    position: relative;
}

#bookingModal .btn-primary {
    background-color: #2c3e50;
    border-color: #2c3e50;
    transition: all 0.3s;
}

#bookingModal .btn-primary:hover {
    background-color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.2);
}

#selectedDateDisplay {
    color: #2c3e50;
    font-weight: 600;
}

/* Time Selection Dropdown Styles */
.time-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.time-select {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: #fff;
    cursor: pointer;
    text-align: left;
    position: relative;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.time-dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    z-index: 1000;
    display: none;
    margin-bottom: 0.25rem;
}

.time-dropdown-menu.show {
    display: block;
}

.time-dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    clear: both;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.time-dropdown-item:hover {
    background-color: #f8f9fa;
}

.time-selection-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    position: relative;
}

.time-separator {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Responsive adjustments for time selection */
@media (max-width: 576px) {
    .time-selection-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .time-separator {
        display: none;
    }
}

/* Breadcrumb Styles */
.service-details .breadcrumb {
    background-color: transparent !important;
}

.service-details .breadcrumb-item a {
    color: white !important;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.service-details .breadcrumb-item a:hover {
    opacity: 1;
    text-decoration: none;
}

.service-details .breadcrumb-item.active {
    color: white !important;
    opacity: 1;
}

.service-details .breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
    opacity: 0.6;
}

/* Success Modal Styles */
.service-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-details-modal.show {
    opacity: 1;
    visibility: visible;
}

.service-details-modal-dialog {
    width: 100%;
    max-width: 500px;
    padding: 0 15px;
}

.service-details-modal-content {
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-details-modal.show .service-details-modal-content {
    transform: scale(1);
    opacity: 1;
}

.service-details-modal-body {
    padding: 40px;
    text-align: center;
}

/* Success Animation Elements */
.service-details-checkmark-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.service-details-checkmark-svg {
    width: 100%;
    height: 100%;
}

.service-details-checkmark-circle-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 8;
}

.service-details-checkmark-circle-fill {
    fill: none;
    stroke: var(--text-2);
    stroke-width: 8;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: serviceDetailsCircleFill 0.8s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.service-details-checkmark-path {
    transform-origin: 50% 50%;
    stroke-dasharray: 70;
    stroke-dashoffset: 70;
    stroke: var(--text-2);
    stroke-width: 8;
    stroke-linecap: round;
    animation: serviceDetailsCheckmarkDraw 0.6s 0.5s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

/* Text Styles */
.service-details-modal-title {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-details-modal-message {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Animations */
@keyframes serviceDetailsCircleFill {
    0% {
        stroke-dashoffset: 283;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes serviceDetailsCheckmarkDraw {
    0% {
        stroke-dashoffset: 70;
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        stroke-dashoffset: 0;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .service-details-modal-body {
        padding: 1.5rem;
    }

    .service-details-checkmark-container {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .service-details-modal-title {
        font-size: 1.5rem;
    }

    .service-details-modal-message {
        font-size: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-details .display-4 {
        font-size: 2rem;
    }

    .service-details .card-body {
        padding: 1.5rem !important;
    }

    .service-details .service-detail-card {
        margin-bottom: 1rem;
    }
}

/* product details page */

/* Hero Area */
.product-details-hero .hero-heading-area {
    position: relative;
    z-index: 2;
}

/* Cards */
.product-details .card {
    transition: all 0.3s ease;
    border: none !important;
    background-color: var(--light-color);
}

.product-details .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

/* Card Headers */
.product-details-quick-info-header,
.product-details-provider-header,
.product-details-details-header {
    background-color: var(--text-5);
    color: white;
}

/* Icons */
.product-details .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-details-price-icon {
    background-color: rgba(40, 167, 69, 0.1);
}

.product-details-price-icon i {
    color: var(--text-5);
}

.product-details-type-icon {
    background-color: rgba(23, 162, 184, 0.1);
}

.product-details-type-icon i {
    color: var(--info-color);
}

.product-details-provider-icon {
    background-color: rgba(220, 53, 69, 0.1);
}

.product-details-provider-icon i {
    color: var(--text-2);
}

/* Provider Info Icons */
.product-details-provider-name-icon {
    background-color: rgba(44, 62, 80, 0.1);
}

.product-details-provider-name-icon i {
    color: var(--text-5);
}

.product-details-provider-email-icon {
    background-color: rgba(255, 193, 7, 0.1);
}

.product-details-provider-email-icon i {
    color: var(--warning-color);
}

.product-details-provider-referral-icon {
    background-color: rgba(26, 26, 46, 0.1);
}

.product-details-provider-referral-icon i {
    color: var(--secondary-color);
}

/* Product Image */
.product-details-image-container {
    height: 350px;
    overflow: hidden;
}

.product-details-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-details-image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.product-details-image-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Product Icon Large */
.product-details-icon-large {
    color: var(--text-5);
    animation: product-details-float 3s ease-in-out infinite;
}

@keyframes product-details-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Product Detail Cards */
.product-details-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background-color: var(--light-color);
}

.product-details-card:hover {
    border-color: var(--text-5);
    transform: translateY(-2px);
}

/* Type Card */
.product-details-type-card:hover {
    border-color: var(--info-color);
}

/* Price Card */
.product-details-price-card:hover {
    border-color: var(--success-color);
}

/* Model Card */
.product-details-model-card:hover {
    border-color: var(--warning-color);
}

/* Provider Card */
.product-details-provider-card:hover {
    border-color: var(--text-2);
}

/* Description Section */
.product-details-description-icon {
    background-color: rgba(44, 62, 80, 0.1);
}

.product-details-description-icon i {
    color: var(--text-5);
}

.description-content {
    background-color: var(--light-color);
    border-left: 4px solid var(--text-5);
}

/* CTA Button */
.product-details-cta-button {
    background-color: var(--text-5);
    color: white;
    transition: all 0.3s;
}

.product-details-cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.2);
}

/* Breadcrumb Styles */
.product-details-hero .breadcrumb {
    background-color: transparent !important;
}

.product-details-hero .breadcrumb-item a {
    color: white !important;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.product-details-hero .breadcrumb-item a:hover {
    opacity: 1;
    text-decoration: none;
}

.product-details-hero .breadcrumb-item.active {
    color: white !important;
    opacity: 1;
}

.product-details-hero .breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
    opacity: 0.6;
}

/* Purchase Modal Styles */
.product-details-purchase-modal .modal-content {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.product-details-modal-header {
    background-color: var(--text-5);
    color: white;
    border-bottom: none;
}

.product-details-form-control {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.product-details-form-control:focus {
    border-color: var(--text-5);
    box-shadow: 0 0 0 0.25rem rgba(44, 62, 80, 0.25);
}

.product-details-form-check .form-check-input {
    margin-top: 0.2em;
}

.product-details-form-check .form-check-input:checked {
    background-color: var(--text-5);
    border-color: var(--text-5);
}

.product-details-modal-cancel-btn {
    background-color: var(--text-2);
    color: var(--text-1);
    border: 1px solid var(--text-2);
}

.product-details-modal-cancel-btn:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--text-2);
    color: var(--text-2);
    transform: translateY(-1px);
}

.product-details-modal-confirm-btn {
    background-color: var(--text-5);
    color: white;
    border: none;
}

.product-details-modal-confirm-btn:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--text-5);
    color: var(--text-5);
    transform: translateY(-1px);
}

/* Contact Us Page Specific Styles */
.contact-us-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-us-modal.show {
    opacity: 1;
    visibility: visible;
}

.contact-us-modal-dialog {
    width: 100%;
    max-width: 500px;
    padding: 0 15px;
}

.contact-us-modal-content {
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-us-modal.show .contact-us-modal-content {
    transform: scale(1);
    opacity: 1;
}

.contact-us-modal-body {
    padding: 40px;
    text-align: center;
}

/* Success Animation Elements */
.contact-us-checkmark-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.contact-us-checkmark-svg {
    width: 100%;
    height: 100%;
}

.contact-us-checkmark-circle-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 8;
}

.contact-us-checkmark-circle-fill {
    fill: none;
    stroke: var(--text-2);
    stroke-width: 8;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: contactUsCircleFill 0.8s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.contact-us-checkmark-path {
    transform-origin: 50% 50%;
    stroke-dasharray: 70;
    stroke-dashoffset: 70;
    stroke: var(--text-2);
    stroke-width: 8;
    stroke-linecap: round;
    animation: contactUsCheckmarkDraw 0.6s 0.5s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

/* Text Styles */
.contact-us-modal-title {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-us-modal-message {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* service page */
.pagination-area {
    margin-top: 30px;
}

.pagination-area ul {
    text-align: center;
    justify-content: center;
}

.pagination-area ul li {
    display: inline-block;
    margin: 0 8px;
}

.pagination-area ul li a {
    height: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px !important;
    transition: all 0.4s;
    border: none;
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    color: var(--ztc-text-text-3);
    background: var(--ztc-bg-bg-1);
    text-decoration: none;
}

.pagination-area ul li a:hover {
    background: var(--ztc-text-text-2);
    color: var(--ztc-text-text-1);
}

.pagination-area ul li.active a {
    background: var(--ztc-text-text-2) !important;
    color: var(--ztc-text-text-1);
}

.pagination-area ul li.disabled a {
    opacity: 0.6;
    cursor: not-allowed;
}

/* .service1-section-area .service-auhtor-boxarea {
    position: relative;
    z-index: 1;
    transition: all .4s;
    background: var(--ztc-text-text-1);
    border-radius: 4px;
    margin-bottom: 0;
    height: 400px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service1-section-area .service-auhtor-boxarea .img1 {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 4px 4px 0 0;
    flex-shrink: 0;
}

.service1-section-area .service-auhtor-boxarea .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}

.service1-section-area .service-auhtor-boxarea .content-area {
    padding: 40px 20px 20px 20px;
    text-align: center;
    position: relative;
    transition: all .4s;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service1-section-area .service-auhtor-boxarea .content-area h3 {
    font-size: var(--ztc-font-size-font-s20);
    font-family: var(--ztc-family-font1);
    color: var(--ztc-text-text-1);
    font-weight: var(--ztc-weight-bold);
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: var(--ztc-text-text-3);
    border-radius: 50%;
    transition: all .4s;
    margin: 0 auto;
    margin-top: -70px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service1-section-area .service-auhtor-boxarea .content-area>a {
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s18);
    line-height: var(--ztc-font-size-font-s22);
    display: inline-block;
    color: var(--ztc-text-text-3);
    font-weight: var(--ztc-weight-bold);
    margin-bottom: 10px;
    transition: all .4s;
}

.service1-section-area .service-auhtor-boxarea .content-area p {
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s14);
    line-height: var(--ztc-font-size-font-s20);
    color: var(--ztc-text-text-4);
    font-weight: var(--ztc-weight-medium);
    transition: all .4s;
    flex-grow: 1;
} */

/* .service1-section-area .service-auhtor-boxarea .content-area a.readmore {
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s14);
    line-height: var(--ztc-font-size-font-s14);
    color: var(--ztc-text-text-3);
    display: inline-block;
    margin-bottom: 0;
    font-weight: var(--ztc-weight-bold);
    transition: all .4s;
}

.service1-section-area .service-auhtor-boxarea .content-area a.readmore i {
    margin-left: 4px;
    transform: rotate(-45deg);
} */

/* Left Sidebar Filter Styles */
.filter-sidebar {
    background: var(--ztc-text-text-1);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-1);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.filter-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-1);
}

.filter-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-3);
    margin: 0 0 15px 0;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 6px;
    border: 1px solid var(--border-1);
    font-size: 15px;
    color: var(--text-3);
    background: var(--ztc-bg-bg-1);
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.search-box input:focus {
    border-color: var(--text-2);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 15, 22, 0.1);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-4);
    font-size: 16px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-3);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.filter-group-title i {
    margin-right: 10px;
    color: var(--text-2);
    font-size: 18px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.category-item {
    display: flex;
    align-items: center;
    background: var(--bg-1);
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.2s;
}

.category-item:hover {
    background: var(--bg-2);
}

.category-item input {
    margin-right: 12px;
    accent-color: var(--text-2);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.category-item label {
    color: var(--text-4);
    cursor: pointer;
    transition: all 0.2s;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.category-item input:checked+label {
    color: var(--text-2);
    font-weight: 500;
}

.category-count {
    background: var(--bg-5);
    color: var(--text-3);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 10px;
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.filter-btn {
    background: var(--text-2);
    color: var(--ztc-text-text-1);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.filter-btn:hover {
    background: #a00c12;
    transform: translateY(-1px);
}

.reset-btn {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--text-2);
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reset-btn:hover {
    background: var(--bg-2);
    transform: translateY(-1px);
}

.active-filters {
    margin-bottom: 20px;
}

.filter-tag {
    display: inline-block;
    background: var(--text-2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 2px;
    position: relative;
}

.filter-tag .remove-filter {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
}

.clear-all-filters {
    color: var(--text-2);
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    margin-left: 10px;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.services-content {
    background: var(--ztc-bg-bg-1);
    padding: 30px;
    border-radius: 8px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-1);
}

.results-count {
    font-size: 16px;
    color: var(--text-4);
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--ztc-text-text-1);
    border-radius: 8px;
    margin: 20px 0;
}

.no-results i {
    font-size: 64px;
    color: var(--text-4);
    margin-bottom: 20px;
}

.no-results h4 {
    color: var(--text-3);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-4);
    margin-bottom: 0;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .filter-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service1-section-area .service-auhtor-boxarea {
        height: 380px;
    }

    .service1-section-area .service-auhtor-boxarea .img1 {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .filter-header {
        text-align: center;
    }

    .filter-actions {
        flex-direction: row;
        justify-content: space-between;
    }

    .filter-btn,
    .reset-btn {
        flex: 1;
    }

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

    .service1-section-area .service-auhtor-boxarea {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }

    .service1-section-area .service-auhtor-boxarea .img1 {
        height: 160px;
    }
}

/* Animations */
@keyframes contactUsCircleFill {
    0% {
        stroke-dashoffset: 283;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes contactUsCheckmarkDraw {
    0% {
        stroke-dashoffset: 70;
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        stroke-dashoffset: 0;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .contact-us-modal-body {
        padding: 1.5rem;
    }

    .contact-us-checkmark-container {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .contact-us-modal-title {
        font-size: 1.5rem;
    }

    .contact-us-modal-message {
        font-size: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-details .display-4 {
        font-size: 2rem;
    }

    .product-details .card-body {
        padding: 1.5rem !important;
    }

    .product-details-card {
        margin-bottom: 1rem;
    }

    .product-details-purchase-modal .modal-dialog {
        margin: 0.5rem;
    }

    .product-details-purchase-modal .modal-body {
        padding: 1.5rem;
    }
}