/* ================= BOOK APPOINTMENT BUTTON ================= */

.book-appointment-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    animation: slideInRight 0.6s ease-out;
}

.book-appointment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #000;
    border: 2px solid #000;
    border-radius: 8px 0 0 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

.book-appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
    z-index: -1;
}

.book-appointment-btn:hover::before {
    left: 100%;
}

.book-appointment-btn:hover {
    transform: rotate(180deg) translateX(8px) scale(1.08);
    box-shadow: -8px 8px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFC700 0%, #FFB700 100%);
}

.book-appointment-btn:active {
    transform: rotate(180deg) translateX(3px) scale(1.02);
}

.book-appointment-btn i {
    font-size: 16px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .book-appointment-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .book-appointment-btn {
        padding: 10px 12px;
        font-size: 11px;
        gap: 6px;
    }
    
    .book-appointment-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .book-appointment-btn {
        padding: 9px 10px;
        font-size: 10px;
        gap: 5px;
    }
    
    .book-appointment-btn i {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .book-appointment-btn {
        padding: 8px 9px;
        font-size: 9px;
    }
}

/* ================= STICKY FLOATING BUTTONS ================= */

.sticky-buttons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    animation: slideInLeft 0.6s ease-out;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: -1;
}

.sticky-btn:hover::before {
    left: 100%;
}

.sticky-btn:hover {
    transform: scale(1.15) translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.call-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.call-btn:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #34c759 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5c 0%, #2ab34f 100%);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.sticky-btn span {
    font-size: 11px;
    position: absolute;
    opacity: 0;
    right: -50px;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-btn:hover span {
    opacity: 1;
    right: 60px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* TABLET RESPONSIVE */
@media (max-width: 1024px) {
    .sticky-buttons {
        bottom: 25px;
        left: 15px;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    
    .sticky-buttons {
        left: auto;
        right: 12px;
        bottom: 25px;
        flex-direction: column;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    .sticky-btn:hover {
        transform: scale(1.08);
    }
    
    .sticky-btn span {
        display: none;
    }
}

/* MOBILE SMALL DEVICES */
@media (max-width: 480px) {
    body {
        padding-bottom: 70px;
    }
    
    .sticky-buttons {
        right: 10px;
        bottom: 20px;
        gap: 8px;
        flex-direction: column;
    }
    
    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .sticky-btn:hover {
        transform: scale(1.05);
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 360px) {
    body {
        padding-bottom: 65px;
    }
    
    .sticky-buttons {
        right: 8px;
        bottom: 15px;
        gap: 6px;
        flex-direction: column;
    }
    
    .sticky-btn {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}

/* ================= PREMIUM STATS SECTION ================= */

.premium-stats-section {
    position: relative;
    padding: 30px 0;
    margin-top: 13px;
    margin-bottom: 13px;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0d3b66 100%);
    z-index: -2;
}

.stats-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    animation: slideInUp 0.8s ease-out;
}

/* STAT CARDS */
.stat-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: default;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.stat-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-15px);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover::after {
    opacity: 1;
    top: -50%;
    left: -50%;
}

/* STAT ICON */
.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.stat-card:hover .stat-icon {
    animation: floatIconHover 0.6s ease-out forwards;
}

@keyframes floatIconHover {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1.15) rotate(-5deg); }
}

/* STAT CONTENT */
.stat-content {
    position: relative;
    z-index: 1;
}

/* STAT NUMBER */
.stat-number {
    font-size: 64px;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, #d4af37 0%, #f5d547 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-symbol {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    margin-left: 5px;
    vertical-align: super;
}

.rating-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.rating-wrapper .stat-number {
    font-size: 56px;
}

.rating-wrapper .stat-symbol {
    font-size: 18px;
    margin-left: 0;
}

/* STAT LABEL */
.stat-label {
    font-size: 14px;
    color: #d1d5db;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 15px 0 0 0;
    line-height: 1.5;
}

/* STAT DIVIDER */
.stat-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    margin-top: 15px;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.stat-card:hover .stat-divider {
    width: 60px;
    opacity: 1;
    background: linear-gradient(90deg, #d4af37, #f5d547);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* TRUST LINE */
.trust-line {
    text-align: center;
    padding: 30px;
    margin-top: 30px;
}

.trust-line p {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
}

.trust-line p::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* COUNT UP ANIMATION */
@keyframes countUp {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .premium-stats-section {
        padding: 60px 20px;
    }
    
    .stats-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .stat-card {
        padding: 35px 25px;
        border-radius: 18px;
    }
    
    .stat-number {
        font-size: 52px;
    }
    
    .stat-symbol {
        font-size: 26px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .premium-stats-section {
        padding: 50px 15px;
    }
    
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .stat-card {
        padding: 25px 18px;
        border-radius: 15px;
    }
    
    .stat-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-symbol {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-top: 10px;
    }
    
    .stat-divider {
        margin-top: 10px;
    }
    
    .rating-wrapper {
        flex-wrap: wrap;
    }
    
    .rating-wrapper .stat-number {
        font-size: 36px;
    }
    
    .trust-line {
        padding: 20px 15px;
        margin-top: 25px;
    }
    
    .trust-line p {
        font-size: 14px;
    }
    
    .stat-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .premium-stats-section {
        padding: 40px 0;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
        padding: 0 12px;
    }
    
    .stat-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .stat-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-symbol {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
        margin-top: 8px;
    }
    
    .stat-divider {
        width: 30px;
        margin-top: 8px;
    }
    
    .stat-card:hover .stat-divider {
        width: 45px;
    }
    
    .rating-wrapper {
        gap: 3px;
    }
    
    .rating-wrapper .stat-number {
        font-size: 32px;
    }
    
    .rating-wrapper .stat-symbol {
        font-size: 14px;
    }
    
    .trust-line {
        padding: 15px 12px;
        margin-top: 20px;
    }
    
    .trust-line p {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 360px) {
    .premium-stats-section {
        padding: 30px 0;
    }
    
    .stats-wrapper {
        gap: 10px;
        padding: 0 10px;
    }
    
    .stat-card {
        padding: 18px 14px;
    }
    
    .stat-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-symbol {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 9px;
        margin-top: 6px;
    }
    
    .rating-wrapper .stat-number {
        font-size: 28px;
    }
    
    .trust-line p {
        font-size: 11px;
    }
}



/* stick utton */
html .njs-sticky-side.image_button_cover.placement-right {
    right: 0;
}

html .njs-sticky-side.image_button_cover {
    position: fixed;
    top: 50%;
    box-shadow: none;
    z-index: 99999;
    transition: transform .3s cubic-bezier(0,0,0,1);
    -webkit-transition: -webkit-transform .3s cubic-bezier(0,0,0,1);
}

html .njs-sticky-side.image_button_cover.placement-right.now-show a {
    transform: translate3d(4px,0,0) rotate(-90deg);
    -webkit-transform: translate3d(4px,0,0) rotate(-90deg);
}

html .njs-sticky-side.image_button_cover.placement-right a {
    border-radius: 3px 3px 0 0;
    transform: translate3d(200%,0,0) rotate(-90deg);
    -webkit-transform: translate3d(200%,0,0) rotate(-90deg);
    transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
}

html .njs-sticky-side.image_button_cover a {
    padding: 6px 15px 12px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
	background-color: black; 
	color: white;	
  font-weight: 100; 
  top: -106.5px; 
  font-family: 'Arial';
}

html .njs-sticky-side.image_button_cover a:hover {
	background-color: white;
	color: black;
	border: 2px solid #acacac;
}