/* ============================================
   GLOBAL OVERRIDES
   ============================================ */
.sec-title__title {
    color: black !important;
}

.attr-remove, .form-control {
    background-color: white !important;
    color: black !important;
}

.inner-page-hero__inner-content {
    padding: 0 !important;
}

.section-header__right-bg {
    border-radius: 0px !important;
}

.section-header .container-fluid {
    max-width: 100%;
    margin-top: 0px !important;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding: 0 !important;
}

.section-hero .container {
    max-width: 1430px;
}

section.section-hero.inner-page-hero h1 {
    line-height: 40px !important;
}

.section-hero.inner-page-hero .row.align-items-center p.lead.mb-0 {
    /*padding-left: 10.5%;*/
}

.section-hero.inner-page-hero img.me-4.rounded-circle {
    margin-top: 11px;
}

/* ============================================
   UNIVERSAL CARD SYSTEM (Bootstrap-based)
   ============================================ */

/* Card Container - Main wrapper for card sections */
.card-modern {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08);
    margin-bottom: 1.875rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.card-modern:hover {
    box-shadow: 0 0.9375rem 3.75rem rgba(102, 126, 234, 0.15);
    transform: translateY(-0.125rem);
}

/* Card Header - Gradient header with icon */
.card-modern .card-header-custom {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 1.5625rem 1.875rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.card-modern .card-title-custom {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Icon Wrapper - Colorful gradient icon boxes */
.icon-box {
    width: 2.8125rem;
    height: 2.8125rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.9375rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(102, 126, 234, 0.3);
    font-size: 0.9375rem;
}

.icon-box.icon-purple {
    background: linear-gradient(135deg, #764ba2 0%, #9333ea 100%);
    box-shadow: 0 0.25rem 0.9375rem rgba(147, 51, 234, 0.3);
}

.icon-box.icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    box-shadow: 0 0.25rem 0.9375rem rgba(245, 158, 11, 0.3);
}

.icon-box.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 0.25rem 0.9375rem rgba(16, 185, 129, 0.3);
}

.icon-box.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 0.25rem 0.9375rem rgba(59, 130, 246, 0.3);
}

.icon-box.icon-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 0.25rem 0.9375rem rgba(239, 68, 68, 0.3);
}

/* Card Body - Content area */
.card-modern .card-body-custom {
    padding: 2.75rem;
}

/* Info Grid - Two column layout for key-value pairs */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.875rem;
}

/* Info Item - Individual key-value pair with hover effect */
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 0;
    border-bottom: 1px solid #f0f2f5;
    transition: all 0.2s ease;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    background: linear-gradient(90deg, #f8f9ff 0%, transparent 100%);
    padding-left: 0.625rem;
    margin-left: -0.625rem;
    margin-right: -0.625rem;
    padding-right: 0.625rem;
}

.info-item .info-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
}

.info-item .info-label i {
    color: #667eea;
    width: 1.25rem;
    margin-right: 0.5rem;
}

.info-item .info-value {
    text-align: left;
    font-weight: 700;
    color: #1e293b;
    font-size: 0.9375rem;
}

/* Badge System - Modern colorful badges */
.badge-custom {
    padding: 0.5rem 1rem;
    border-radius: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
}

.badge-info {
    background: #0dcaf0;
    color: #fff;
    box-shadow: 0 0.125rem 0.625rem rgba(13, 202, 240, 0.3);
}

.badge-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    box-shadow: 0 0.125rem 0.625rem rgba(245, 158, 11, 0.3);
}

.badge-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 0.125rem 0.625rem rgba(16, 185, 129, 0.3);
}

.badge-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 0.125rem 0.625rem rgba(139, 92, 246, 0.3);
}

.badge-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 0.125rem 0.625rem rgba(239, 68, 68, 0.3);
}

.badge-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 0.125rem 0.625rem rgba(102, 126, 234, 0.3);
}

.badge-secondary {
    background: #6c757d;
    color: #fff;
    box-shadow: 0 0.125rem 0.625rem rgba(108, 117, 125, 0.3);
}

/* Price Badge - Special large badge for prices */
.price-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.1875rem;
    font-weight: 800;
    box-shadow: 0 0.25rem 1.25rem rgba(16, 185, 129, 0.3);
    display: inline-block;
}

