/* Professional Status Page Enhancements */
.status-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #28a745;
}

.status-summary.offline {
    border-left-color: #dc3545;
}

.status-summary.maintenance {
    border-left-color: #ffc107;
}

.overall-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.overall-status i {
    font-size: 1.5rem;
}

.status-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.metric-card {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    display: block;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.service-item {
    background: rgba(255,255,255,0.98);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-details {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.service-meta {
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.response-time {
    color: #28a745;
    font-weight: 600;
}

.last-check {
    color: #666;
}

.uptime-display {
    text-align: right;
}

.uptime-percentage {
    font-size: 2.2rem;
    font-weight: 700;
    color: #28a745;
    display: block;
    line-height: 1;
}

.uptime-label {
    font-size: 1.2rem;
    color: #666;
    margin-top: 5px;
}

.uptime-bars {
    display: flex;
    gap: 2px;
    margin: 15px 0;
    height: 10px;
}

.uptime-bar {
    flex: 1;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.2s;
}

.uptime-bar:hover {
    transform: scaleY(1.2);
}

.bar-excellent { background: #28a745; }
.bar-good { background: #ffc107; }
.bar-poor { background: #fd7e14; }
.bar-down { background: #dc3545; }

.status-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    font-size: 0.9rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.footer-stats {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .service-details {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-meta {
        justify-content: center;
    }
    
    .uptime-display {
        text-align: center;
    }
    
    .status-metrics {
        grid-template-columns: 1fr;
    }
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.rts-header.style-six {
    -webkit-backdrop-filter: blur(2.5px);
    backdrop-filter: blur(2.5px);
    background: #04040480;
    top: 0;
    z-index: 99;
    width: 100%;
    position: absolute;
    transition: all .3s;
    padding: 15px 0;
}

.rts-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rts-header__logo img {
    height: 40px;
    width: auto;
}

.hostie-desktop-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.hostie-dropdown-main-element {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.hostie-dropdown-main-element:hover {
    color: #3994A8;
}

.rts-header__right .button-area {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login__btn, .get-started__btn {
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.login__btn {
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.get-started__btn {
    background: #3994A8;
    color: white;
}

.login__btn:hover, .get-started__btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}

/* Hero Banner */
.rts-hero-banner.status-banner {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
}

.rts-hero-banner.status-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://hero-servers.com/assets/images/banner/banner-bg-element.svg') no-repeat center;
    background-size: cover;
    opacity: 0.1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.banner-top .icon {
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
}

.banner-top .icon img {
    height: 18px;
    width: auto;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.banner-title span {
    color: #28a745;
}

.status-online span {
    color: #28a745;
}

.status-maintenance span {
    color: #ffc107;
}

.status-offline span {
    color: #dc3545;
}

.description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.status-indicator-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.status-indicator-large i {
    font-size: 20px;
    color: white;
}

/* Section Spacing */
.rts-section-gap {
    padding: 80px 0;
}

/* Service Items */
.service-item {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-info h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-online {
    color: #28a745;
}

.status-maintenance {
    color: #ffc107;
}

.status-offline {
    color: #dc3545;
}

.service-uptime {
    text-align: right;
}

.uptime-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    display: block;
}

.uptime-label {
    font-size: 0.9rem;
    color: #666;
}

/* Uptime Bars */
.uptime-bars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.uptime-bar {
    flex: 1;
    height: 8px;
    border-radius: 2px;
    cursor: pointer;
}

.bar-excellent {
    background: #28a745;
}

.bar-good {
    background: #ffc107;
}

.bar-poor {
    background: #fd7e14;
}

.bar-down {
    background: #dc3545;
}

/* Notices */
.notices-section {
    margin-bottom: 40px;
}

.notice {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid;
}

.notice-info {
    background: #d1ecf1;
    border-color: #17a2b8;
}

.notice-warning {
    background: #fff3cd;
    border-color: #ffc107;
}

.notice-error {
    background: #f8d7da;
    border-color: #dc3545;
}

.notice-success {
    background: #d4edda;
    border-color: #28a745;
}

/* Stats Section */
.stats-section {
    margin-top: 60px;
}

.stat-card {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.stat-value {
    font-weight: 700;
    color: #28a745;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.bounceIn {
    animation-name: bounceIn;
}

/* Footer Styles */
.rts-footer {
    background-color: #0f1419;
    color: white;
    padding: 60px 0 40px;
}

.rts-footer .row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start !important;
}

.rts-footer .rts-footer__widget--column {
    display: flex !important;
    align-items: stretch !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
}

.rts-footer__widget {
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer__logo img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.brand-desc {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.separator {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 0;
}

.contact-method a {
    color: #cccccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-method a:hover {
    color: #3994A8;
    text-decoration: none;
}

.widget-title {
    color: #3994A8;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.rts-footer__widget--menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rts-footer__widget--menu li {
    margin-bottom: 10px;
}

.rts-footer__widget--menu a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.rts-footer__widget--menu a:hover {
    color: #3994A8;
    text-decoration: none;
}

.social__media h5 {
    color: #3994A8;
    font-size: 16px;
    margin-bottom: 15px;
}

.social__media--list {
    display: flex;
    gap: 8px;
}

.social__media--list .media {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    background: #3994A8;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 4px;
    vertical-align: baseline;
    flex-shrink: 0;
    margin-top: 15px;
}

.social__media--list .media i {
    font-size: 16px;
    line-height: 1;
}

.social__media--list .media .fa-facebook-f {
    transform: translateX(0) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.social__media--list .media:hover {
    background: white;
    color: #3994A8;
}

.rts-footer__copyright-two {
    background-color: #0a0f14;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.rts-footer__copyright-two__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: #cccccc;
    margin: 0;
}

.payment__method ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.payment__method img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment__method img:hover {
    opacity: 1;
}

/* Admin Panel Styles */
.admin-section {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.admin-section h2 {
    color: #333 !important;
    margin-bottom: 20px;
}

.banner-title .status-online {
    color: #28a745 !important;
}

@media (max-width: 768px) {
    .rts-footer__copyright-two__wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .payment__method ul {
        justify-content: center;
    }
}