﻿input, textarea, button {
    font-family: "Vazirmatn", Tahoma, sans-serif;
}

.service-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, #00a8a3 0%, #00d4cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Container Styles */
.video-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

    .video-container video {
        width: 100%;
        height: auto;
        display: block;
    }

/* Alternative: Aspect Ratio Container (16:9) */
.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Custom video controls styling */
video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
}

.eye-graphic {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .eye-graphic::before {
        content: '';
        position: absolute;
        width: 280px;
        height: 280px;
        border: 3px dashed rgba(0,168,163,0.3);
        border-radius: 50%;
        animation: rotate 20s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-title {
    color: #027f7b;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-highlight {
    color: #f98f0e;
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

.info-box {
    background: #fffbf0;
    border: 2px solid #f98f0e;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

    .info-box p {
        color: #666;
        line-height: 1.8;
    }

.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    transition: all 0.3s ease;
    user-select: none;
}

    .faq-question:hover {
        background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    }

    .faq-question.active {
        background: linear-gradient(135deg, #219aa2 0%, #07485f 100%);
        color: white;
    }

.question-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.question-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question.active .question-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.6;
}

.faq-question.active .question-text {
    color: white;
}

.toggle-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #667eea;
}

.faq-question.active .toggle-icon {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

    .faq-answer.show {
        max-height: 500px;
        padding: 25px;
    }

.answer-content {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

    .answer-content ul {
        margin-top: 10px;
        padding-right: 20px;
    }

    .answer-content li {
        margin-bottom: 8px;
        list-style: none;
        position: relative;
        padding-right: 25px;
    }

        .answer-content li::before {
            content: '✓';
            position: absolute;
            right: 0;
            color: #667eea;
            font-weight: bold;
        }

    .answer-content p.shoutout {
        margin-top: 15px;
        padding: 10px;
        background: #f7fafc;
        border-right: 3px solid #667eea;
    }

/* Basic article image styling */
.article-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Center all images in article content */
.content img, .content video {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Full-width image option */
.image-full {
    max-width: 100%;
    width: 100%;
}

/* Medium-sized centered image */
.image-medium {
    max-width: 750px;
    width: 100%;
}

/* Small-sized centered image */
.image-small {
    max-width: 500px;
    width: 100%;
}

/* Image with white background frame */
.image-framed {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px auto;
    max-width: fit-content;
}

    .image-framed img {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 0;
        box-shadow: none;
    }

@media print {
    .form-container {
        display: none !important;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    margin-top: 80px;
}

.footer-top {
    padding: 60px 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-title {
    color: #00a8a3;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #00a8a3 0%, transparent 100%);
    }

.footer-description {
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0,168,163,0.1);
        border: 1px solid rgba(0,168,163,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00a8a3;
        transition: all 0.3s;
    }

        .social-links a:hover {
            background: #00a8a3;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,168,163,0.4);
        }

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: #00a8a3;
            transform: translateX(-5px);
        }

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 14px;
}

    .contact-item svg {
        color: #00a8a3;
        flex-shrink: 0;
        margin-top: 2px;
    }

.working-hours {
    background: rgba(0,168,163,0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0,168,163,0.2);
}

    .working-hours h4 {
        color: #00a8a3;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .working-hours p {
        color: #b0b0b0;
        font-size: 13px;
        margin-bottom: 5px;
    }

/ Footer Middle / .footer-middle {
    padding: 30px 20px;
    background: rgba(0,168,163,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

    .badge-item:hover {
        transform: scale(1.1);
    }

    .badge-item span {
        color: #b0b0b0;
        font-size: 13px;
    }

/ Footer Bottom / .footer-bottom {
    padding: 20px;
    background: #000;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #808080;
    font-size: 13px;
}

.developer {
    color: #808080;
    font-size: 13px;
}

    .developer a {
        color: #00a8a3;
        text-decoration: none;
        transition: all 0.3s;
    }

        .developer a:hover {
            color: #00d4cc;
            text-decoration: underline;
        }

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 30px;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        background: white;
        transition: right 0.3s;
    }

    .service-banner {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 24px;
    }
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .whatsapp-popup.show {
        opacity: 1;
        visibility: visible;
    }

.whatsapp-popup-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.whatsapp-popup.show .whatsapp-popup-content {
    transform: scale(1);
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0% {
        transform: scale(0.7);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .popup-close:hover {
        background: #ff4444;
        color: white;
        transform: rotate(90deg);
    }

.popup-header {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.popup-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.popup-body {
    padding: 30px;
}

.popup-message {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

    .whatsapp-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
        background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    }

.popup-footer {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
/* Mobile Responsive */ @media (max-width: 768px) {
    .whatsapp-popup-content {
        width: 95%;
        margin: 20px;
    }

    .popup-header {
        padding: 20px;
    }

    .popup-body {
        padding: 20px;
    }

    .whatsapp-icon-large {
        width: 60px;
        height: 60px;
    }

    .popup-header h3 {
        font-size: 18px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

    .whatsapp-float.show {
        opacity: 1;
        transform: scale(1) rotate(0);
        animation: floatBounce 2s ease-in-out infinite;
    }

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0);
    }

    50% {
        transform: translateY(-10px) scale(1) rotate(5deg);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    animation-play-state: paused;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.float-tooltip {
    position: absolute;
    left: 80px;
    background: #29a583;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    /* opacity: 0; */
    transform: translateX(-10px);
    transition: all 0.3s;
    pointer-events: none;
}

    .float-tooltip::before {
        content: '';
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-right: 6px solid #29a583;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}
/* Shrinking animation for popup */
.whatsapp-popup-content.shrinking {
    animation: shrinkToIcon 0.5s ease-in-out forwards;
}

@keyframes shrinkToIcon {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.5) translateX(-200px) translateY(200px);
        opacity: 0.8;
    }

    100% {
        transform: scale(0) translateX(-400px) translateY(400px);
        opacity: 0;
    }
}
/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }
    /*.float-tooltip { display: none; } */
}
/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        background: white;
        transition: right 0.3s;
    }

    .service-banner {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 24px;
    }
}

button.cta {
    background: linear-gradient(135deg, #f6a44f 0%, #f5932f 100%);
    color: black;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Vazirmatn", Tahoma, sans-serif;
}


/* =========================================================================================== */
/* COMMENTS SECTION and PAGE */
/* =========================================================================================== */

/* <style > MOVED FROM PaginatedView page to here */

.comments-page-header {
    background: linear-gradient(135deg, #106b7c 0%, #07485f 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

    .comments-page-header h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

.page-indicator {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 16px;
}

.comments-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #00d4cc;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

    .pagination-nav a, .pagination-nav span {
        display: inline-block;
        padding: 10px 15px;
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: 0.3s;
        min-width: 45px;
        text-align: center;
    }

        .pagination-nav a:hover {
            background: #00a8a3;
            color: white;
            border-color: #00a8a3;
            transform: translateY(-2px);
        }

    .pagination-nav .current {
        background: #07485f;
        color: white;
        border-color: #07485f;
        font-weight: bold;
    }

    .pagination-nav .ellipsis {
        border: none;
        background: none;
        cursor: default;
    }

    .pagination-nav .prev-next {
        background: #00a8a3;
        color: white;
        border-color: #00a8a3;
        padding: 10px 20px;
    }

        .pagination-nav .prev-next:hover {
            background: #07485f;
            border-color: #07485f;
        }

    .pagination-nav .disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background: #f0f0f0;
        color: #333;
    }

        .pagination-nav .disabled:hover {
            transform: none;
            background: #f0f0f0;
            color: #999;
            border-color: #e0e0e0;
        }

.comments-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.comment-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

.comment-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: bold;
}

.comment-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00a8a3, #07485f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin-left: 15px;
}

.comment-meta h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
}

.comment-date {
    color: #999;
    font-size: 13px;
}

.comment-body {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 15px;
}

.comment-actions {
    display: flex;
    gap: 10px;
}

.comment-replies {
    margin-top: 25px;
    margin-right: 50px;
    padding-right: 20px;
}

.comments-container button {
    background: none;
    border: 1px solid #00a8a3;
    color: #00a8a3;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    gap: 5px;
}

    .comments-container button:hover {
        background: #f5f5f5;
        border-color: #00a8a3;
        color: #00a8a3;
    }

.reply-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-right: 3px solid #00a8a3;
    word-wrap: break-word;
}

.reply-form-wrapper {
    display: block;
    margin-top: 15px;
    padding: 15px;
    background: rgb(248, 249, 250);
    border-radius: 8px;
}

.breadcrumb-schema {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

    .breadcrumb-schema ol {
        display: flex;
        list-style: none;
        gap: 10px;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
    }

    .breadcrumb-schema a {
        color: #00a8a3;
        text-decoration: none;
    }

        .breadcrumb-schema a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .comments-page-header h1 {
        font-size: 24px;
    }

    .pagination-nav {
        padding: 0 10px;
    }

        .pagination-nav a, .pagination-nav span {
            padding: 8px 12px;
            font-size: 14px;
            min-width: 40px;
        }

    .comments-container {
        padding: 0 5px;
    }

    .comment-item {
        padding: 20px 15px;
    }

    .comment-number {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }

    .comment-replies {
        margin-right: 0;
    }
}

/* </style > MOVED FROM PaginatedView page to here */






.comments-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

    .comments-section .comments-header {
        border-bottom: 3px solid #00a8a3;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

        .comments-section .comments-header h2 {
            color: #07485f;
            font-size: 24px;
        }

            .comments-section .comments-header h2 span {
                color: #00a8a3;
            }

    .comments-section .comment-alert {
        display: none;
        margin-bottom: 20px;
    }

/* NEW COMMENT FORM */


.cta-btns-placeholder {
    margin-bottom: 20px;
}

    .cta-btns-placeholder button {
        background: linear-gradient(135deg, #00a8a3 0%, #07485f 100%);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
    }


/*
.comments-sction .comment-form-container {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
}

    .comments-sction .comment-form-container .form-header {
        margin-bottom: 20px;
    }

    .comments-sction .comment-form-container h3 {
        color: #333;
    }*/

.comments-container .form-group {
    margin-bottom: 10px;
}

    .comments-container .form-group input,
    .comments-container .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .comments-container .form-group textarea {
        resize: vertical;
    }

    .comments-container .form-group span.error-text {
        color: red;
        font-size: 12px;
        display: none;
    }

.comments-container .submit-btn {
    background: #00a8a3;
    color: white;
}

.comments-container .cancel-btn {
    background: #ccc;
    border: 1px solid #ccc;
    color: #333;
    margin-right: 10px;
}

.reply-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    background: #00a8a3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    margin-left: 12px;
}

#add-first-comment {
    background: #f8f9fa;
    padding: 40px 20px;
}

    #add-first-comment .wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    #add-first-comment h2 {
        margin-bottom: 15px;
    }
/*
    FORMS
*/
/* PHONE SUBMISSION FORM */
.call-for-offer.form-container {
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    max-width: 600px;
    width: 100%;
    overflow: hidden;
}

    .call-for-offer.form-container .offer-section {
        background: linear-gradient(135deg, #e3f9f9 0%, #c8f0f0 100%);
        border: 3px solid #4ac5c3;
        border-radius: 20px 20px 0 0;
        padding: 30px;
        text-align: center;
        position: relative;
    }

    .call-for-offer.form-container .discount-badge {
        background: #f93232; /* #ff6b6b; */
        color: white;
        padding: 10px 25px;
        border-radius: 30px;
        font-size: 24px;
        font-weight: bold;
        box-shadow: 0 5px 15px rgba(255,107,107,0.3);
        animation: pulse 2s infinite;
    }


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.call-for-offer.form-container .offer-title {
    color: #2c3e50;
    font-size: 20px;
    line-height: 1.8;
    margin: 20px 0;
    font-weight: bold;
}

.call-for-offer.form-container .offer-subtitle {
    color: #34495e;
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.6;
}

.call-for-offer.form-container .phone-input-preview {
    display: inline-block;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 20px;
    font-family: monospace;
    font-size: 18px;
    color: #6c757d;
    margin: 15px 0;
    letter-spacing: 2px;
}

.call-for-offer.form-container .form-section {
    padding: 40px 30px;
    background: white;
}

.call-for-offer.form-container .form-header {
    text-align: center;
    margin-bottom: 30px;
}

    .call-for-offer.form-container .form-header h2 {
        color: #2c3e50;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .call-for-offer.form-container .form-header p {
        color: #7f8c8d;
        font-size: 14px;
    }

.call-for-offer.form-container .form-group {
    margin-bottom: 25px;
    position: relative;
}

    .call-for-offer.form-container .form-group label {
        display: block;
        color: #34495e;
        font-size: 14px;
        margin-bottom: 8px;
        font-weight: 600;
    }

        .call-for-offer.form-container .form-group label .required {
            color: #e74c3c;
            margin-right: 3px;
        }

.call-for-offer.form-container .form-input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 45px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fafbfc;
}

    .call-for-offer.form-container .form-input:focus {
        outline: none;
        border-color: #4ac5c3;
        background: white;
        box-shadow: 0 0 0 4px rgba(74,197,195,0.1);
    }

    .call-for-offer.form-container .form-input.error {
        border-color: #e74c3c;
        background: #fff5f5;
    }

.call-for-offer.form-container .input-icon {
    position: absolute;
    right: 15px;
    top: 42px;
    color: #95a5a6;
    font-size: 18px;
}

.call-for-offer.form-container .error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

    .call-for-offer.form-container .error-message.show {
        display: block;
        animation: shake 0.3s;
    }

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.call-for-offer.form-container .phone-format-hint {
    color: #7f8c8d;
    font-size: 12px;
    margin-top: 5px;
}

.call-for-offer.form-container .submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4ac5c3 0%, #3aa8a6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .call-for-offer.form-container .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(74,197,195,0.3);
    }

    .call-for-offer.form-container .submit-btn:active {
        transform: translateY(0);
    }

    .call-for-offer.form-container .submit-btn.loading {
        background: #95a5a6;
        pointer-events: none;
    }

        .call-for-offer.form-container .submit-btn.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 3px solid white;
            border-top-color: transparent;
            border-radius: 50%;
            left: 50%;
            top: 50%;
            margin-left: -10px;
            margin-top: -10px;
            animation: spin 1s linear infinite;
        }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.call-for-offer.form-container .success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

    .call-for-offer.form-container .success-message.show {
        display: block;
        animation: slideIn 0.3s ease-out;
    }

.call-for-offer.form-container .privacy-note {
    text-align: center;
    margin-top: 20px;
    color: #7f8c8d;
    font-size: 12px;
    line-height: 1.6;
}

    .call-for-offer.form-container .privacy-note a {
        color: #4ac5c3;
        text-decoration: none;
    }

        .call-for-offer.form-container .privacy-note a:hover {
            text-decoration: underline;
        }

.call-for-offer.form-container .icon-user::before {
    content: '👤';
}

.call-for-offer.form-container .icon-phone::before {
    content: '📱';
}

/* Loading overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

    .overlay.show {
        display: flex;
    }

.modal {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* 
-------------------------------------------------------------------------------------------------------------    
    Base Info Panel Styles 
-------------------------------------------------------------------------------------------------------------
*/
.info-panel {
    margin-bottom: 30px;
    padding: 20px 25px;
    border-radius: 12px;
    position: relative;
    animation: fadeIn 0.5s ease-out;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .info-panel:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Panel Header with Icon */
.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.panel-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

/* Panel Content */
.panel-content {
    color: #34495e;
    font-size: 15px;
    line-height: 1.9;
}

    .panel-content strong {
        font-weight: bold;
        color: inherit;
    }

    .panel-content a {
        color: inherit;
        font-weight: bold;
        text-decoration: underline;
        transition: all 0.3s;
    }

        .panel-content a:hover {
            opacity: 0.8;
        }

/* Close Button */
.panel-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
    color: inherit;
}

    .panel-close:hover {
        background: rgba(255,255,255,0.8);
        transform: rotate(90deg);
    }

/* Action Button */
.panel-action {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.panel-btn {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .panel-btn:hover {
        transform: translateX(-5px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    }

/* Panel Variants */

/* Info/Default Style */
.info-panel.info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-right: 4px solid #2196f3;
    color: #0d47a1;
}

    .info-panel.info .panel-icon {
        /*background: #2196f3;*/
        color: white;
    }

    .info-panel.info .panel-btn {
        color: #2196f3;
    }

/* Warning Style */
.info-panel.warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-right: 4px solid #ff9800;
    color: #e65100;
}

    .info-panel.warning .panel-icon {
        color: white;
    }

    .info-panel.warning .panel-btn {
        color: #ff9800;
    }

/* Success Style */
.info-panel.success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-right: 4px solid #4caf50;
    color: #1b5e20;
}

    .info-panel.success .panel-icon {
        /*background: #4caf50;*/
        color: white;
    }

    .info-panel.success .panel-btn {
        color: #4caf50;
    }

/* Danger/Error Style */
.info-panel.danger {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-right: 4px solid #f44336;
    color: #b71c1c;
}

    .info-panel.danger .panel-icon {
        background: #f44336;
        color: white;
    }

    .info-panel.danger .panel-btn {
        color: #f44336;
    }

/* Medical/Health Style */
.info-panel.medical {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-right: 4px solid #00bcd4;
    color: #006064;
}

    .info-panel.medical .panel-icon {
        /*background: #00bcd4;*/
        color: white;
    }

    .info-panel.medical .panel-btn {
        color: #00bcd4;
    }

/* Simple Style (No gradient) */
.info-panel.simple {
    background: white;
    border: 2px solid #e0e0e0;
    border-right: 4px solid #00a8a3;
}

    .info-panel.simple .panel-icon {
        /*background: #00a8a3;*/
        color: white;
    }

    .info-panel.simple .panel-btn {
        color: #00a8a3;
        background: #f0fffe;
    }

/* Compact Style (No header) */
.info-panel.compact {
    background: #f8f9fa;
    border-right: 3px solid #6c757d;
    padding: 15px 20px;
}

    .info-panel.compact .panel-content {
        margin: 0;
        color: #495057;
        font-size: 14px;
    }

/* Featured/Highlight Style */
.info-panel.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

    .info-panel.featured .panel-icon {
        /*background: rgba(255,255,255,0.2);*/
        color: white;
    }

    .info-panel.featured .panel-content {
        color: rgba(255,255,255,0.95);
    }

    .info-panel.featured .panel-btn {
        background: white;
        color: #667eea;
    }

    .info-panel.featured .panel-close {
        color: white;
        background: rgba(255,255,255,0.2);
    }

/* Expandable Panel */
.info-panel.expandable .panel-content {
    max-height: 60px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.info-panel.expandable.expanded .panel-content {
    max-height: 500px;
}

.info-panel.expandable .expand-btn {
    display: inline-block;
    margin-top: 10px;
    color: #00a8a3;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

    .info-panel.expandable .expand-btn:hover {
        text-decoration: underline;
    }

/* List Style Panel */
.panel-list {
    margin-top: 15px;
    padding-right: 20px;
}

    .panel-list li {
        margin-bottom: 8px;
        position: relative;
        padding-right: 15px;
    }

        .panel-list li::before {
            content: '✓';
            position: absolute;
            right: 0;
            color: #4caf50;
            font-weight: bold;
        }

/* Responsive */
@media (max-width: 768px) {
    .info-panel {
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .panel-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .panel-title {
        font-size: 16px;
    }

    .panel-content {
        font-size: 14px;
    }

    .panel-close {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
}

/* Animation Classes */
.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}





@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-left: 20px; /* so logo shows nicely */
    }

    .nav-container {
        padding: 10px 15px;
        flex-direction: row-reverse;
        justify-content: right;
    }

    .search-box {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        gap: 0;
    }

        .nav-menu.active {
            right: 0;
        }

    /* Mobile overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

        .mobile-overlay.active {
            display: block;
        }

    .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

        .nav-item > a {
            padding: 15px 20px;
            font-size: 16px;
        }

    /* Mobile dropdown */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        display: none;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .dropdown a {
        padding-right: 40px;
        font-size: 14px;
    }

    /* Add arrow for items with dropdown */
    .nav-item.has-dropdown > a::after {
        content: '▼';
        position: absolute;
        left: 20px;
        font-size: 12px;
        transition: transform 0.3s;
    }

    .nav-item.has-dropdown.active > a::after {
        transform: rotate(180deg);
    }

    /* Mobile search box at top of menu */
    .mobile-search {
        display: flex;
        align-items: center;
        background: #f5f5f5;
        margin: 0 20px 20px;
        padding: 10px 15px;
        border-radius: 25px;
    }

        .mobile-search input {
            border: none;
            background: none;
            outline: none;
            flex: 1;
            padding: 5px;
            font-family: inherit;
        }

    .hero h1 {
        font-size: 24px;
    }

    .service-banner {
        flex-direction: column;
    }

    .service-content {
        padding: 20px;
    }

    .service-image {
        min-height: 250px;
    }

    .featured-image-section {
        padding: 20px 15px;
    }

    .featured-image {
        border-radius: 10px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-container,
    .video-wrapper {
        margin: 20px auto;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .eye-graphic {
        width: 200px;
        height: 200px;
    }

        .eye-graphic::before {
            width: 180px;
            height: 180px;
        }

    .service-highlight {
        font-size: 18px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .question-text {
        font-size: 1rem;
    }

    .answer-content {
        font-size: 0.95rem;
    }

    .content img,
    .article-image {
        max-width: 100%;
        margin: 20px auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .image-framed {
        padding: 10px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }

        .hero h1 {
            font-size: 20px;
        }

    .nav-menu {
        width: 100%;
        max-width: none;
    }

    .content {
        padding: 0 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .featured-image-section {
        padding: 15px 10px;
    }

    .content img,
    .article-image {
        margin: 15px auto;
        border-radius: 6px;
    }

    .image-framed {
        padding: 8px;
        margin: 15px auto;
    }

    .video-container,
    .video-wrapper {
        margin: 15px 0;
        border-radius: 0;
    }

    /* FORMS */
    .form-container {
        margin: 10px;
    }

    .offer-section {
        padding: 20px;
    }

    .form-section {
        padding: 25px 20px;
    }

    .discount-badge {
        font-size: 20px;
        padding: 8px 20px;
    }

    .offer-title {
        font-size: 18px;
    }

    .phone-input-preview {
        font-size: 16px;
        padding: 10px 15px;
    }
}



/*  
================================================================================================================================================================================================
    
    
    Table Styles 

================================================================================================================================================================================================
*/
.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding: 20px;
}

.table-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .table-title::before,
    .table-title::after {
        content: '';
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, transparent, #00a8a3, transparent);
    }

/* Basic Table */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 600px;
    margin-bottom: 30px;
}

    table thead tr {
        background: linear-gradient(135deg, #00a8a3 0%, #00d4cc 100%);
        color: white;
        text-align: right;
        font-weight: bold;
    }

    table th,
    table td {
        padding: 15px 20px;
        border: 1px solid #e0e0e0;
    }

    table tbody tr {
        background: white;
        transition: all 0.3s;
    }

        table tbody tr:nth-of-type(even) {
            background: #f9f9f9;
        }

        table tbody tr:hover {
            background: #e8f5f4;
            transform: scale(1.01);
            box-shadow: 0 2px 8px rgba(0,168,163,0.1);
        }

        table tbody tr.active-row {
            font-weight: bold;
            color: #00a8a3;
            background: #e8f5f4;
        }

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #e0e0e0;
}

    .comparison-table thead tr {
        background: linear-gradient(135deg, #006b68 0%, #00a8a3 100%);
    }

    .comparison-table th {
        padding: 18px 20px;
        color: white;
        font-weight: 600;
        text-align: center;
        font-size: 16px;
        position: relative;
    }

        .comparison-table th:first-child {
            text-align: right;
            background: #00504d;
        }

    .comparison-table td {
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid #e8e8e8;
        border-left: 1px solid #e8e8e8;
    }

        .comparison-table td:first-child {
            text-align: right;
            font-weight: 600;
            background: #f5f5f5;
            color: #333;
            border-left: none;
        }

    .comparison-table tbody tr:hover td {
        background: #f0fffe;
    }

        .comparison-table tbody tr:hover td:first-child {
            background: #e0f2f1;
        }

/* Feature Icons in Tables */
.check {
    color: #4caf50;
    font-size: 20px;
    font-weight: bold;
}

.cross {
    color: #f44336;
    font-size: 20px;
    font-weight: bold;
}

.partial {
    color: #ff9800;
    font-size: 20px;
    font-weight: bold;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
    margin: 40px 0;
}

    .pricing-table thead tr {
        background: none;
    }

    .pricing-table th {
        background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
        color: white;
        padding: 20px;
        border-radius: 10px 10px 0 0;
        font-size: 18px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }

    .pricing-table tbody td {
        background: white;
        padding: 20px;
        text-align: center;
        border: 2px solid #f0f0f0;
        position: relative;
        transition: all 0.3s;
    }

        .pricing-table tbody td:hover {
            border-color: #00a8a3;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,168,163,0.2);
        }

    .pricing-table .price {
        font-size: 28px;
        color: #00a8a3;
        font-weight: bold;
        margin: 10px 0;
    }

    .pricing-table .price-old {
        text-decoration: line-through;
        color: #999;
        font-size: 18px;
        display: block;
        margin-bottom: 5px;
    }

    .pricing-table .discount-badge {
        position: absolute;
        top: -10px;
        left: 10px;
        background: #f44336;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

    .info-table th {
        background: #f8f9fa;
        padding: 15px 20px;
        text-align: right;
        color: #00a8a3;
        font-weight: 600;
        border-bottom: 2px solid #00a8a3;
        width: 30%;
    }

    .info-table td {
        padding: 15px 20px;
        border-bottom: 1px solid #e9ecef;
        line-height: 1.8;
    }

    .info-table tr:last-child td {
        border-bottom: none;
    }

    .info-table tr:hover {
        background: #f8fffe;
    }

/* Responsive Table */
.responsive-table {
    display: table;
    width: 100%;
}

@media (max-width: 768px) {
    .table-wrapper {
        padding: 10px;
        margin: 20px -10px;
    }

    table,
    .styled-table,
    .comparison-table,
    .pricing-table,
    .info-table {
        font-size: 13px;
    }

        table th,
        .styled-table th,
        .styled-table td,
        .comparison-table th,
        .comparison-table td {
            padding: 10px;
        }

        .pricing-table .price {
            font-size: 22px;
        }

    /* Stack table on mobile */
    .mobile-stack {
        display: block;
    }

        .mobile-stack thead {
            display: none;
        }

        .mobile-stack tr {
            display: block;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }

        .mobile-stack td {
            display: block;
            text-align: right !important;
            padding: 10px 15px;
            position: relative;
            padding-right: 50%;
        }

            .mobile-stack td::before {
                content: attr(data-label);
                position: absolute;
                right: 15px;
                width: 45%;
                text-align: right;
                font-weight: bold;
                color: #00a8a3;
            }
}

/* Badge Styles for Tables */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #e8f5e9;
    color: #4caf50;
}

.badge-warning {
    background: #fff3e0;
    color: #ff9800;
}

.badge-info {
    background: #e3f2fd;
    color: #2196f3;
}

.badge-danger {
    background: #ffebee;
    color: #f44336;
}

/* Highlight Row */
.highlight-row {
    background: linear-gradient(90deg, rgba(0,168,163,0.1) 0%, rgba(0,212,204,0.1) 100%);
    font-weight: 600;
}

/* Table Caption */
.table-caption {
    caption-side: bottom;
    padding: 10px;
    color: #6c757d;
    font-size: 13px;
    font-style: italic;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    table {
        min-width: 100%;
        font-size: 14px;
    }
}