.price-badge small {
    font-size: 0.8125rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Highlighted Info Item - Special styling for price rows */
.info-item.highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 0.9375rem;
    padding: 1.25rem !important;
    margin: 0.9375rem 0;
    border: 2px solid #10b981 !important;
}

/* Content Sections - Text content areas */
.content-section {
    line-height: 1.9;
    color: #475569;
    font-size: 0.8125rem;
}

/* Links in AI-generated content */
.content-section a {
    color: #2e4dfe;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-section a:hover {
    color: #1e3fde;
    border-bottom-color: #2e4dfe;
    background: linear-gradient(to right, rgba(46, 77, 254, 0.05), rgba(46, 77, 254, 0.1));
}

.content-section a:visited {
    color: #5b21b6;
}

.content-section.highlighted {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
    padding: 1.5625rem;
    border-radius: 0.9375rem;
    border-left: 4px solid #f59e0b;
}

/* Hero Section - Gradient hero banner */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 1.25rem;
    padding: 3.125rem 2.5rem;
    margin-bottom: 3.125rem;
    box-shadow: 0 0.9375rem 3.125rem rgba(102, 126, 234, 0.3);
    text-align: center;
}

.hero-banner .hero-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-banner .hero-description {
    font-size: 0.9375rem;
    opacity: 0.95;
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-banner .hero-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.hero-banner .hero-price-unit {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Button System - Modern gradient buttons */
.btn-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 0.875rem 1.875rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1.5625rem rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-gradient-primary:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 1.875rem rgba(102, 126, 234, 0.4);
    color: #fff;
}

.btn-gradient-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: #fff;
    padding: 0.875rem 1.875rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1.5625rem rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-gradient-success:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 1.875rem rgba(16, 185, 129, 0.4);
    color: #fff;
}

.btn-gradient-success.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 0.9375rem;
    border-radius: 0.9375rem;
}

.sidebar-card .btn-gradient-success {
    margin-bottom: 1.25rem;
}

/* Sidebar Card - Sticky sidebar with order info */
.sidebar-card {
    position: sticky;
    top: 6.25rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.1875rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08);
    text-align: center;
}

.sidebar-card .sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
}

.sidebar-card .price-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5625rem;
    border-radius: 0.9375rem;
    box-shadow: 0 0.5rem 1.875rem rgba(102, 126, 234, 0.3);
    margin-bottom: 1.5625rem;
}

.sidebar-card .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
}

.sidebar-card .price-unit {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.5rem;
}

.sidebar-card .security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.8125rem;
    padding: 0.75rem;
    background: #f8f9ff;
    border-radius: 0.625rem;
    margin-top: 1.25rem;
}

.sidebar-card .security-note i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Link Styles */
.link-gradient {
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.link-gradient:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Fix badges inside link-gradient - prevent text-fill-color: transparent from affecting badges */
.link-gradient .badge {
    -webkit-text-fill-color: #fff !important;
    text-fill-color: #fff !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-banner {
        padding: 2.5rem 1.5rem;
    }

    .hero-banner .hero-title {
        font-size: 2rem;
    }

    .hero-banner .hero-price {
        font-size: 2.5rem;
    }

    .card-modern .card-header-custom,
    .card-modern .card-body-custom {
        padding: 1.25rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
        margin-bottom: 1.875rem;
    }
}

/* Legacy compatibility */
.similar-item {
    margin-top: 1.25rem;
}

.similar-section {
    margin-top: 1.875rem;
}

.hero-banner .hero-title {
    font-size: 1.25rem !important;
    color: white !important;
}

.card-body-custom .content-section h2 {
    font-size: 1.75rem !important;
    line-height: 2.4rem;
}

.card-body-custom .content-section h3 {
    font-size: 1.25rem !important;
    line-height: 2.4rem;
}

.section-header__right .signin-btn {
    border: 1px solid #2e4dfe !important;
    color: #2e4dfe !important;
}

.section-header__right .signup-btn {
    color: #ffffff !important;
}

.section-header__right-bg {
    background-color: transparent !important;
}

.next-marketing-btn {
    font-size: 16px !important;
    font-weight: 400
}

/* MY*/
.service-table {
    padding: 30px;
}

.services-table-section .mb-3 {
    margin-bottom: 1.5rem !important;
}

