.menu-link-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-weight: 600;
    color: #1f2937; /* koyu gri */
    position: relative;
}

.submenu-description {
    font-weight: 400;
    font-size: 0.8rem;
    color: #6b7280; /* orta gri */
    margin-top: 2px;
    max-width: 240px; /* isteğe göre */
    line-height: 1.2;
}

.server-details ul li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.servers-table {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.server-header {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1.5rem;
}

.header-text {
    color: #9ca3af !important;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.server-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 1.5rem;
}

.server-row:last-child {
    border-bottom: none;
}

.server-row:hover,
.server-row.hovered {
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.server-name {
    color: #f3f4f6 !important;
    font-size: 1rem;
}

.stock-available {
    color: #10b981 !important;
    font-weight: 500;
}

.stock-out {
    color: #ef4444 !important;
    font-weight: 500;
}

.server-status-indicator {
    display: flex;
    align-items: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-dot.bg-success::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    animation: pulse 2s infinite;
}

.status-dot.bg-danger::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.server-spec {
    text-align: center;
}

.spec-icon i {
    font-size: 18px;
}

.spec-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.text-purple {
    color: #8b5cf6 !important;
}

.price-section {
    text-align: center;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #10b981;
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #10b981;
}

.price-period {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.action-btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
    min-width: 100px;
}

.action-btn:hover,
.btn-success-hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: #2563eb !important;
    border-color: #2563eb !important;
}

.no-servers-found {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin: 2rem 0;
}

.no-servers-found h3,
.no-servers-found p {
    color: #e5e7eb !important;
}

.no-servers-found .fa-server {
    color: #6b7280 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .servers-table {
        margin-top: 1rem;
    }

    .server-header {
        display: none;
    }

    .server-row {
        border-radius: 8px;
        margin-bottom: 1rem;
        border: 1px solid #e5e7eb;
    }

    .server-row .row {
        flex-direction: column;
        gap: 1rem;
    }

    .server-row .col-md-1,
    .server-row .col-md-2 {
        text-align: left !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .server-row .col-md-1:last-child,
    .server-row .col-md-2:last-child {
        border-bottom: none;
        justify-content: center;
    }

    .server-spec {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .server-spec::before {
        content: attr(data-label);
        font-weight: 600;
        color: #e5e7eb;
        min-width: 80px;
    }

    .spec-icon {
        margin: 0 !important;
    }

    .current-price {
        justify-content: flex-end;
    }
}

/* Mobil için data-label eklemeleri */
@media (max-width: 768px) {
    .server-row .col-md-1:nth-child(2) .server-spec::before {
        content: "CPU:";
        color: #e5e7eb;
    }
    .server-row .col-md-1:nth-child(3) .server-spec::before {
        content: "RAM:";
        color: #e5e7eb;
    }
    .server-row .col-md-1:nth-child(4) .server-spec::before {
        content: "Disk:";
        color: #e5e7eb;
    }
    .server-row .col-md-1:nth-child(5) .server-spec::before {
        content: "Trafik:";
        color: #e5e7eb;
    }
    .server-row .col-md-1:nth-child(6) .server-spec::before {
        content: "Port:";
        color: #e5e7eb;
    }
    .server-row .col-md-2:nth-child(7) .server-spec::before {
        content: "Lokasyon:";
        color: #e5e7eb;
    }
    .server-row .col-md-2:nth-child(8) .price-section::before {
        content: "Fiyat:";
        font-weight: 600;
        color: #e5e7eb;
        margin-right: 1rem;
    }
}

.idea-button-wrapper {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 1000;
}

.idea-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.idea-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

.idea-btn.gradient-animate {
    background: linear-gradient(
        270deg,
        #4a90e2,
        #7b3fbf,
        #4a90e2
    ); /* Mavi - Mor */
    background-size: 600% 600%;
    animation: gradientShift 12s ease infinite; /* Animasyon süresi 12 saniye */
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Yanıp sönen özel kelime için */
.blink {
    animation: blinkAnim 2s linear infinite;
}

@keyframes blinkAnim {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.idea-categories {
    margin: 30px 0;
}

.idea-categories h5 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.category-list {
    margin-top: 20px;
}

.category-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #007bff;
}

.category-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 20px;
    flex-shrink: 0;
}

.category-item .content h6 {
    margin: 0 0 8px 0;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.category-item .content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.form-inner select,
.form-inner input,
.form-inner textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-inner select:focus,
.form-inner input:focus,
.form-inner textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.form-inner textarea {
    min-height: 120px;
    resize: vertical;
}

.form-inner label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}


.message {
    display: none;
    padding: 20px;
    margin-top: 25px;
    border-radius: 8px;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-content span {
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-content h2 {
    margin: 15px 0 20px 0;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.contact-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-tltle h5 {
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
    font-size: 22px;
}

.server-breadcrumbs {
    background-color: #111; /* koyu arka plan */
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    font-family: "Arial", sans-serif;
}

.server-breadcrumbs {
    margin-top: 85px;
}

.server-breadcrumbs .text-success {
    color: #10b981 !important; /* yeşil tagline rengi */
    font-weight: 600;
    font-size: 1.2rem;
}

.server-breadcrumbs h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.server-breadcrumbs p.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
}

.server-breadcrumbs .breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #fff;
}

.server-breadcrumbs .breadcrumb-list a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.server-breadcrumbs .breadcrumb-list a:hover {
    color: #28a745;
}

.server-breadcrumbs .breadcrumb-list img {
    height: 12px;
    width: auto;
    margin: 0 0.4rem;
    filter: brightness(0) invert(1); /* beyaz ok */
}

.server-breadcrumbs .breadcrumb-list span {
    font-weight: 600;
    color: #fff;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    vertical-align: middle;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cpu-toggle-wrapper {
    margin-top: 20px; /* Tüm yapıyı aşağı indirir */
}

.cpu-label {
    color: white;
    display: inline-block; /* margin-top gibi dikey boşluklar için gerekli */
    vertical-align: middle;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 30px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #ccc;
}
input:checked + .slider:before {
    transform: translateX(30px);
}

.common-features-section,
.vds-info-section {
    background-color: #0e1117 !important;
    color: #f1f1f1;
}
.common-features-section h5,
.vds-info-section h3 {
    color: #ffffff;
}
.common-features-section p,
.vds-info-section p {
    color: #d0d0d0;
}

.accordion-button {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #1e1e1e;
    color: #fff;
}

.accordion-body {
    font-size: 0.95rem;
    line-height: 1.6;
}

