/* ===== Services Page Styles ===== */

/* ===== Header/Navbar ===== */
header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 3px 0;
}

.nav-logo {
    max-height: 50px;
}

.navbar-brand img {
    width: 200px !important;
    height: auto !important;
    max-height: none !important;
}

.navbar-nav .nav-link {
    color: #1f2937;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #2563eb;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon::before {
    content: '\f0c9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: #1f2937;
}

/* ===== Container ===== */
.container {
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* ===== Footer ===== */
footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer_main_info {
    margin-bottom: 30px;
}

.footer_main_info .logo-white img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer_main_info p {
    color: #e6e9ee;
    margin-bottom: 20px;
}

.social_media_links {
    display: flex;
    gap: 15px;
}

.social_media_links li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social_media_links li a:hover {
    background: #2563eb;
}

.footer_link_wrap {
    margin-bottom: 20px;
}

.footer_link_wrap h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer_link_wrap h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.footer_menu li {
  margin-bottom: -15px;
}

.footer_menu li a {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer_menu li a:hover {
    color: #2563eb;
    padding-left: 5px;
}

.contact_wrap .contact_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact_wrap .contact_icon {
    flex-shrink: 0;
}

.contact_wrap .contact_text {
    color: #e6e9ee;
}

.contact_wrap .contact_text a {
    color: #cdd0d8;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright_text {
    color: #9ca3af;
    margin: 0;
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-details {
    padding: 6px 12px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: #1d4ed8;
}

.btn-login-sm {
    padding: 16px 42px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

/* ===== WhatsApp Button ===== */
.whatsapp-container {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 999999 !important;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25d366 !important;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    transform: scale(0.9);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1) !important;
    background-color: #1fcc5f !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    fill: #fff !important;
    width: 30px !important;
    height: 30px !important;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Services Page Specific Styles ===== */

.services-page {
    padding: 40px 0 60px;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

/* Service Card Wrapper */
.service__card__wrap {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-card-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter_item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.filter_item:hover {
    background: #e5e7eb;
    color: #2563eb;
}

.filter_item.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.filter_item .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.filter_item .icons i {
    width: 20px;
    text-align: center;
}

/* Update Nav - Search & Filter */
.update__nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 200px;
}

.services__search {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.services__search .form-control {
    border: none;
    background: transparent;
    padding: 10px 15px;
    font-size: 14px;
}

.services__search .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.services__search .btn-search {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 0;
}

.services__search .btn-search:hover {
    background: #1d4ed8;
}

/* Filter Dropdown */
.service_filters .btn-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

.service_filters .btn-filter:hover {
    background: #e5e7eb;
    color: #2563eb;
}

.service_filters .btn-filter::after {
    margin-left: auto;
}

.service_filter-drop {
    width: 280px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.service_filter-drop .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
}

.service_filter-drop .dropdown-item:hover {
    background: #f3f4f6;
    color: #2563eb;
}

.service_filter-drop .dropdown-item img {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

/* Service Table */
.table-service {
    width: 100%;
    font-size: 14px;
}

.table-service thead {
    background: #f9fafb;
}

.table-service thead th {
    padding: 15px 20px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
    white-space: nowrap;
}

.table-service tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.table-service tbody tr:hover {
    background: #f9fafb;
}

.table-service tbody td {
    padding: 15px 20px;
    vertical-align: middle;
    color: #4b5563;
}

/* Table Column Widths */
.service-id-col {
    width: 50px;
}

.service-name-col {
    min-width: 280px;
}

.service-rate-col {
    width: 120px;
    text-align: right;
}

.service-min-col {
    width: 140px;
    text-align: center;
}

.service-time-col {
    width: 150px;
    text-align: center;
}

.service-desc-col {
    min-width: 250px;
}

/* Service Row */
.service-row .service-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-row .service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f3f4f6;
    flex-shrink: 0;
}

.service-row .service-icon i {
    font-size: 18px;
}

.service-row[data-category="youtube"] .service-icon {
    background: #ff000020;
    color: #ff0000;
}

.service-row[data-category="facebook"] .service-icon {
    background: #1877f220;
    color: #1877f2;
}

.service-row[data-category="instagram"] .service-icon {
    background: #e4405f20;
    color: #e4405f;
}

.service-row[data-category="twitter"] .service-icon {
    background: #1da1f220;
    color: #1da1f2;
}

.service-row[data-category="tiktok"] .service-icon {
    background: #00000020;
    color: #000;
}

.service-row[data-category="spotify"] .service-icon {
    background: #1db95420;
    color: #1db954;
}

.service-row[data-category="telegram"] .service-icon {
    background: #0088cc20;
    color: #0088cc;
}

.service-row[data-category="linkedin"] .service-icon {
    background: #0077b520;
    color: #0077b5;
}

.service-row[data-category="discord"] .service-icon {
    background: #5865f220;
    color: #5865f2;
}

.service-row[data-category="twitch"] .service-icon {
    background: #9146ff20;
    color: #9146ff;
}

.service-row[data-category="soundcloud"] .service-icon {
    background: #ff550020;
    color: #ff5500;
}

.service-row[data-category="traffic"] .service-icon {
    background: #2563eb20;
    color: #2563eb;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.service-category {
    font-size: 12px;
    color: #9ca3af;
}

/* Rate Column */
.rate {
    font-weight: 700;
    color: #059669;
    font-size: 15px;
    text-align: right;
    white-space: nowrap;
}

.rate::before {
    content: '$';
    font-size: 12px;
    font-weight: 500;
}

/* Min/Max Column */
.min-max {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
}

/* Average Time Column */
.avg-time {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
}

/* Description Column */
.description {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
}

/* Hidden rows for filtering */
.service-row.hidden {
    display: none;
}

/* Action Button (Details) - Small */
.table-service .btn-details {
    padding: 3px 8px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    border-radius: 5px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.3px;
    min-width: 55px !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    transition: all 0.1s ease;
    height: auto !important;
    white-space: nowrap !important;
}

.table-service .btn-details i {
    font-size: 11px !important;
    margin: 0 !important;
}

.table-service .btn-details:hover {
    transform: none;
    box-shadow: none;
}

.service-action-col {
    width: 85px;
    text-align: center;
}

/* Modal Styles */
.modal-content.rgb-border {
    position: relative;
    background: #fff;
    border: none;
    border-radius: 15px;
    padding: 0;
    z-index: 1;
}

.modal-content.rgb-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 3px;
    background: conic-gradient(
        from var(--angle), 
        transparent 75%, 
        #00ff00 80%, 
        #ff00ff 85%, 
        #00ffff 95%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate 6s linear infinite;
    z-index: 1;
}

.modal-content.rgb-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: conic-gradient(
        from var(--angle), 
        transparent 75%, 
        #00ff00 80%, 
        #ff00ff 85%, 
        #00ffff 95%
    );
    filter: blur(20px);
    opacity: 0.6;
    animation: rotate 6s linear infinite;
    z-index: 0;
}

.modal-content.rgb-border > .modal-header,
.modal-content.rgb-border > .modal-body {
    position: relative;
    z-index: 2;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate {
    from { --angle: 0deg; }
    to { --angle: 360deg; }
}

/* Modal Info Box */
.service-modal-info .info-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.service-modal-info .info-box .d-flex {
    font-size: 14px;
}

.service-modal-info .info-box span {
    color: #6c757d;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .category-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter_item {
        flex-shrink: 0;
    }
    
    .update__nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .services-page {
        padding: 20px 0 40px;
    }
    
    .service-card-header {
        padding: 15px;
    }
    
    .table-service {
        font-size: 12px;
    }
    
    .table-service thead th,
    .table-service tbody td {
        padding: 10px 8px;
    }
    
    .service-id-col,
    .service-time-col {
        display: none;
    }
    
    .service-row .service-icon {
        width: 32px;
        height: 32px;
    }
    
    .service-row .service-icon i {
        font-size: 14px;
    }
    
    .service-min-col {
        display: none;
    }
}


/* Horizontal Social Bar */
.social-bar {
    display: flex;
    justify-content: center; 
    gap: 5px;
    margin: 20px 0; 
}

.social-sidebar {
  display: flex;
  gap: 10px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Circle */
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Colors for each social media */
.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: #e1306c; }
.social-icon.x { background: #1da1f2; }
.social-icon.youtube { background: #ff0000; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.pinterest { background: #bd081c; }
.social-icon.telegram { background: #0088cc; }

/* Hover effect */
.social-icon:hover {
    transform: scale(1.2);
    opacity: 0.85;
}



.card.card_type_3 {
  margin-top: 20px;
  margin-bottom: 20px;
}