.filter-sorting {
    padding: 30px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1500px;
    }
}

/* ============================================
   MODAL WINDOW STYLES
   ============================================ */

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.25rem;
    overflow-y: auto; /* Allow scrolling within overlay */
}

.service-modal-container {
    width: 100%;
    max-width: 50rem;
    max-height: 90vh;
    overflow-y: auto; /* Show scrollbar only when scrolling */
    /* Firefox scrollbar styling - auto width */
    scrollbar-width: auto;
    scrollbar-color: rgba(102, 126, 234, 0.5) rgba(0, 0, 0, 0.1);
}

/* Webkit browsers scrollbar styling (Chrome, Safari, Edge) - shows only when scrolling */
.service-modal-container::-webkit-scrollbar {
    width: 8px; /* Thinner scrollbar */
}

.service-modal-container::-webkit-scrollbar-track {
    background: transparent; /* Transparent track */
}

.service-modal-container::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 4px;
}

.service-modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.8);
}

.service-modal-content {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    color: #fff;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
}

.modal-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.modal-body-section {
    padding: 2rem;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item-modal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.info-label-modal {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #667eea;
    display: flex;
    align-items: center;
}

.info-value-modal {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #333;
}

.info-value-modal a,
.modal-link-hover {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    position: relative;
}

.info-value-modal a:hover,
.modal-link-hover:hover {
    color: #764ba2;
    text-decoration: none;
}

.info-value-modal a::after,
.modal-link-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.info-value-modal a:hover::after,
.modal-link-hover:hover::after {
    width: 100%;
}

.modal-description-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
    border: 1px solid #e9ecef;
}

.description-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.description-text {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.modal-footer-section {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.modal-btn-secondary {
    background: #e9ecef;
    color: #333;
}

.modal-btn-secondary:hover {
    background: #dee2e6;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 0.25rem 0.9375rem rgba(102, 126, 234, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.375rem 1.25rem rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .service-modal-container {
        max-width: 95%;
    }

    .service-info-grid {
        grid-template-columns: 1fr;
    }

    .modal-header-section {
        padding: 2rem 1.5rem;
    }

    .modal-body-section {
        padding: 1.5rem;
    }

    .modal-footer-section {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
        justify-content: center;
    }
}

.link-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
}

.megamenu-service-desc {
    color: #6c757d;
}

.readonly {
    color: black;
}

.service-card-v2__title {
        color: black !important;
}

/* ============================================
   SERVICE DETAILS MODAL
   ============================================ */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-modal-container {
    max-width: 900px;
    width: 100%;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.service-modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.modal-close-btn i {
    color: white;
    font-size: 16px;
}

.modal-header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.modal-icon i {
    font-size: 32px;
    color: white;
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.modal-body-section {
    padding: 30px;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .service-info-grid {
        grid-template-columns: 1fr;
    }
}

.info-item-modal {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 6px;
    border-left: 4px solid #667eea;
    transition: all 0.3s;
}

/* Price item - make it stand out */
.info-item-modal:has(#modalPrice) {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left-color: #28a745;
    border-left-width: 5px;
}

.info-item-modal:has(#modalPrice) .info-value-modal {
    font-size: 24px;
    color: #28a745;
    font-weight: 800;
}

.info-item-modal:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.info-label-modal {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value-modal {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #212529;
}

.modal-description-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
}

.description-title {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.description-text {
    font-size: 14px;
    line-height: 1.7;
    color: #495057;
    margin: 0;
}

.modal-footer-section {
    padding: 25px 30px;
    background: #f8f9fa;
    display: flex;
    gap: 15px;
    border-top: 1px solid #e9ecef;
}

.modal-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.modal-btn-secondary {
    background: white;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.modal-btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.modal-btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.modal-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

/* ============================================
   PRICING SECTION IN MODAL
   ============================================ */
.modal-pricing-section {
    background: #f8f9fa;
    padding: 25px 2rem;
    margin: 0 0 30px;
}

.pricing-title {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 576px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
}

.price-tier {
    background: white;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.price-tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.price-tier-featured {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-color: #28a745;
    border-width: 3px;
}

.tier-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.tier-price {
    font-size: 22px;
    font-weight: 800;
    color: #28a745;
}

.price-tier-featured .tier-price {
    font-size: 26px;
    color: #20c997;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 9998;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.scroll-to-top-btn i {
    font-size: 20px;
}

/* ============================================
   LINK HOVER EFFECTS (Modal & Table)
   ============================================ */
/* Links in modal */
.info-value-modal a {
    color: #212529;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.info-value-modal a:hover {
    color: #667eea;
    border-bottom-color: #667eea;
}

/* Links in table */
#servicesTable tbody td a {
    transition: all 0.2s;
    position: relative;
}

#servicesTable tbody td a:hover {
    color: #667eea !important;
    text-decoration: underline;
}

/* ============================================
   CUSTOM SCROLLBAR (Bootstrap Style)
   ============================================ */
/* Modern Bootstrap-style scrollbar - auto-hide */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
    border: 3px solid transparent;
    transition: background 0.3s ease;
}

/* Show scrollbar on hover or when scrolling */
*:hover::-webkit-scrollbar-thumb,
*:active::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border: 3px solid #f8f9fa;
}

*:hover::-webkit-scrollbar-track,
*:active::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb:hover {
    background: #adb5bd !important;
    border: 3px solid #f8f9fa !important;
}

/* Firefox - auto-hide */
* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

*:hover,
*:active {
    scrollbar-color: #dee2e6 #f8f9fa;
}

.section-hero.inner-page-hero .mb-0 {
    color: white !important;
}

.section-header.header-sticky-cloned .content-section h1 {
    font-size: 3rem !important;
    line-height: 55px !important;
}

.service-pricing-options-body .row.g-2 {
    margin-bottom: 30px;
}
/* MY*/
/* ============================================
   CATEGORY FILTER ENHANCEMENTS
   ============================================ */

/* Category filter with hover effects */
#categoryFilter {
    cursor: pointer;
    transition: border-color 0.3s;
}

