  /* CSS WILL BE PLACED HERE */
        /* ========================================
   DEDICATED SERVERS PAGE SPECIFIC STYLES
   ======================================== */

/* Dedicated Hero Section */
.dedicated-hero {
    background: linear-gradient(135deg, #0078ff 0%, #004cbf 100%);
    padding: 140px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.dedicated-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><path d="M0,192L48,181.3C96,171,192,149,288,154.7C384,160,480,192,576,186.7C672,181,768,139,864,138.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom;
    background-size: 100% 100px;
}

.dedicated-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dedicated-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.dedicated-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dedicated Features Section */
.dedicated-features {
    padding: 80px 0;
    background: #ffffff;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-showcase {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #0078ff;
    position: relative;
    overflow: hidden;
}

.feature-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 120, 255, 0.05), transparent);
    transition: left 0.6s;
}

.feature-showcase:hover::before {
    left: 100%;
}

.feature-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-left-color: #004cbf;
}

.feature-showcase i {
    font-size: 3.5rem;
    color: #0078ff;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-showcase:hover i {
    transform: scale(1.1);
    color: #004cbf;
}

.feature-showcase h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.feature-showcase p {
    color: #666;
    line-height: 1.6;
}

/* Dedicated Pricing Section */
.dedicated-pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-enterprise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.dedicated-server {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dedicated-server:hover {
    transform: translateY(-10px);
    border-color: #0078ff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.dedicated-server.enterprise {
    border: 3px solid #0078ff;
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 120, 255, 0.2);
}

.dedicated-server.enterprise::before {
    content: "Recommandé";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0078ff 0%, #004cbf 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3);
}

.dedicated-server.enterprise:hover {
    transform: scale(1.02) translateY(-5px);
}

.server-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.server-price {
    font-size: 3rem;
    font-weight: 700;
    color: #0078ff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.server-duration {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.server-specs {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid #e9ecef;
}

