

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg);
            min-height: 100vh;
        }

        /* ===== NAVBAR ===== */
        .simple-navbar-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 50px;
            background: #fff;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 12px rgba(80, 70, 180, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: simpleNavDrop 0.6s ease;
            transition: all 0.3s ease;
        }

        .simple-navbar-wrapper.scrolled-state {
            padding: 12px 50px;
            box-shadow: 0 4px 24px rgba(80, 70, 180, 0.12);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        @keyframes simpleNavDrop {
            from {
                transform: translateY(-16px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            text-decoration: none;
        }

        .brand-logo-img {
            height: 44px;
            width: auto;
            transition: transform 0.35s ease;
            display: block;
            object-fit: contain;
        }

        .brand-logo:hover .brand-logo-img {
            transform: scale(1.05);
        }

        .action-buttons-group {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .btn-action {
            font-size: 14px;
            font-weight: 600;
            border-radius: 10px;
            padding: 10px 24px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-action i {
            font-size: 1.1rem;
        }

        .btn-share-profile {
            background: #fff;
            color: var(--purple);
            border: 1.5px solid var(--purple);
        }

        .btn-share-profile:hover {
            background: var(--gradient);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(109, 76, 255, 0.3);
            border-color: transparent;
        }

        .btn-download-vcard {
            background: var(--gradient);
            color: #fff;
            box-shadow: 0 4px 16px rgba(108, 76, 241, 0.35);
        }

        .btn-download-vcard:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(108, 76, 241, 0.45);
            background: var(--gradient-hover);
        }

        /* ===== HERO ===== */
        .hero-outer {
            margin: 20px auto;
            padding: 0 16px;
        }

        .container {
            max-width: 1640px;
        }

        .desktop-root-con {
            margin-bottom: -10rem;
        }

 

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .hero-main {
            display: flex;
            flex-direction: column;
            gap: 28px;
            min-width: 0;
        }

        .profile-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            margin-top: 1rem;
        }

        .avatar {
            flex: 0 0 auto;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .info {
            min-width: 0;
            flex: 1 1 240px;
        }

        .info-name-row {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .info-name {
            font-size: clamp(22px, 3.4vw, 32px);
            font-weight: 800;
            letter-spacing: -0.3px;
            color: var(--white);
            margin: 0;
            word-break: break-word;
        }

        .badge-check {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--gradient);
            color: var(--white);
            font-size: 13px;
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .info-category {
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin: 6px 0 0;
        }

        .info-desc {
            max-width: 480px;
            font-size: 14.5px;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.85);
            margin: 12px 0 0;
        }

        .rating-text {
            font-size: 14.5px;
            font-weight: 600;
            color: var(--white);
        }

        .bi-star-fill {
            color: #FBBF24;
            font-size: 15px;
        }

        /* ===== ACTION BAR ===== */
        .action-bar {
            background: var(--white);
            border-radius: 16px;
            padding: 18px 8px;
            box-shadow: 0 15px 35px rgba(20, 20, 40, 0.18);
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap;
            row-gap: 16px;
            max-width: 620px;
            width: 100%;
            margin-top: 4rem;
        }

        .action-item {
            text-decoration: none;
            color: var(--text-dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1 1 18%;
            min-width: 56px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-item:hover {
            color: var(--purple);
            transform: translateY(-2px);
        }

        .action-item.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }

        .action-item.disabled:hover {
            transform: none;
            color: var(--text-dark);
        }

        .action-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg);
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.15s ease;
                /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
        }

        .action-item:hover .action-icon {
            transform: translateY(-3px);
        }

        .action-icon .bi-telephone-fill,
        .action-icon .bi-envelope-fill {
            color: var(--purple);
        }

        .action-icon .bi-whatsapp {
            color: #25D366;
        }

        .action-icon .bi-geo-alt-fill {
            color: #EF4444;
        }

        .action-icon .bi-globe2 {
            color: var(--purple);
        }

        .action-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
        }

        /* ===== QR CARD ===== */
        .qr-card {
            background: var(--white);
            border-radius: 18px;
            padding: 20px 18px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
            width: 100%;
            max-width: 210px;
            margin: 0 auto;
            text-align: center;
        }

        .qr-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 14px;
        }

        .qr-box {
            width: 140px;
            height: 140px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
        }

        .qr-box canvas,
        .qr-box img {
            width: 100% !important;
            height: 100% !important;
            display: block;
        }

        .qr-caption {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            margin: 14px 0 16px;
        }

        .qr-btn {
            width: 100%;
            padding: 11px 0;
            border: none;
            border-radius: 10px;
            background: var(--gradient);
            color: var(--white);
            font-size: 13.5px;
            font-weight: 700;
            transition: background 0.2s ease;
        }

        .qr-btn:hover {
            background: var(--gradient-hover);
            color: var(--white);
        }

        /* ===== RESPONSIVE ===== */
        @media (min-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr 230px;
                align-items: start;
            }

            .qr-card {
                margin: 0;
                max-width: 210px;
                justify-self: end;
            }

            .mobile-cover-wrap {
                display: none !important;
            }
        }

        

        @media (max-width: 380px) {
            .avatar {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 768px) {
            .simple-navbar-wrapper {
                padding: 14px 20px;
            }

            .simple-navbar-wrapper.scrolled-state {
                padding: 10px 20px;
            }

            .brand-logo-img {
                height: 36px;
            }

            .btn-action {
                font-size: 12px;
                padding: 8px 16px;
                border-radius: 8px;
            }

            .btn-action i {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .simple-navbar-wrapper {
                padding: 12px 16px;
            }

            .brand-logo-img {
                height: 18px;
            }

            .action-buttons-group {
                gap: 6px;
            }

            .btn-action {
                font-size: 9px;
                padding: 5px 10px;
                border-radius: 6px;
                gap: 4px;
            }

            .btn-action i {
                font-size: 0.7rem;
            }

            .container {
                padding: 0 0;
            }
   
        }
        @media (max-width: 576px) {
             .contact-about-wrapper {
            padding: 0px 0 !important;
        }
        }

        /* ===== CONTACT & ABOUT ===== */
        .contact-about-wrapper {
            padding: 30px 0;
            background: var(--bg);
        }

        .info-card-block {
            background: var(--white);
            border-radius: 16px;
            padding: 24px 28px;
            margin: 14px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border);
        }

        .info-card-block:last-child {
            margin-bottom: 0;
        }

        .info-heading-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 16px 0;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
            position: relative;
        }

        .info-heading-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .contact-detail-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .contact-detail-item i {
            color: var(--purple);
            font-size: 18px;
            min-width: 22px;
            margin-top: 2px;
        }

        .hours-timing-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .hours-timing-item {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: var(--text-dark);
            padding: 4px 0;
            border-bottom: 1px dashed var(--border);
        }

        .hours-timing-item .day-name {
            font-weight: 500;
        }

        .hours-timing-item .time-range {
            color: var(--text-muted);
        }

        .hours-timing-item .holiday {
            color: #EF4444;
            font-weight: 600;
        }

        .social-icon-group {
            display: flex;
            gap: 14px;
            margin-top: 4px;
            flex-wrap: wrap;
        }

        .social-icon-link {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #fff;
        }

        .social-icon-link.facebook {
            background: #1877F2;
        }

        .social-icon-link.facebook:hover {
            background: #0d65d9;
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(24, 119, 242, 0.4);
        }

        .social-icon-link.instagram {
            background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        .social-icon-link.instagram:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(214, 36, 159, 0.4);
        }

        .social-icon-link.youtube {
            background: #FF0000;
        }

        .social-icon-link.youtube:hover {
            background: #cc0000;
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
        }

        .social-icon-link.linkedin {
            background: #0A66C2;
        }

        .social-icon-link.linkedin:hover {
            background: #004182;
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(10, 102, 194, 0.4);
        }

        .social-icon-link.twitter {
            background: #000000;
        }

        .social-icon-link.twitter:hover {
            background: #1a1a1a;
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        }

        .about-description-text {
            font-size: 14.5px;
            line-height: 1.8;
            color: var(--text-muted);
            margin: 0;
        }

        /* ===== SLIDER ===== */
        .slider-container {
            position: relative;
            padding: 0 48px;
        }

        .product-slider-main,
        .services-slider-main {
            overflow: hidden;
            padding: 8px 4px;
        }

        .product-slide-item,
        .service-slide-item {
            height: auto;
            flex-shrink: 0;
        }

        .product-card-item {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .product-image-wrap {
            width: 100%;
            height: 170px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .product-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card-item:hover .product-image-wrap img {
            transform: scale(1.05);
        }

        .product-name-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin: 12px 14px 4px;
            flex: 1;
        }

        .product-price-text {
            font-size: 15px;
            font-weight: 700;
            color: var(--purple);
            margin: 0 14px 14px;
        }

        .product-price-text .offer {
            text-decoration: line-through;
            color: #999;
            font-size: 13px;
            font-weight: 400;
            margin-left: 8px;
        }

        .service-item-block {
            gap: 12px;
            padding: 16px 18px;
            background: var(--bg);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            height: 100%;
            min-height: 80px;
        }

        .service-item-block:hover {
            background: var(--white);
            border-color: var(--border);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        .service-icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-icon-wrap img {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
        }

        .service-icon-wrap i {
            font-size: 18px;
            color: #fff;
        }

        .service-name-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            padding-top: 1rem;
        }

        .service-desc-text {
            font-size: 12.5px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.4;
            height: 4rem;
        }

        .slider-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--white);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
            border: 1.5px solid var(--border);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--text-dark);
            font-size: 18px;
        }

        .slider-nav-btn:hover {
            background: var(--gradient);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 4px 20px rgba(109, 76, 255, 0.35);
            transform: translateY(-50%) scale(1.05);
        }

        .product-btn-next,
        .services-btn-next {
            right: 0;
        }

        .product-btn-prev,
        .services-btn-prev {
            left: 0;
        }

        .left-column-mobile-wrapper {
            display: none;
        }

        @media (max-width: 991.98px) {
            .left-column-wrapper {
                display: none !important;
            }

            .left-column-mobile-wrapper {
                display: block;
            }

            .hours-timing-list {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 6px 12px;
            }

            .hours-timing-item {
                font-size: 15px;
                flex-direction: column;
                gap: 2px;
                padding: 6px 0;
                border-bottom: none;
            }
        }

        @media (max-width: 767.98px) {
            .info-card-block {
                padding: 18px 16px;
                border-radius: 12px;
            }

            .slider-container {
                padding: 0 36px;
            }

            .slider-nav-btn {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .product-image-wrap {
                height: 140px;
            }

            .service-item-block {
                padding: 12px 14px;
                min-height: 70px;
            }
        }

        @media (max-width: 480px) {
            .info-card-block {
                padding: 14px 12px;
            }

            .slider-container {
                padding: 0 0px;
            }

            .slider-nav-btn {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .product-image-wrap {
                height: 120px;
            }

            .hours-timing-list {
                grid-template-columns: 1fr 1fr;
                gap: 4px 8px;
            }

            .hours-timing-item {
                font-size: 15px !important;
                padding: 0px 0;
            }
            .social-icon-group {
    justify-content: space-between !important;
}
.gallery-subtitle {
    margin-bottom: 0px !important;
}
.gallery-desc {
    margin: 4px auto 0 !important;
}
.gallery-header-premium {
    margin-bottom: 0px !important;
}
.why-choose-header-premium {
    margin-bottom: 10px !important;
}

            .hours-timing-item .day-name {
                font-size: 15px !important;
            }

            .hours-timing-item .time-range {
                font-size: 12px !important;
            }
        }

        /* ===== GALLERY ===== */
        .gallery-wrapper-premium {
            background: var(--gradient);
            position: relative;
            overflow: hidden;
            padding: 40px 0;
        }

        .gallery-header-premium {
            text-align: center;
            margin-bottom: 18px;
        }

        .gallery-subtitle {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--purple);
            text-transform: uppercase;
            letter-spacing: 3px;
            background: rgb(253, 253, 253);
            padding: 4px 18px;
            border-radius: 20px;
            margin-bottom: 12px;
            border: 1px solid rgba(109, 76, 255, 0.18);
        }

        .gallery-title-premium {
            font-size: 36px;
            font-weight: 800;
            color: var(--white);
            margin: 0 0 12px 0;
            position: relative;
            display: inline-block;
        }

        .gallery-title-premium::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .gallery-desc {
            font-size: 15px;
            color: var(--white);
            max-width: 500px;
            margin: 16px auto 0;
            line-height: 1.6;
        }

        .gallery-slider-container-premium {
            position: relative;
        }

        .gallery-slider-main-premium {
            overflow: hidden;
            padding: 8px 4px;
        }

        .gallery-slide-item-premium {
            height: auto;
            flex-shrink: 0;
            width: calc(25% - 18px);
            margin-right: 24px;
        }

        .gallery-image-wrap-premium {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4/3;
            border: 2px solid var(--border);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            background: var(--white);
            box-shadow: 0 2px 10px rgba(29, 36, 51, 0.04);
        }

        .gallery-image-wrap-premium img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s ease;
        }

        .gallery-image-wrap-premium:hover img {
            transform: scale(1.12);
        }

        .gallery-image-overlay-premium {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease;
            border-radius: 16px;
            z-index: 2;
        }

        .gallery-image-wrap-premium:hover .gallery-image-overlay-premium {
            opacity: 0.92;
        }

        .gallery-overlay-content {
            text-align: center;
            transform: translateY(20px) scale(0.9);
            transition: transform 0.5s ease;
        }

        .gallery-image-wrap-premium:hover .gallery-overlay-content {
            transform: translateY(0) scale(1);
        }

        .gallery-overlay-content i {
            font-size: 40px;
            color: var(--white);
            display: block;
            margin-bottom: 8px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        }

        .gallery-overlay-content span {
            font-size: 13px;
            color: var(--white);
            font-weight: 500;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }

        .gallery-nav-btn-premium {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--white);
            border: 1.5px solid var(--border);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            color: var(--text-muted);
            font-size: 18px;
            box-shadow: 0 4px 16px rgba(29, 36, 51, 0.06);
        }

        .gallery-btn-next-premium {
            right: 0;
        }

        .gallery-btn-prev-premium {
            left: 0;
        }

        .gallery-nav-btn-premium:hover {
            background: var(--gradient);
            border-color: transparent;
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 30px rgba(109, 76, 255, 0.3);
        }

        /* ===== LIGHTBOX ===== */
        .gallery-lightbox-premium {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-lightbox-premium.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-overlay-premium {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(29, 36, 51, 0.55);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            animation: lightboxFadeInPremium 0.5s ease;
        }

        @keyframes lightboxFadeInPremium {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .lightbox-content-premium {
            position: relative;
            z-index: 1;
            max-width: 85vw;
            max-height: 85vh;
            animation: lightboxZoomInPremium 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes lightboxZoomInPremium {
            from {
                transform: scale(0.9) translateY(30px);
                opacity: 0;
            }

            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .lightbox-image-wrap-premium {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 32px 80px rgba(29, 36, 51, 0.3);
            background: var(--white);
            max-width: 85vw;
            max-height: 80vh;
            border: 1px solid var(--border);
        }

        .lightbox-image-wrap-premium img {
            width: 100%;
            height: 100%;
            max-height: 80vh;
            object-fit: contain;
            display: block;
        }

        .lightbox-close-premium {
            position: absolute;
            top: -18px;
            right: -18px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--white);
            border: 1.5px solid var(--border);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            color: var(--text-dark);
            font-size: 22px;
            z-index: 2;
            box-shadow: 0 4px 16px rgba(29, 36, 51, 0.12);
        }

        .lightbox-close-premium:hover {
            background: var(--gradient);
            border-color: transparent;
            color: var(--white);
            transform: rotate(90deg) scale(1.08);
            box-shadow: 0 8px 30px rgba(109, 76, 255, 0.4);
        }

        .lightbox-nav-premium {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--white);
            border: 1.5px solid var(--border);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            color: var(--text-dark);
            font-size: 20px;
            z-index: 10000;
            box-shadow: 0 8px 32px rgba(29, 36, 51, 0.15);
        }

        .lightbox-nav-premium:hover {
            background: var(--gradient);
            color: var(--white);
            border-color: transparent;
            transform: translateY(-50%) scale(1.12);
            box-shadow: 0 12px 40px rgba(109, 76, 255, 0.35);
        }

        .lightbox-prev-premium {
            left: 40px;
        }

        .lightbox-next-premium {
            right: 40px;
        }

        .lightbox-counter-premium {
            position: absolute;
            bottom: -48px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--text-dark);
            font-size: 14px;
            font-weight: 600;
            background: var(--white);
            padding: 6px 24px;
            border-radius: 24px;
            border: 1px solid var(--border);
            letter-spacing: 0.5px;
            box-shadow: 0 4px 16px rgba(29, 36, 51, 0.08);
        }

        @media (max-width: 1200px) {
            .gallery-slide-item-premium {
                width: calc(33.333% - 16px);
            }

            .gallery-nav-btn-premium {
                width: 42px;
                height: 42px;
            }

            .gallery-nav-btn-premium i {
                font-size: 20px;
            }
        }

        @media (max-width: 991.98px) {
            .gallery-slide-item-premium {
                width: calc(50% - 12px);
            }

            .gallery-nav-btn-premium {
                width: 38px;
                height: 38px;
            }

            .gallery-nav-btn-premium i {
                font-size: 18px;
            }

            .lightbox-nav-premium {
                width: 46px;
                height: 46px;
            }

            .lightbox-prev-premium {
                left: 20px;
            }

            .lightbox-next-premium {
                right: 20px;
            }

            .lightbox-close-premium {
                width: 44px;
                height: 44px;
                font-size: 18px;
                top: -14px;
                right: -14px;
            }

            .lightbox-content-premium {
                max-width: 92vw;
                max-height: 85vh;
            }

            .lightbox-image-wrap-premium {
                max-width: 92vw;
                max-height: 75vh;
            }
        }

        @media (max-width: 767.98px) {
            .gallery-wrapper-premium {
                padding: 30px 0;
            }

            .gallery-slide-item-premium {
                width: 100%;
                margin-right: 0;
            }

            .gallery-nav-btn-premium {
                width: 34px;
                height: 34px;
            }

            .gallery-nav-btn-premium i {
                font-size: 16px;
            }

            .gallery-title-premium {
                font-size: 24px;
            }

            .gallery-desc {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .gallery-wrapper-premium {
                padding: 20px 0;
            }

            .gallery-title-premium {
                font-size: 20px;
            }

            .gallery-nav-btn-premium {
                width: 28px;
                height: 28px;
            }

            .gallery-nav-btn-premium i {
                font-size: 12px;
            }

            .gallery-image-wrap-premium {
                border-radius: 10px;
            }

            .gallery-overlay-content i {
                font-size: 24px;
            }

            .lightbox-nav-premium {
                width: 36px;
                height: 36px;
            }

            .lightbox-prev-premium {
                left: 10px;
            }

            .lightbox-next-premium {
                right: 10px;
            }

            .lightbox-close-premium {
                width: 32px;
                height: 32px;
                font-size: 14px;
                top: -10px;
                right: -10px;
            }
        }

        /* ===== REVIEWS ===== */
        .reviews-wrapper-premium {
            margin: 2rem auto;
        }

        .reviews-wrapper-premium .container {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px 32px 32px;
            box-shadow: 0 4px 24px rgba(29, 36, 51, 0.05);
        }

        .reviews-header-premium {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .reviews-title-premium {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-dark);
            margin: 0;
        }

        .reviews-slider-container-premium {
            position: relative;
            padding: 0 4px;
        }

        .reviews-slider-main-premium {
            overflow: hidden;
        }

        .reviews-slider-wrapper-premium {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reviews-slide-item-premium {
            flex-shrink: 0;
            width: calc(25% - 15px);
            margin-right: 20px;
        }

        .review-card-premium {
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 18px 20px 20px;
            height: 100%;
            transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
            background: var(--white);
        }

        .review-card-premium:hover {
            box-shadow: 0 12px 30px rgba(109, 76, 255, 0.1);
            border-color: rgba(109, 76, 255, 0.25);
            transform: translateY(-3px);
        }

        .review-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .review-avatar-premium {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 2px solid var(--border);
        }

        .review-name-stars {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .review-name-premium {
            font-size: 14.5px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .review-stars-premium {
            display: flex;
            gap: 2px;
            font-size: 22px;
            color: var(--star);
            line-height: 1;
        }

        .review-stars-premium .star-empty {
            color: var(--border);
        }

        .review-text-premium {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.55;
            margin: 0;
        }

        .reviews-nav-btn-premium {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--white);
            border: 1.5px solid var(--border);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
            color: var(--text-muted);
            box-shadow: 0 4px 14px rgba(29, 36, 51, 0.08);
        }

        .reviews-nav-btn-premium svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .reviews-btn-next-premium {
            right: -14px;
        }

        .reviews-btn-prev-premium {
            left: -14px;
        }

        .reviews-nav-btn-premium:hover {
            background: var(--gradient);
            border-color: transparent;
            color: var(--white);
            box-shadow: 0 8px 22px rgba(109, 76, 255, 0.3);
        }

        .reviews-nav-btn-premium.disabled {
            opacity: 0.35;
            cursor: default;
            pointer-events: none;
        }

        @media (max-width: 1200px) {
            .reviews-slide-item-premium {
                width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 900px) {
            .reviews-slide-item-premium {
                width: calc(50% - 10px);
            }

            .reviews-wrapper-premium .container {
                padding: 22px 20px 26px;
            }
        }

        @media (max-width: 600px) {
            .reviews-slide-item-premium {
                width: 100%;
                margin-right: 0;
            }

            .reviews-title-premium {
                font-size: 18px;
            }

            .reviews-slider-container-premium {
                padding: 0;
            }

            .reviews-btn-next-premium {
                right: 0;
            }

            .reviews-btn-prev-premium {
                left: 0;
            }

            .reviews-wrapper-premium {
                margin: 0rem auto;
            }

            .reviews-wrapper-premium .container {
                padding: 0 12px;
            }
        }

        /* ===== INQUIRY ===== */
        .inquiry-wrapper-premium {
            padding: 40px 0;
        }

        .inquiry-stage-premium {
            position: relative;
            min-height: 340px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(29, 36, 51, 0.08);
            display: flex;
        }

        .inquiry-map-frame-premium {
            position: relative;
            width: 56%;
            height: auto;
            min-height: 340px;
            flex-shrink: 0;
            border: 0;
            display: block;
            filter: grayscale(15%);
        }

        .inquiry-form-col-premium {
            position: absolute;
            left: calc(56% - 34px);
            right: 0;
            z-index: 2;
        }

        .inquiry-form-inner-premium {
            background: var(--gradient);
            height: 100%;
            width: 100%;
            padding: 36px 44px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-top-left-radius: 1rem;
            border-bottom-left-radius: 1rem;
            box-shadow: -14px 0 40px rgba(29, 36, 51, 0.18);
        }

        .inquiry-title-premium {
            color: var(--white);
            font-size: 24px;
            font-weight: 800;
            margin: 0 0 20px 0;
        }

        .inquiry-form-premium .form-control {
            border: none;
            border-radius: 10px;
            padding: 13px 18px;
            font-size: 14px;
            color: var(--text-dark);
            background: var(--white);
            box-shadow: none;
        }

        .inquiry-form-premium .form-control::placeholder {
            color: var(--text-muted);
        }

        .inquiry-form-premium .form-control:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
            outline: none;
        }

        .inquiry-form-premium textarea.form-control {
            resize: none;
            min-height: 90px;
        }

        .inquiry-row-fields {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

        .inquiry-row-fields .form-control {
            flex: 1;
        }

        .inquiry-btn-premium {
            background: var(--white);
            color: var(--purple);
            border: none;
            border-radius: 10px;
            padding: 12px 26px;
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            transition: all 0.3s ease;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
        }

        .inquiry-btn-premium:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
            color: var(--indigo);
        }

        .inquiry-btn-premium i {
            font-size: 16px;
        }

        @media (max-width: 1199.98px) {
            .inquiry-map-frame-premium {
                width: 58%;
            }

            .inquiry-form-col-premium {
                left: calc(58% - 28px);
            }
        }

        @media (max-width: 991.98px) {
            .inquiry-wrapper-premium {
                padding: 32px 0;
            }

            .inquiry-stage-premium {
                min-height: 300px;
            }

            .inquiry-map-frame-premium {
                width: 60%;
                min-height: 300px;
            }

            .inquiry-form-col-premium {
                left: calc(60% - 22px);
                top: 12px;
                bottom: 12px;
            }

            .inquiry-form-inner-premium {
                padding: 26px 24px;
            }

            .inquiry-title-premium {
                font-size: 20px;
                margin-bottom: 14px;
            }

            .inquiry-row-fields {
                gap: 10px;
                margin-bottom: 12px;
            }

            .inquiry-form-premium .form-control {
                padding: 11px 14px;
                font-size: 13px;
            }

            .inquiry-form-premium textarea.form-control {
                min-height: 70px;
            }
        }

        @media (max-width: 800px) {
            .inquiry-wrapper-premium {
                padding: 24px 0;
            }

            .inquiry-stage-premium {
                display: flex;
                flex-direction: column;
                min-height: auto;
                overflow: visible;
                box-shadow: none;
            }

            .inquiry-map-frame-premium {
                position: relative;
                width: 100%;
                height: 220px;
                min-height: 220px;
                border-radius: 20px;
            }

            .inquiry-form-col-premium {
                position: relative;
                top: auto;
                bottom: auto;
                left: auto;
                right: auto;
                width: 100%;
                margin-top: -28px;
                padding: 0 16px;
            }

            .inquiry-form-inner-premium {
                border-radius: 18px;
                padding: 28px 24px;
                box-shadow: 0 10px 30px rgba(29, 36, 51, 0.15);
            }

            .inquiry-title-premium {
                font-size: 19px;
                margin-bottom: 16px;
            }

            .inquiry-row-fields {
                flex-direction: column;
                gap: 10px;
                margin-bottom: 10px;
            }

            .inquiry-form-premium textarea.form-control {
                margin-bottom: 14px;
                min-height: 80px;
            }
        }

        @media (max-width: 575.98px) {
            .inquiry-form-col-premium {
                padding: 0 2px;
                margin-top: 2px;
            }

            .inquiry-map-frame-premium {
                height: 200px;
                min-height: 200px;
            }

            .inquiry-form-inner-premium {
                padding: 24px 20px;
            }

            .inquiry-title-premium {
                font-size: 18px;
                margin-bottom: 14px;
            }

            .inquiry-form-premium .form-control {
                padding: 12px 16px;
                font-size: 13.5px;
            }

            .inquiry-btn-premium {
                width: 100%;
                justify-content: center;
                padding: 13px 24px;
            }
        }

        /* ===== CTA FOOTER ===== */
        .cta-footer-wrapper-premium {
            margin: 0 auto;
        }

        .cta-footer-card-premium {
            background: linear-gradient(90deg, rgba(109, 76, 255, 0.05) 0%, rgba(247, 248, 252, 1) 60%);
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 26px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: 0 4px 24px rgba(29, 36, 51, 0.05);
        }

        .cta-footer-text-premium {
            flex: 0 0 auto;
            max-width: 280px;
        }

        .cta-footer-title-premium {
            font-size: 21px;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.3;
            margin: 0 0 8px 0;
        }

        .cta-footer-desc-premium {
            font-size: 12.5px;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        .cta-footer-features-premium {
            display: flex;
            align-items: flex-start;
            gap: 26px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-feature-item-premium {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            width: 68px;
            text-align: center;
        }

        .cta-feature-icon-premium {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: var(--white);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--purple);
            font-size: 19px;
            box-shadow: 0 4px 12px rgba(29, 36, 51, 0.05);
            transition: all 0.3s ease;
        }

        .cta-feature-item-premium:hover .cta-feature-icon-premium {
            background: var(--gradient);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(109, 76, 255, 0.25);
        }

        .cta-feature-label-premium {
            font-size: 10.5px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .cta-footer-action-premium {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 0 0 auto;
        }

        .cta-footer-btn-premium {
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 12px;
            padding: 14px 28px;
            font-weight: 700;
            font-size: 14.5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(109, 76, 255, 0.3);
            transition: all 0.3s ease;
        }

        .cta-footer-btn-premium:hover {
            background: var(--gradient-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(109, 76, 255, 0.4);
            color: var(--white);
        }

        .cta-footer-btn-premium i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .cta-footer-btn-premium:hover i {
            transform: translateX(4px);
        }

        .cta-footer-subtext-premium {
            font-size: 12px;
            color: var(--purple);
            font-weight: 600;
            margin: 0;
            white-space: nowrap;
        }

        .cta-powered-strip-premium {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 22px 0;
            flex-wrap: wrap;
            text-align: center;
        }

        .cta-powered-text-premium {
            font-size: 12.5px;
            color: var(--text-muted);
        }

        .cta-powered-logo-premium {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cta-powered-logo-premium img {
            height: 22px;
            width: auto;
            display: block;
        }

        .cta-powered-copyright-premium {
            font-size: 12.5px;
            color: var(--text-muted);
        }

        .cta-powered-divider-premium {
            color: var(--border);
        }

        @media (max-width: 1200px) {
            .cta-footer-features-premium {
                gap: 18px;
            }

            .cta-feature-item-premium {
                width: 60px;
            }

            .cta-feature-icon-premium {
                width: 42px;
                height: 42px;
                font-size: 17px;
            }
        }

        @media (max-width: 991.98px) {
            .cta-footer-card-premium {
                justify-content: center;
                text-align: center;
                padding: 28px 24px;
            }

            .cta-footer-text-premium {
                max-width: 100%;
            }

            .cta-footer-features-premium {
                order: 3;
                width: 100%;
                padding-top: 12px;
                border-top: 1px solid var(--border);
                margin-top: 6px;
            }

            .cta-footer-action-premium {
                order: 2;
            }
        }

        @media (max-width: 575.98px) {
            .cta-footer-wrapper-premium {
                padding: 0;
            }

            .cta-footer-card-premium {
                padding: 22px 18px;
                border-radius: 18px;
                gap: 18px;
            }

            .cta-footer-title-premium {
                font-size: 18px;
            }

            .cta-footer-desc-premium {
                font-size: 12px;
            }

            .cta-footer-features-premium {
                gap: 14px 0px;
            }

            .cta-feature-item-premium {
                width: 56px;
            }

            .cta-feature-icon-premium {
                width: 40px;
                height: 40px;
                font-size: 16px;
                border-radius: 12px;
            }

            .cta-feature-label-premium {
                font-size: 9.5px;
            }

            .cta-footer-btn-premium {
                width: 100%;
                justify-content: center;
                padding: 13px 22px;
                font-size: 14px;
            }

            .cta-footer-action-premium {
                width: 100%;
            }

            .cta-powered-strip-premium {
                /* flex-direction: column; */
                gap: 4px;
                margin-top: 18px;
            }

            .cta-powered-divider-premium {
                display: none;
            }
        }

        /* ===== HIGHLIGHTS ===== */
        .highlight-pill-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .highlight-pill-item {
            background: rgba(109, 76, 255, 0.08);
            color: var(--purple);
            border: 1px solid rgba(109, 76, 255, 0.18);
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .highlight-pill-item:hover {
            background: var(--gradient);
            color: var(--white);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(109, 76, 255, 0.25);
        }

        .verified-badges-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 32px;
        }

        .verified-badge-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .verified-badge-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 15px;
            flex-shrink: 0;
        }

        .verified-badge-icon.badge-green {
            background: linear-gradient(135deg, #2ECC71, #1ABC5B);
        }

        .verified-badge-icon.badge-blue {
            background: linear-gradient(135deg, #4F9DFF, #2E7BFF);
        }

        .verified-badge-icon.badge-orange {
            background: linear-gradient(135deg, #FF9A44, #FF7A1A);
        }

        .verified-badge-icon.badge-purple {
            background: var(--gradient);
        }

        .verified-badge-label {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-dark);
            white-space: nowrap;
        }

        /* ===== TOAST NOTIFICATION ===== */
        .toast-container-custom {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            max-width: 400px;
            width: 100%;
        }

        .toast-custom {
            background: #1a1a2e;
            color: white;
            padding: 16px 20px;
            border-radius: 14px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            display: none;
            align-items: center;
            gap: 14px;
            animation: toastSlideIn 0.5s ease;
            border-left: 4px solid var(--gradient);
        }

        .toast-custom.show {
            display: flex;
        }

        .toast-custom .toast-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        .toast-custom .toast-icon.success {
            color: #22c55e;
        }

        .toast-custom .toast-icon.warning {
            color: #fbbf24;
        }

        .toast-custom .toast-icon.info {
            color: #3b82f6;
        }

        .toast-custom .toast-content {
            flex: 1;
        }

        .toast-custom .toast-title {
            font-weight: 700;
            font-size: 14px;
            margin: 0;
        }

        .toast-custom .toast-message {
            font-size: 12px;
            opacity: 0.8;
            margin: 2px 0 0;
        }

        .toast-custom .toast-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.5);
            font-size: 18px;
            cursor: pointer;
            padding: 0 4px;
            transition: color 0.3s ease;
        }

        .toast-custom .toast-close:hover {
            color: white;
        }

        @keyframes toastSlideIn {
            from {
                transform: translateX(100px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* ===== DIRECTION MODAL ===== */
        .modal-content {
            border: none !important;
            border-radius: 20px !important;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-header {
            border-bottom: none !important;
            padding: 16px 24px;
            background: var(--gradient);
        }

        .modal-header .modal-title {
            color: white;
            font-weight: 700;
        }

        .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

        .modal-body {
            padding: 0 !important;
        }

        .map-container {
            position: relative;
            width: 100%;
            height: 450px;
            background: #e8ecf4;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .map-footer {
            padding: 14px 24px;
            background: #f8f9fc;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .map-footer .location-text {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .map-footer .location-text i {
            color: #EF4444;
            font-size: 18px;
        }

        .btn-open-maps {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-open-maps:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(109, 76, 255, 0.3);
            color: white;
        }

        @media (max-width: 767.98px) {
            .info-card-block {
                padding: 10px;
                margin-bottom: 10px;
                margin-top: 0;
            }

            .info-heading-title {
                font-size: 15.5px;
                margin-bottom: 12px;
            }

            .highlight-pill-item {
                font-size: 10px;
                padding: 4px 8px;
            }

            .verified-badges-row {
                gap: 16px 20px;
            }

            .verified-badge-icon {
                width: 25px;
                height: 25px;
                font-size: 10px;
            }

            .verified-badge-label {
                font-size: 12.5px;
            }

            #verifiedBadgesCardId {
                margin-bottom: 10px;
            }

            .info-card-block:last-child {
                margin-bottom: 10px;
            }

            .toast-container-custom {
                bottom: 16px;
                right: 16px;
                left: 16px;
                max-width: 100%;
            }

            .map-container {
                height: 300px;
            }

            .map-footer {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .verified-badges-row {
                justify-content: space-between;
                gap: 10px;
            }

            .verified-badge-item {
                width: calc(50% - 6px);
            }

            .map-container {
                height: 250px;
            }
        }

        /* ============================================================ */
        /* WHY CHOOSE US - PREMIUM STYLING - 4 CARDS ON DESKTOP */
        /* ============================================================ */
        .why-choose-block-premium {
            background: var(--white);
            border-radius: 20px;

            margin: 14px auto;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;

        }

        .why-choose-block-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
        }

        /* ===== HEADER ===== */
        .why-choose-header-premium {
            text-align: center;
            margin-bottom: 28px;
            position: relative;
        }

        .why-choose-badge-premium {
            display: inline-block;
            background: rgba(109, 76, 255, 0.08);
            color: var(--purple);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 4px 18px;
            border-radius: 50px;
            margin-bottom: 10px;
        }

        .why-choose-badge-premium i {
            margin-right: 6px;
            font-size: 12px;
        }

        .why-choose-title-premium {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-dark);
            margin: 0 0 6px 0;
        }

        .why-choose-title-premium span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .why-choose-subtitle-premium {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== GRID - 4 CARDS ON DESKTOP ===== */
        .why-choose-grid-premium {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            width: 100%;
        }

        /* ===== CARD ===== */
        .why-choose-card-premium {
            background: var(--white);
            border-radius: 16px;
            padding: 24px 20px 26px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: default;
            opacity: 0;
            transform: translateY(30px);
            animation: cardFadeInUp 0.6s ease forwards;
            animation-delay: var(--card-delay);
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .why-choose-card-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(var(--gradient-start), 0.04),
                    rgba(var(--gradient-end), 0.04));
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 16px;
        }

        .why-choose-card-premium:hover::before {
            opacity: 1;
        }

        /* Card Number */
        .why-choose-card-number {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 32px;
            font-weight: 800;
            color: rgba(0, 0, 0, 0.18);
            line-height: 1;
            transition: all 0.4s ease;
            font-family: 'Georgia', serif;
        }

        .why-choose-card-premium:hover .why-choose-card-number {
            color: rgba(109, 76, 255, 0.08);
            transform: scale(1.1);
        }

        /* Card Icon */
        .why-choose-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--gradient);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 16px rgba(109, 76, 255, 0.25);
            flex-shrink: 0;
        }

        .why-choose-card-premium:hover .why-choose-card-icon {
            transform: scale(1.08) rotate(-6deg);
            box-shadow: 0 8px 32px rgba(109, 76, 255, 0.35);
        }

        /* Card Content */
        .why-choose-card-content {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .why-choose-card-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 6px 0;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .why-choose-card-premium:hover .why-choose-card-content h4 {
            color: var(--purple);
        }

        .why-choose-card-content p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        /* Card Shine Effect */
        .why-choose-card-shine {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 30%,
                    rgba(255, 255, 255, 0.1) 0%,
                    transparent 60%);
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
            border-radius: 16px;
        }

        .why-choose-card-premium:hover .why-choose-card-shine {
            opacity: 1;
        }

        /* Card Border Gradient */
        .why-choose-card-border {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 0 0 16px 16px;
        }

        .why-choose-card-premium:hover .why-choose-card-border {
            opacity: 1;
        }

        /* Card Hover Effects */
        .why-choose-card-premium:hover {
            transform: translateY(-6px);
            border-color: var(--purple);
            box-shadow: 0 12px 40px rgba(109, 76, 255, 0.1);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes cardFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================================ */
        /* RESPONSIVE BREAKPOINTS */
        /* ============================================================ */

        /* Desktop Large (1200px+) - 4 Cards */
        @media (min-width: 1200px) {
            .why-choose-grid-premium {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }

        /* Desktop Medium (992px - 1199px) - 4 Cards */
        @media (min-width: 992px) and (max-width: 1199px) {
            .why-choose-grid-premium {
                grid-template-columns: repeat(4, 1fr);
                gap: 18px;
            }

            .why-choose-card-premium {
                padding: 20px 16px 22px;
            }

            .why-choose-card-icon {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .why-choose-card-content h4 {
                font-size: 15px;
            }

            .why-choose-card-content p {
                font-size: 12.5px;
            }
        }

        /* Tablets (768px - 991px) - 3 Cards */
        @media (min-width: 768px) and (max-width: 991px) {
            .why-choose-grid-premium {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

            .why-choose-block-premium {
                padding: 24px 20px 26px;
                border-radius: 18px;
            }

            .why-choose-card-premium {
                padding: 18px 16px 20px;
                border-radius: 14px;
            }

            .why-choose-card-icon {
                width: 44px;
                height: 44px;
                font-size: 18px;
                border-radius: 12px;
            }

            .why-choose-card-content h4 {
                font-size: 15px;
            }

            .why-choose-card-content p {
                font-size: 13px;
            }

            .why-choose-title-premium {
                font-size: 24px;
            }
        }

        /* Mobile Landscape (576px - 767px) - 2 Cards */
        @media (min-width: 576px) and (max-width: 767px) {
            .why-choose-grid-premium {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .why-choose-block-premium {
                padding: 20px 16px 22px;
                border-radius: 16px;
                margin: 10px 0 14px;
            }

            .why-choose-card-premium {
                padding: 18px 16px 20px;
                border-radius: 14px;
            }

            .why-choose-card-icon {
                width: 44px;
                height: 44px;
                font-size: 18px;
                border-radius: 12px;
            }

            .why-choose-card-content h4 {
                font-size: 15px;
            }

            .why-choose-card-content p {
                font-size: 13px;
            }

            .why-choose-title-premium {
                font-size: 22px;
            }

            .why-choose-card-number {
                font-size: 24px;
                top: 10px;
                right: 14px;
            }
        }

        /* Mobile Portrait (400px - 575px) - 2 Cards */
        @media (min-width: 400px) and (max-width: 575px) {
            .why-choose-grid-premium {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .why-choose-block-premium {
                padding: 16px 12px 18px;
                border-radius: 14px;
                margin: 8px 0 12px;
            }

            .why-choose-card-premium {
                padding: 14px 12px 16px;
                border-radius: 12px;
            }

            .why-choose-card-icon {
                width: 38px;
                height: 38px;
                font-size: 16px;
                border-radius: 10px;
                margin-bottom: 8px;
            }

            .why-choose-card-content h4 {
                font-size: 13px;
                margin-bottom: 4px;
            }

            .why-choose-card-content p {
                font-size: 12px;
                line-height: 1.4;
            }

            .why-choose-title-premium {
                font-size: 18px;
            }

            .why-choose-subtitle-premium {
                font-size: 12px;
            }

            .why-choose-badge-premium {
                font-size: 9px;
                padding: 3px 12px;
                letter-spacing: 1.5px;
            }

            .why-choose-card-number {
                font-size: 18px;
                top: 6px;
                right: 10px;
            }
        }

        /* Very Small Mobile (<400px) - 2 Cards */
        @media (max-width: 399px) {
            .why-choose-grid-premium {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .why-choose-block-premium {
                padding: 12px 8px 14px;
                border-radius: 12px;
                margin: 6px 0 10px;
            }

            .why-choose-card-premium {
                padding: 10px 8px 12px;
                border-radius: 10px;
            }

            .why-choose-card-icon {
                width: 30px;
                height: 30px;
                font-size: 13px;
                border-radius: 8px;
                margin-bottom: 6px;
            }

            .why-choose-card-content h4 {
                font-size: 11px;
                margin-bottom: 3px;
            }

            .why-choose-card-content p {
                font-size: 10px;
                line-height: 1.3;
            }

            .why-choose-title-premium {
                font-size: 16px;
            }

            .why-choose-subtitle-premium {
                font-size: 11px;
            }

            .why-choose-badge-premium {
                font-size: 8px;
                padding: 2px 10px;
                letter-spacing: 1px;
            }

            .why-choose-card-number {
                font-size: 14px;
                top: 4px;
                right: 8px;
            }

            .why-choose-header-premium {
                margin-bottom: 14px;
            }
        }

        /* ===== DARK MODE SUPPORT ===== */
        /* @media (prefers-color-scheme: dark) {
            .why-choose-card-premium {
                background: #1a1a2e;
                border-color: #2a2a4a;
            }

            .why-choose-card-premium:hover {
                border-color: var(--purple);
            }

            .why-choose-card-content h4 {
                color: #ffffff;
            }

            .why-choose-card-content p {
                color: #a0a0b8;
            }

            .why-choose-card-number {
                color: rgba(255, 255, 255, 0.04);
            }

            .why-choose-card-premium:hover .why-choose-card-number {
                color: rgba(255, 255, 255, 0.06);
            }
        } */

        /* ===== TOUCH-FRIENDLY ===== */
        @media (hover: none) {
            .why-choose-card-premium:hover {
                transform: none;
                border-color: var(--border);
                box-shadow: none;
            }

            .why-choose-card-premium:hover .why-choose-card-icon {
                transform: none;
                box-shadow: 0 4px 16px rgba(109, 76, 255, 0.25);
            }

            .why-choose-card-premium:hover .why-choose-card-content h4 {
                color: var(--text-dark);
            }

            .why-choose-card-premium:hover .why-choose-card-border {
                opacity: 0;
            }

            .why-choose-card-premium:hover .why-choose-card-shine {
                opacity: 0;
            }

            .why-choose-card-premium:hover::before {
                opacity: 0;
            }
        }

     /* ============================================================ */
/* REVIEWS SECTION - COMPLETE STYLING */
/* ============================================================ */

/* ===== MAIN WRAPPER ===== */
.reviews-section-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 30px 30px;
    margin: 14px auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8f0;
    transition: all 0.3s ease;
}

.reviews-section-wrapper:hover {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.07);
}

/* ===== HEADER ===== */
.reviews-section-header {
    margin-bottom: 22px;
}

.reviews-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.reviews-title i {
    color: #f5a623;
    font-size: 22px;
}

/* ===== TWO COLUMN LAYOUT ===== */
.reviews-layout {
    display: flex;
    gap: 28px;
    align-items: stretch;
}

/* ============================================================ */
/* LEFT: RATING CARD */
/* ============================================================ */
.rating-card {
    flex: 0 0 280px;
    min-width: 240px;
    background: #f8f8fc;
    border-radius: 16px;
    padding: 24px 22px 22px;
    border: 1px solid #e8e8f0;
    transition: all 0.3s ease;
}

.rating-card:hover {
    border-color: #6c3ce1;
    box-shadow: 0 4px 20px rgba(108, 60, 225, 0.06);
}

.rating-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===== RATING NUMBER ===== */
.rating-number-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.rating-number-big {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    letter-spacing: -2px;
}

.rating-number-outof {
    font-size: 16px;
    color: #8888a0;
    font-weight: 500;
}

/* ===== RATING STARS ===== */
.rating-stars-display {
    font-size: 22px;
    color: #f5a623;
    margin: 6px 0 4px;
    letter-spacing: 3px;
}

.rating-stars-display .bi-star {
    color: #d0d0d8;
}

.rating-stars-display .bi-star-half {
    color: #f5a623;
}

/* ===== TOTAL REVIEWS ===== */
.rating-total-reviews {
    font-size: 14px;
    color: #8888a0;
    font-weight: 500;
    margin-bottom: 16px;
}

.rating-total-reviews i {
    margin-right: 6px;
    color: #6c3ce1;
}

/* ===== RATING BARS ===== */
.rating-bars-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-bar-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    min-width: 36px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating-bar-label i {
    font-size: 10px;
    color: #f5a623;
}

.rating-bar-track {
    flex: 1;
    height: 5px;
    border-radius: 10px;
    background: #e8e8f0;
    overflow: hidden;
    position: relative;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, #6c3ce1, #8b5cf6);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.rating-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.rating-bar-count {
    font-size: 12px;
    color: #8888a0;
    min-width: 28px;
    text-align: right;
    font-weight: 600;
}

/* ===== WRITE REVIEW BUTTON ON CARD ===== */
.btn-write-review-card {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #6c3ce1, #8b5cf6);
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(108, 60, 225, 0.15);
}

.btn-write-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 60, 225, 0.3);
    color: #ffffff;
}

.btn-write-review-card:active {
    transform: translateY(0) scale(0.97);
}

.btn-write-review-card i {
    font-size: 16px;
}

/* ============================================================ */
/* RIGHT: SWIPER SLIDER */
/* ============================================================ */
.reviews-slider-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
}

/* Swiper Container */
.reviews-swiper {
    width: 100%;
    padding: 10px 0 40px;
    overflow: hidden;
}

.reviews-swiper .swiper-slide {
    height: auto;
}

/* ===== REVIEW SLIDE CARD ===== */
.review-slide-card {
    background: #f8f8fc;
    border-radius: 14px;
    padding: 18px 20px 20px;
    border: 1px solid #e8e8f0;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-slide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: #6c3ce1;
    background: #ffffff;
}

/* ===== REVIEW SLIDE HEADER ===== */
.review-slide-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 12px;
}

.review-slide-user {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.review-slide-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.review-slide-avatar.initials {
    background: linear-gradient(135deg, #6c3ce1, #8b5cf6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #6c3ce1;
}

.review-slide-card:hover .review-slide-avatar.initials {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(108, 60, 225, 0.2);
}

.review-slide-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.review-slide-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-slide-stars {
    font-size: 13px;
    color: #f5a623;
    letter-spacing: 1px;
    white-space: nowrap;
}

.review-slide-stars .bi-star {
    color: #d0d0d8;
}

.review-slide-date {
    font-size: 11px;
    color: #8888a0;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 500;
}

/* ===== REVIEW SLIDE TEXT ===== */
.review-slide-text {
    font-size: 13.5px;
    color: #666680;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-slide-card:hover .review-slide-text {
    -webkit-line-clamp: unset;
}

/* ===== SWIPER NAVIGATION ===== */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #e8e8f0;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-button-next::after,
.reviews-swiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
    background: #6c3ce1;
    border-color: #6c3ce1;
}

.reviews-swiper .swiper-button-next:hover::after,
.reviews-swiper .swiper-button-prev:hover::after {
    color: #ffffff;
}

/* ===== SWIPER PAGINATION ===== */
.reviews-swiper .swiper-pagination {
    bottom: 0;
}

.reviews-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d0d0d8;
    opacity: 1;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: #6c3ce1;
    width: 24px;
    border-radius: 10px;
}

/* ============================================================ */
/* NO REVIEWS */
/* ============================================================ */
.no-reviews-slider {
    text-align: center;
    padding: 40px 20px;
    width: 100%;
}

.no-reviews-slider .no-reviews-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f8f8fc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 2px dashed #e8e8f0;
    transition: all 0.3s ease;
}

.no-reviews-slider .no-reviews-icon i {
    font-size: 32px;
    color: #c0c0d0;
    transition: all 0.3s ease;
}

.no-reviews-slider:hover .no-reviews-icon {
    border-color: #6c3ce1;
    background: rgba(108, 60, 225, 0.04);
}

.no-reviews-slider:hover .no-reviews-icon i {
    color: #6c3ce1;
}

.no-reviews-slider h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.no-reviews-slider p {
    font-size: 14px;
    color: #8888a0;
    margin: 0;
}

/* ============================================================ */
/* REVIEW MODAL */
/* ============================================================ */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.review-modal.active {
    display: flex;
}

.review-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: overlayFade 0.3s ease;
}

@keyframes overlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.review-modal-content {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 36px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid #e8e8f0;
}

.review-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #8888a0;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-modal-close:hover {
    background: #f8f8fc;
    color: #1a1a2e;
    transform: rotate(90deg);
}

/* ===== REVIEW FORM ===== */
.review-form-group {
    margin-bottom: 18px;
}

.review-form-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.review-form-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.review-form-control {
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    border: 2px solid #e8e8f0;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
    color: #1a1a2e;
}

.review-form-control:focus {
    border-color: #6c3ce1;
    box-shadow: 0 0 0 4px rgba(108, 60, 225, 0.08);
    outline: none;
}

.review-form-control::placeholder {
    color: #a8a8b8;
}

.review-form-hint {
    display: block;
    font-size: 12px;
    color: #8888a0;
    margin-top: 4px;
}

.review-star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}

.review-star-rating i {
    font-size: 34px;
    color: #d0d0d8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-star-rating i:hover,
.review-star-rating i.active,
.review-star-rating i.hover {
    color: #f5a623;
    transform: scale(1.1);
}

.review-star-rating i:hover ~ i,
.review-star-rating i.active ~ i {
    color: #f5a623;
}

.rating-text-display {
    font-size: 13px;
    color: #8888a0;
    margin-top: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rating-text-display.active {
    color: #f5a623;
    font-weight: 600;
}

.review-submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6c3ce1, #8b5cf6);
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 4px;
    box-shadow: 0 4px 16px rgba(108, 60, 225, 0.15);
}

.review-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 60, 225, 0.3);
    color: #ffffff;
}

.review-submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.review-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================================ */
/* REVIEW TOAST */
/* ============================================================ */
.review-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a1a2e;
    color: #ffffff;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10000;
    max-width: 420px;
    width: 90%;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #22c55e;
}

.review-toast.show {
    transform: translateX(0);
}

.review-toast-icon {
    font-size: 30px;
    color: #22c55e;
    flex-shrink: 0;
}

.review-toast-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.review-toast-content p {
    font-size: 13px;
    opacity: 0.8;
    margin: 2px 0 0;
}

.review-toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.review-toast-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */

/* Tablets */
@media (max-width: 1024px) {
    .rating-card {
        flex: 0 0 240px;
        min-width: 200px;
    }
    
    .rating-number-big {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .reviews-section-wrapper {
        padding: 16px 16px 20px;
        border-radius: 14px;
        margin: 10px 0;
    }
    
    .reviews-layout {
        flex-direction: column;
        gap: 18px;
    }
    
    .rating-card {
        flex: 1 1 auto;
        min-width: 0;
        padding: 18px 16px 16px;
        order: 2;
    }
    
    .reviews-slider-wrapper {
        order: 1;
    }
    
    .rating-number-big {
        font-size: 40px;
    }
    
    .rating-stars-display {
        font-size: 18px;
    }
    
    .btn-write-review-card {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    /* Swiper navigation on mobile */
    .reviews-swiper .swiper-button-next,
    .reviews-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    
    .reviews-swiper .swiper-button-next::after,
    .reviews-swiper .swiper-button-prev::after {
        font-size: 12px;
    }
    
    .review-slide-card {
        padding: 14px 16px;
    }
    
    .review-slide-avatar {
        width: 36px;
        height: 36px;
    }
    
    .review-slide-avatar.initials {
        font-size: 14px;
    }
 
    
    .review-slide-text {
        font-size: 13px;
    }
    
    .reviews-title {
        font-size: 17px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .reviews-section-wrapper {
        padding: 12px 10px 16px;
        border-radius: 12px;
    }
    
    .rating-card {
        padding: 14px 12px 14px;
    }
    
    .rating-number-big {
        font-size: 34px;
    }
    
    .rating-stars-display {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .rating-bar-label {
        font-size: 11px;
        min-width: 30px;
    }
    
    .rating-bar-count {
        font-size: 11px;
        min-width: 24px;
    }
    
    .rating-total-reviews {
        font-size: 12px;
    }
    
    .review-slide-card {
        padding: 12px 12px 14px;
    }
    
    .review-slide-avatar {
        width: 32px;
        height: 32px;
    }
    
    .review-slide-avatar.initials {
        font-size: 12px;
    }
    
 
    
    .review-slide-stars {
        font-size: 11px;
    }
    
    .review-slide-text {
        font-size: 12px;
    }
    
    .review-slide-date {
        font-size: 10px;
    }
    
    .reviews-swiper .swiper-button-next,
    .reviews-swiper .swiper-button-prev {
        width: 26px;
        height: 26px;
    }
    
    .reviews-swiper .swiper-button-next::after,
    .reviews-swiper .swiper-button-prev::after {
        font-size: 10px;
    }
}

/* ============================================================ */
/* DARK MODE SUPPORT */
/* ============================================================ */
/* @media (prefers-color-scheme: dark) {
    .reviews-section-wrapper {
        background: #1a1a2e;
        border-color: #2a2a4a;
    }
    
    .reviews-title {
        color: #ffffff;
    }
    
    .rating-card {
        background: #222244;
        border-color: #2a2a4a;
    }
    
    .rating-number-big {
        color: #ffffff;
    }
    
    .rating-bar-label {
        color: #e0e0e8;
    }
    
    .rating-bar-count {
        color: #a0a0b8;
    }
    
    .rating-bar-track {
        background: #2a2a4a;
    }
    
    .review-slide-card {
        background: #222244;
        border-color: #2a2a4a;
    }
    
    .review-slide-card:hover {
        background: #2a2a4a;
        border-color: #6c3ce1;
    }
    
    .review-slide-name {
        color: #ffffff;
    }
    
    .review-slide-text {
        color: #a0a0b8;
    }
    
    .reviews-swiper .swiper-button-next,
    .reviews-swiper .swiper-button-prev {
        background: #1a1a2e;
        border-color: #2a2a4a;
    }
    
    .reviews-swiper .swiper-button-next::after,
    .reviews-swiper .swiper-button-prev::after {
        color: #ffffff;
    }
    
    .reviews-swiper .swiper-button-next:hover,
    .reviews-swiper .swiper-button-prev:hover {
        background: #6c3ce1;
        border-color: #6c3ce1;
    }
    
    .reviews-swiper .swiper-button-next:hover::after,
    .reviews-swiper .swiper-button-prev:hover::after {
        color: #ffffff;
    }
    
    .reviews-swiper .swiper-pagination-bullet {
        background: #3a3a5a;
    }
    
    .reviews-swiper .swiper-pagination-bullet-active {
        background: #6c3ce1;
    }
    
    .review-modal-content {
        background: #1a1a2e;
        border: 1px solid #2a2a4a;
    }
    
    .review-modal-header {
        border-color: #2a2a4a;
    }
    
    .review-modal-header h3 {
        color: #ffffff;
    }
    
    .review-form-label {
        color: #e0e0e8;
    }
    
    .review-form-control {
        background: #222244;
        border-color: #2a2a4a;
        color: #ffffff;
    }
    
    .review-form-control:focus {
        border-color: #6c3ce1;
    }
    
    .review-form-control::placeholder {
        color: #6a6a8a;
    }
    
    .no-reviews-slider .no-reviews-icon {
        background: #222244;
        border-color: #2a2a4a;
    }
    
    .no-reviews-slider h4 {
        color: #ffffff;
    }
    
    .no-reviews-slider p {
        color: #a0a0b8;
    }
} */

/* ============================================================ */
/* TOUCH-FRIENDLY */
/* ============================================================ */
@media (hover: none) {
    .review-slide-card:hover {
        transform: none;
        box-shadow: none;
        border-color: #e8e8f0;
        background: #f8f8fc;
    }
    
    .review-slide-card:hover .review-slide-avatar.initials {
        transform: none;
        box-shadow: none;
    }
    
    .review-slide-card:hover .review-slide-text {
        -webkit-line-clamp: 4;
    }
    
    .btn-write-review-card:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(108, 60, 225, 0.15);
    }
    
    .reviews-swiper .swiper-button-next:hover,
    .reviews-swiper .swiper-button-prev:hover {
        background: #ffffff;
        border-color: #e8e8f0;
    }
    
    .reviews-swiper .swiper-button-next:hover::after,
    .reviews-swiper .swiper-button-prev:hover::after {
        color: #1a1a2e;
    }
}

@media (hover: none) and (prefers-color-scheme: dark) {
    .review-slide-card:hover {
        background: #222244;
        border-color: #2a2a4a;
    }
    
    .reviews-swiper .swiper-button-next:hover,
    .reviews-swiper .swiper-button-prev:hover {
        background: #1a1a2e;
        border-color: #2a2a4a;
    }
    
    .reviews-swiper .swiper-button-next:hover::after,
    .reviews-swiper .swiper-button-prev:hover::after {
        color: #ffffff;
    }
}

/* ============================================================ */
/* SCROLLBAR STYLING */
/* ============================================================ */
.review-modal-content::-webkit-scrollbar {
    width: 4px;
}

.review-modal-content::-webkit-scrollbar-track {
    background: #f8f8fc;
    border-radius: 10px;
}

.review-modal-content::-webkit-scrollbar-thumb {
    background: #6c3ce1;
    border-radius: 10px;
}

.review-modal-content::-webkit-scrollbar-thumb:hover {
    background: #5a2fd0;
}

/* ============================================================ */
/* AVATAR UPLOAD - NEW STYLES */
/* ============================================================ */

.avatar-upload-group {
    margin-bottom: 18px;
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 12px;
}

.avatar-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: 12px;
    border: 2px dashed var(--border);
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.avatar-upload-wrapper:hover {
    border-color: var(--purple);
    background: rgba(109, 76, 255, 0.04);
}

.avatar-upload-preview {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #c0c0d0;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.avatar-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-upload-preview.has-image {
    border-color: var(--purple);
}

.avatar-upload-preview.has-image i {
    display: none;
}

.avatar-upload-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.avatar-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.avatar-upload-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(109, 76, 255, 0.1);
}

.avatar-upload-input {
    display: none;
}

.avatar-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: #f8d7da;
    color: #721c24;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.avatar-remove-btn:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
}

.avatar-upload-hint {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== REVIEW MODAL - AVATAR IN REVIEW CARD ===== */
.review-slide-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
}

.review-slide-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-slide-avatar .initials {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.review-slide-avatar.initials {
    background: var(--gradient);
}

/* Responsive */
@media (max-width: 768px) {
    .avatar-upload-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
    }
    
    .avatar-upload-actions {
        align-items: center;
    }
    
    .avatar-upload-btn {
        width: 100%;
        justify-content: center;
    }
    
    .avatar-upload-preview {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .avatar-upload-wrapper {
        padding: 12px;
    }
    
    .avatar-upload-preview {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .avatar-upload-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
    .avatar-upload-wrapper {
        background: #222244;
        border-color: #2a2a4a;
    }
    
    .avatar-upload-preview {
        background: #1a1a2e;
        border-color: #2a2a4a;
    }
    
    .avatar-upload-btn {
        background: #1a1a2e;
        border-color: #2a2a4a;
        color: #e0e0e8;
    }
    
    .avatar-upload-btn:hover {
        border-color: var(--purple);
        color: var(--purple);
    }
}


/* ===== DESKTOP STYLES - QR CARD ON RIGHT SIDE ===== */
        @media (min-width: 576px) {
            .left-column-mobile-wrapper {
                display: none !important;
            }

            .qr-card {
                position: relative;
                top: auto;
                left: auto;
                z-index: auto;
                max-width: 180px;
                margin-top: 0;
                padding: 16px;
                background: rgba(255, 255, 255, 0.92);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-radius: 16px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.3);
            }

            .qr-card .qr-title {
                font-size: 12px;
                font-weight: 700;
                color: #1D2433;
                margin-bottom: 8px;
                text-align: center;
                letter-spacing: 0.5px;
                text-transform: uppercase;
            }

            .qr-card .qr-box {
                width: 140px !important;
                height: 140px !important;
                margin: 0 auto !important;
                padding: 5px;
                background: #ffffff;
                border-radius: 12px;
            }

            .qr-card .qr-box canvas,
            .qr-card .qr-box img {
                width: 100% !important;
                height: 100% !important;
                max-width: 100% !important;
                max-height: 100% !important;
            }

            .qr-card .qr-caption {
                font-size: 10px;
                color: #6B7280;
                text-align: center;
                margin: 6px 0 10px;
                display: block !important;
            }

            .qr-card .qr-btn {
                display: block !important;
                width: 100%;
                padding: 8px 16px;
                background: var(--gradient);
                color: #fff;
                border: none;
                border-radius: 10px;
                font-size: 12px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .qr-card .qr-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(109, 76, 255, 0.3);
            }
        }

        /* ============================================================ */
        /* ===== RATING CARD - DYNAMIC THEME COLORS ===== */
        /* ============================================================ */
        .rating-card {
            background: white;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .rating-card:hover {
            box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
            border-color: var(--purple);
        }

        .rating-card-inner {
            text-align: center;
        }

        .rating-number-display {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
        }

        .rating-number-big {
            font-size: 48px;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .rating-number-outof {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-muted);
        }

        .rating-stars-display {
            font-size: 20px;
            color: #f5a623;
            margin: 4px 0 6px;
        }

        .rating-stars-display i {
            margin: 0 2px;
        }

        .rating-stars-display .bi-star {
            color: #d0d0d8;
        }

        .rating-total-reviews {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .rating-total-reviews i {
            color: var(--purple);
        }

        .rating-bars-container {
            margin: 16px 0 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .rating-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .rating-bar-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            min-width: 32px;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .rating-bar-label i {
            font-size: 10px;
            color: #f5a623;
        }

        .rating-bar-track {
            flex: 1;
            height: 6px;
            background: #f0f0f5;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .rating-bar-fill {
            height: 100%;
            border-radius: 10px;
            background: var(--gradient);
            transition: width 1.2s ease;
        }

        .rating-bar-count {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-muted);
            min-width: 24px;
            text-align: right;
        }

        .btn-write-review-card {
            width: 100%;
            padding: 10px 16px;
            border-radius: 50px;
            background: var(--gradient);
            color: white;
            border: none;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-write-review-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(109, 76, 255, 0.3);
            color: white;
        }

        .btn-write-review-card i {
            font-size: 16px;
        }

        /* ============================================================ */
        /* ===== RESPONSIVE - RATING CARD ===== */
        /* ============================================================ */
        @media (max-width: 768px) {
            .rating-card {
                padding: 18px 16px;
                border-radius: 14px;
            }

            .rating-number-big {
                font-size: 36px;
            }

            .rating-number-outof {
                font-size: 16px;
            }

            .rating-stars-display {
                font-size: 17px;
            }

            .rating-bars-container {
                gap: 4px;
                margin: 12px 0 16px;
            }

            .rating-bar-label {
                font-size: 11px;
                min-width: 28px;
            }

            .rating-bar-track {
                height: 5px;
            }

            .btn-write-review-card {
                font-size: 13px;
                padding: 8px 14px;
            }
        }

        @media (max-width: 480px) {
            .rating-card {
                padding: 14px 12px;
                border-radius: 12px;
            }

            .rating-number-big {
                font-size: 30px;
            }

            .rating-number-outof {
                font-size: 14px;
            }

            .rating-stars-display {
                font-size: 15px;
            }

            .rating-bar-label {
                font-size: 10px;
                min-width: 24px;
            }

            .rating-bar-label i {
                font-size: 8px;
            }

            .rating-bar-track {
                height: 4px;
            }

            .rating-bar-count {
                font-size: 10px;
                min-width: 20px;
            }

            .btn-write-review-card {
                font-size: 12px;
                padding: 6px 12px;
                gap: 6px;
            }

            .btn-write-review-card i {
                font-size: 14px;
            }
        }

        /* ===== INFO-DESC WITH READ MORE ===== */
        .info-desc-wrapper {
            position: relative;
        }



        .info-desc.expanded {
            display: block;
            -webkit-line-clamp: unset;
            -webkit-box-orient: unset;
            overflow: visible;
        }

        .read-more-btn {
            background: none;
            border: none;
            color: var(--purple);
            font-weight: 600;
            font-size: 12px;
            padding: 0;
            margin-top: 2px;
            cursor: pointer;
            text-decoration: underline;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: var(--indigo);
        }

        /* ===== READ MORE MODAL ===== */
        .readmore-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .readmore-modal-overlay.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .readmore-modal-box {
            background: white;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 28px 24px 20px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
            animation: slideUp 0.3s ease;
            position: relative;
        }

        .readmore-modal-box .modal-close-btn {
            position: absolute;
            top: 12px;
            right: 16px;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.3s ease;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .readmore-modal-box .modal-close-btn:hover {
            background: var(--bg);
            color: var(--text-dark);
        }

        .readmore-modal-box .modal-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            padding-right: 30px;
        }

        .readmore-modal-box .modal-title i {
            color: var(--purple);
            margin-right: 8px;
        }

        .readmore-modal-box .modal-body-text {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-dark);
            white-space: pre-line;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive for Read More Modal */
        @media (max-width: 575.98px) {
            .readmore-modal-box {
                padding: 20px 16px 16px;
                border-radius: 16px;
                margin: 10px;
            }

            .readmore-modal-box .modal-title {
                font-size: 16px;
            }

            .readmore-modal-box .modal-body-text {
                font-size: 13px;
                line-height: 1.7;
            }

            .readmore-modal-box .modal-close-btn {
                top: 8px;
                right: 10px;
                font-size: 24px;
            }
        }

        /* ============================================================ */
        /* PRODUCT SECTION - ONLY FOR YOUR CODE */
        /* ============================================================ */

        .product-card-item {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #E9ECF5;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

        .product-card-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
            border-color: var(--purple, #6D4CFF);
        }

        .product-image-wrap {
            position: relative;
            height: 150px;
            overflow: hidden;
            background: #f7f8fc;
            flex-shrink: 0;
        }

        .product-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card-item:hover .product-image-wrap img {
            transform: scale(1.05);
        }

        .product-badge-offer {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #FF6B6B, #FF3D00);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 16px rgba(255, 107, 107, 0.35);
            z-index: 2;
        }

        .product-info-body {
            padding: 16px 16px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            background: #ffffff;
            /* 👇 ye button ko hamesha bottom pe fix rakhega */
        }

        .product-name-text {
            font-size: 16px;
            font-weight: 700;
            color: #1D2433;
            margin: 0 0 0 0;
            line-height: 1.3;
        }

        .product-price-row {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .product-price {
            font-size: 20px;
            font-weight: 800;
            color: var(--purple, #6D4CFF);
        }

        .product-price-offer {
            font-size: 14px;
            font-weight: 500;
            color: #999;
            text-decoration: line-through;
        }

        .product-discount-tag {
            font-size: 11px;
            font-weight: 700;
            color: #2ECC71;
            background: rgba(46, 204, 113, 0.12);
            padding: 2px 12px;
            border-radius: 50px;
            border: 1px solid rgba(46, 204, 113, 0.2);
        }

        .product-desc-text {
            font-size: 13px;
            color: #6B7280;
            margin: 0 0 12px 0;
            line-height: 1.6;
        }

        .desc-more-link {
            color: var(--purple, #6D4CFF);
            font-weight: 700;
            font-size: 12px;
            cursor: pointer;
            white-space: nowrap;
            margin-left: 3px;
        }

        .desc-more-link:hover {
            text-decoration: underline;
        }

        /* ===== DESCRIPTION MODAL ===== */
        .desc-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .desc-modal-overlay.active {
            display: flex;
        }

        .desc-modal-box {
            background: #fff;
            border-radius: 16px;
            max-width: 480px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 24px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        }

        .desc-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #F7F8FC;
            border: 1px solid #E9ECF5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            color: #1D2433;
        }

        .desc-modal-close:hover {
            background: var(--purple, #6D4CFF);
            color: #fff;
        }

        .desc-modal-title {
            font-size: 18px;
            font-weight: 800;
            color: #1D2433;
            margin: 0 0 12px 0;
            padding-right: 30px;
        }

        .desc-modal-text {
            font-size: 14px;
            color: #6B7280;
            line-height: 1.7;
        }

        /* ✅ FIX: flex:1 hataya - ab ye stretch nahi hoga, isliye heading ke turant baad content start hoga */
        .product-features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 14px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 6px;
        }

        /* ✅ FIX: font chota + 2 items per row */
        .product-features-list li {
            font-size: 10.5px;
            font-weight: 600;
            color: #1D2433;
            display: flex;
            align-items: center;
            gap: 4px;
            background: #F7F8FC;
            padding: 4px 8px;
            border-radius: 20px;
            border: 1px solid #E9ECF5;
            transition: all 0.3s ease;
            flex: 1 1 calc(50% - 6px);
            max-width: calc(50% - 6px);
            box-sizing: border-box;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-features-list li i {
            font-size: 11px;
            color: #2ECC71;
            flex-shrink: 0;
        }

        .product-features-list li:hover {
            background: #6D4CFF;
            color: #fff;
            border-color: #6D4CFF;
        }

        .product-features-list li:hover i {
            color: #fff;
        }

        /* ✅ margin-top: auto -> button ko hamesha card ke bottom pe chipka deta he,
   chahe upar content kam ho ya zyada */
        .product-contact-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 2px 20px;
            border-radius: 50px;
            background: #25D366;
            color: #fff;
            font-weight: 700;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.4s ease;
            width: 100%;
            margin-top: auto;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
        }

        .product-contact-btn i {
            font-size: 18px;
        }

        .product-contact-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.40);
            color: #fff;
            background: #1da85c;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .product-image-wrap {
                height: 160px;
            }

            .product-info-body {
                padding: 12px 12px 14px;
            }

            .product-name-text {
                font-size: 14px;
            }

            .product-price {
                font-size: 17px;
            }

            .product-desc-text {
                font-size: 12px;
            }

            .product-features-list li {
                font-size: 10px;
                padding: 3px 8px;
                flex: 1 1 calc(50% - 6px);
                max-width: calc(50% - 6px);
            }

            .product-contact-btn {
                font-size: 12px;
                padding: 8px 16px;
            }
        }

        @media (max-width: 480px) {
            .product-image-wrap {
                height: 100px;
            }

            .product-info-body {
                padding: 10px 10px 12px;
            }

            .product-name-text {
                font-size: 13px;
            }

            .product-price {
                font-size: 15px;
            }

            .product-price-offer {
                font-size: 12px;
            }

            .product-desc-text {
                font-size: 11px;
            }

            .product-features-list {
                gap: 5px 5px;
            }
.product-features-list li {
    font-size: 8px !important;
    gap: 2px !important;
    padding: 2px 3px !important;
}

            .product-features-list li i {
                font-size: 9px;
            }

            .product-contact-btn {
                font-size: 11px;
                padding: 6px 12px;
            }

            .product-contact-btn i {
                font-size: 14px;
            }

            .product-badge-offer {
                font-size: 9px;
                padding: 3px 10px;
                top: 8px;
                right: 8px;
            }
        }

        /* ===== SLIDER NAVIGATION ===== */
        .product-slider-container {
            position: relative;
            padding: 0 0 10px 0;
        }

        .product-slide-item {
            height: auto;
        }

        .swiper-slide .product-card-item {
            height: 100%;
        }

        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid #E9ECF5;
            color: #1D2433;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .slider-nav-btn:hover {
            background: var(--purple, #6D4CFF);
            color: #fff;
            border-color: var(--purple, #6D4CFF);
        }

        .product-btn-prev {
            left: -18px;
        }

        .product-btn-next {
            right: -18px;
        }

        @media (max-width: 768px) {
            .slider-nav-btn {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .product-btn-prev {
                left: -10px;
            }

            .product-btn-next {
                right: -10px;
            }
        }

        @media (max-width: 480px) {
            .slider-nav-btn {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .product-btn-prev {
                left: -6px;
            }

            .product-btn-next {
                right: -6px;
            }
        }
        @media (max-width: 576px) {
      .about-description-text {
            font-size: 10.5px;
        }
        .contact-detail-list {
    gap: 0px !important;
}
        }

        .btn-view-more-products {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: var(--gradient);
    color: #fff !important;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(109, 76, 255, 0.25);
}

.btn-view-more-products:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(109, 76, 255, 0.35);
    color: #fff !important;
}