#categoryFilter:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Select option hover (limited browser support) */
#categoryFilter option {
    padding: 10px;
    cursor: pointer;
}

/* ============================================
   MENU ITEMS LINE HEIGHT FIX
   ============================================ */
/* Increase line-height for better display of multiline menu items */
.list-group-item,
.nav-link,
.dropdown-item,
a[href*="/buy-"],
a[href*="spotify"],
a[href*="instagram"],
a[href*="facebook"],
a[href*="youtube"] {
    line-height: 1.6 !important;
}

/* ============================================
   BADGE STYLES - Unified badge system
   ============================================ */

/* Fix for pseudo-elements that may hide badge text */
.badge::before,
.badge::after {
    content: none;
    display: none;
}

/* Badge ID (info color) - for service/category IDs */
.badge-id {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    margin-right: 4px;
    background-color: #0dcaf0;
    color: #fff;
    border-radius: 0.25rem;
    display: inline-block;
    vertical-align: middle;
}

/* Badge Tag (secondary color) - for service/category tags */
.badge-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    margin-left: 4px;
    background-color: #6c757d;
    color: #fff;
    border-radius: 0.25rem;
    display: inline-block;
    vertical-align: middle;
}

/* Badge variants for menus - smaller padding */
.badge-id-menu,
.badge-tag-menu {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    display: inline-block;
    vertical-align: middle;
}

.badge-id-menu {
    margin-right: 3px;
    background-color: #0dcaf0;
    color: #fff;
}

.badge-tag-menu {
    margin-left: 3px;
    background-color: #6c757d;
    color: #fff;
}

/* Badge for hero titles - smaller relative to parent */
.badge-id-hero,
.badge-tag-hero {
    font-size: 0.5em;
    padding: 0.35rem 0.65rem;
    border-radius: 0.25rem;
    display: inline-block;
    vertical-align: middle;
}

.badge-id-hero {
    margin-right: 6px;
    background-color: #0dcaf0;
    color: #fff;
}

.badge-tag-hero {
    margin-left: 6px;
    background-color: #6c757d;
    color: #fff;
}

/* Fix for badges inside link-gradient */
.link-gradient .badge,
.link-gradient .badge-id,
.link-gradient .badge-tag,
.link-gradient .badge-id-menu,
.link-gradient .badge-tag-menu,
.link-gradient .badge-id-hero,
.link-gradient .badge-tag-hero {
    -webkit-text-fill-color: #fff;
    text-fill-color: #fff;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}