.spec-category {
    font-weight: 700;
    color: #0078ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #0078ff;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.spec-list li {
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.spec-list li:hover {
    background-color: rgba(0, 120, 255, 0.05);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.spec-value {
    color: #0078ff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Enhanced Cart Button Styles for Dedicated Servers */
.dedicated-server .btn-add-to-cart {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.dedicated-server .btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.dedicated-server .btn-add-to-cart:hover::before {
    left: 100%;
}

.dedicated-server .btn-add-to-cart.btn-loading {
    background: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
    cursor: not-allowed;
}

.dedicated-server .btn-add-to-cart.btn-success {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    animation: successPulse 0.6s ease;
}

.dedicated-server .btn-add-to-cart.btn-error {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
    animation: errorShake 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Datacenter Section */
.datacenter-section {
    padding: 80px 0;
    background: #ffffff;
}

.datacenter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.datacenter-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.datacenter-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.datacenter-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.datacenter-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.datacenter-features li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left-color: #0078ff;
}

.datacenter-features li i {
    color: #0078ff;
    margin-right: 15px;
    font-size: 1.3rem;
    width: 25px;
    transition: transform 0.3s ease;
}

.datacenter-features li:hover i {
    transform: scale(1.2);
}

.datacenter-illustration {
    text-align: center;
}

.datacenter-visual {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0078ff 0%, #004cbf 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 120, 255, 0.3);
}

.datacenter-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse-slow 4s infinite ease-in-out;
}

.datacenter-visual i {
    font-size: 8rem;
    color: white;
    z-index: 2;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-slow {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Management Section */
.management-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.management-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.management-option {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.management-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.management-option.managed {
    border: 2px solid #0078ff;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.management-option.unmanaged {
    border: 2px solid #6c757d;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0078ff 0%, #004cbf 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 120, 255, 0.3);
}

.management-option.unmanaged .option-icon {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.management-option:hover .option-icon {
    transform: scale(1.1);
}

.option-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.option-price {
    font-size: 1.2rem;
    color: #0078ff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: rgba(0, 120, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.management-option.unmanaged .option-price {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.option-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.option-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.option-features li i {
    margin-right: 10px;
    font-size: 0.9rem;
    width: 16px;
}

.option-features li i.fa-check {
    color: #28a745;
}

.option-features li i.fa-times {
    color: #dc3545;
}

/* Custom Section */
.custom-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0078ff 0%, #004cbf 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><circle cx="100" cy="100" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="150" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="80" r="4" fill="rgba(255,255,255,0.1)"/><circle cx="700" cy="200" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="120" r="3" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: floatDots 20s linear infinite;
}

@keyframes floatDots {
    from { transform: translateX(-100px); }
    to { transform: translateX(100px); }
}

.custom-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.custom-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.custom-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.custom-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.custom-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.custom-feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    transition: transform 0.3s ease;
}

.custom-feature:hover i {
    transform: scale(1.1);
}

.custom-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.custom-feature p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Enhanced Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    max-width: 400px;
    border-left: 4px solid #28a745;
    animation: slideInRight 0.3s ease;
    font-weight: 500;
}

.notification.success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.notification.warning {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.notification.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #f8d7da 0%, #f1c2c7 100%);
    color: #721c24;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Conflict Modal Styles */
.conflict-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.conflict-modal {
    background: white;
    border-radius: 16px;
    max-width: 520px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.conflict-modal-header {
    padding: 24px 28px 0;
    border-bottom: 1px solid #eef2f5;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
}

.conflict-modal-header h3 {
    margin: 0 0 24px;
    color: #2d3748;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.conflict-modal-header i {
    color: #ff6b35;
    font-size: 24px;
}

.conflict-modal-body {
    padding: 24px 28px;
    line-height: 1.6;
    color: #4a5568;
}

.conflict-modal-body p {
    margin: 0 0 20px;
    font-size: 16px;
}

.existing-items, .new-item {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

.existing-items h4, .new-item h4 {
    margin: 0 0 12px;
    color: #2d3748;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.existing-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.existing-items li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.existing-items li:last-child {
    border-bottom: none;
}

.conflict-modal-actions {
    padding: 0 28px 28px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.conflict-btn {
    min-width: 120px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
}

.conflict-btn.btn-outline {
    background: transparent;
    color: #718096;
    border-color: #e2e8f0;
}

.conflict-btn.btn-outline:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

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

.conflict-btn:not(.btn-outline):hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .dedicated-hero {
        padding: 120px 0 80px;
    }
    
    .dedicated-hero h1 {
        font-size: 2.5rem;
    }
    
    .dedicated-hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .datacenter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .datacenter-visual {
        width: 250px;
        height: 250px;
    }
    
    .datacenter-visual i {
        font-size: 5rem;
    }
    
    .pricing-enterprise {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dedicated-server.enterprise {
        transform: none;
    }
    
    .dedicated-server.enterprise:hover {
        transform: translateY(-5px);
    }
    
    .server-price {
        font-size: 2.5rem;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .management-options {
        grid-template-columns: 1fr;
    }
    
    .custom-content h2 {
        font-size: 2rem;
    }
    
    .custom-content p {
        font-size: 1.1rem;
    }
    
    .custom-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .conflict-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .conflict-modal-actions {
        flex-direction: column;
    }
    
    .conflict-btn {
        width: 100%;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .dedicated-hero h1 {
        font-size: 2rem;
    }
    
    .server-price {
        font-size: 2rem;
    }
    
    .server-name {
        font-size: 1.5rem;
    }
    
    .feature-showcase {
        padding: 2rem;
    }
    
    .feature-showcase i {
        font-size: 2.5rem;
    }
    
    .dedicated-server {
        padding: 2rem;
    }
    
    .server-specs {
        padding: 1.5rem;
    }
    
    .custom-features {
        grid-template-columns: 1fr;
    }
    
    .management-option {
        padding: 2rem;
    }
}

/* Loading States and Animations */
.dedicated-server.loading {
    opacity: 0.7;
    pointer-events: none;
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Enhanced Hover Effects */
.spec-list li {
    position: relative;
    overflow: hidden;
}

.spec-list li::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 120, 255, 0.1), transparent);
    transition: left 0.5s;
}

.spec-list li:hover::before {
    left: 100%;
}

/* Custom Scrollbar for Modal */
.conflict-modal::-webkit-scrollbar {
    width: 6px;
}

.conflict-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.conflict-modal::-webkit-scrollbar-thumb {
    background: #0078ff;
    border-radius: 3px;
}

.conflict-modal::-webkit-scrollbar-thumb:hover {
    background: #004cbf;
}

/* Additional Enhancements */
.dedicated-server:focus-within {
    outline: 2px solid #0078ff;
    outline-offset: 2px;
}

.management-option:focus-within {
    outline: 2px solid #0078ff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .dedicated-hero,
    .custom-section,
    .notification,
    .conflict-modal-overlay {
        display: none !important;
    }
    
    .dedicated-server {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .features-showcase {
        break-inside: avoid;
    }
}
 