/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Status Bar */
.status-bar {
    background-color: #10b981;
    color: white;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 3rem;
    width: auto;
}

.navigation {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navigation {
        display: flex;
    }
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.chevron {
    margin-left: 0.25rem;
    width: 1rem;
    height: 1rem;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 0.5rem 0;
    min-width: 12rem;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

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

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    display: block;
    height: 0.125rem;
    width: 1.5rem;
    background-color: #6b7280;
    margin: 0.25rem 0;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background: linear-gradient(to right, #1e3a8a, #1e40af, #1e3a8a);
    color: white;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.9), rgba(30, 64, 175, 0.9));
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-container {
    position: relative;
    padding: 2rem 0;
}

.decorative-circle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.circle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
}

.circle-2 {
    bottom: 5rem;
    left: 5rem;
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.circle-3 {
    top: 8rem;
    right: 10rem;
    width: 3rem;
    height: 3rem;
}

/* Main Content */
.main-content {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: #1e40af;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 4rem;
    }
}

/* Server Illustration */
.server-illustration-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.server-illustration {
    width: 24rem;
    height: 16rem;
    background: linear-gradient(to bottom right, #581c87, #1e3a8a, #312e81);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.server-towers {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.server-tower {
    width: 4rem;
    height: 5rem;
    background: linear-gradient(to top, #22d3ee, #67e8f9);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.tower-1 {
    transform: rotate(3deg);
}

.tower-3 {
    transform: rotate(-3deg);
}

.server-monitor {
    width: 6rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #6366f1, #8b5cf6);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-monitor::before {
    content: '';
    width: 2rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 9999px;
    margin-bottom: 0.25rem;
}

.server-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #67e8f9;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.dot-2 {
    animation-delay: 75ms;
}

.dot-3 {
    animation-delay: 150ms;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Server Grid */
.server-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .server-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .server-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Server Card */
.server-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.server-card:hover {
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.server-header {
    color: white;
    text-align: center;
    padding: 1.5rem;
}

.server-header.bronze {
    background-color: #d97706;
}

.server-header.silver {
    background-color: #9ca3af;
}

.server-header.gold {
    background-color: #eab308;
}

.server-header.platinum {
    background-color: #9333ea;
}

.server-header.titanium {
    background-color: #475569;
}

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

.server-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.server-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.server-content {
    padding: 1.5rem;
}

.server-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    color: #374151;
    margin-bottom: 1rem;
}

.spec-icon {
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.spec-icon.cpu {
    color: #2563eb;
}

.spec-icon.ram {
    color: #059669;
}

.spec-icon.storage {
    color: #9333ea;
}

.spec-icon.bandwidth {
    color: #6366f1;
}

.spec-icon.traffic {
    color: #dc2626;
}

.spec-icon.os {
    color: #ea580c;
}

.spec-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.spec-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.os-list {
    font-size: 0.875rem;
}

.server-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #1e40af;
}

.order-btn {
    width: 100%;
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

/* Additional Info */
.additional-info {
    text-align: center;
    margin-top: 4rem;
}

.additional-info p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: white;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .server-illustration {
        width: 20rem;
        height: 14rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}