/* 🏠 NAVBAR LOGO STYLING */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-logo:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 0 8px rgba(0, 255, 139, 0.4));
}

.navbar-logo img {
    height: 45px;
    width: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text span {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .navbar-logo img {
        height: 35px;
    }
    
    .navbar-brand {
        gap: 0.8rem;
    }
}

/* ℹ️ SERVICE INFO SECTION */
.service-info-card {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #e0e0e0;
}

.info-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-header h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.info-meta {
    display: flex;
    gap: 1.5rem;
    color: #b0b0b0;
    font-weight: 600;
    font-size: 0.95rem;
}

.info-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-meta i {
    color: #5a34fc;
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(90, 52, 252, 0.1);
    border: 1px solid rgba(90, 52, 252, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-tag i {
    color: #00ff8b;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-column h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-left: 4px solid #5a34fc;
    padding-left: 0.8rem;
}

.info-column ul {
    list-style: none;
    padding: 0;
}

.info-column ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #b0b0b0;
    display: flex;
    flex-direction: column;
}

.info-column ul li strong {
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.rates-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.6rem !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rates-list li span {
    font-weight: 500;
}

.rates-list li strong {
    color: #00ff8b !important;
    font-size: 1.1rem;
    margin-bottom: 0 !important;
}

.important-note {
    background: linear-gradient(135deg, rgba(90, 52, 252, 0.15) 0%, rgba(9, 60, 111, 0.15) 100%);
    border-left: 4px solid #5a34fc;
    padding: 1.2rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.important-note i {
    color: #5a34fc;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.important-note p {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .service-info-card {
        padding: 1.5rem;
    }

    .info-header h1 {
        font-size: 1.4rem;
    }

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

    .info-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* 🗂️ ACCORDION INTEGRATION IN CARD */
.service-info-card .accordion {
    margin-top: 0.5rem;
}

.service-info-card .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-info-card .accordion-button {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.2rem;
    font-size: 1rem;
}

.service-info-card .accordion-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.service-info-card .accordion-button.active {
    background: rgba(90, 52, 252, 0.2);
}

.service-info-card .accordion-content {
    padding: 1rem;
}

.service-info-card .product-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
}

.service-info-card .product-item h3 {
    font-size: 1rem;
    color: #16213e;
}

.service-info-card .price-digital-main,
.service-info-card .price {
    font-size: 1.1rem;
}