/* *****************************************************

    ** Custom Stylesheet for Hosteroid **

    Custom styling for Hosteroid brand

***************************************************** */

:root {
    --hosteroid-bright-blue: #0099cc;
    --hosteroid-dark-blue: #005b94;
    --hosteroid-light-blue: #33ccff;
    --hosteroid-gradient: linear-gradient(135deg, var(--hosteroid-bright-blue) 0%, var(--hosteroid-dark-blue) 100%);
}

/* General Styling */
body {
    font-family: 'Nunito Sans', 'Open Sans', sans-serif;
    overflow-x: hidden;
}

/* Container width adjustment for full-width layout */
.container {
    width: 100%;
    max-width: 1400px;
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1400px;
    }
}

a {
    color: var(--hosteroid-bright-blue);
}

a:hover {
    color: var(--hosteroid-dark-blue);
}

.btn-primary {
    background-color: var(--hosteroid-bright-blue);
    border-color: var(--hosteroid-bright-blue);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--hosteroid-dark-blue);
    border-color: var(--hosteroid-dark-blue);
}

/* Top Bar Styling */
.account-links a:hover,
.language-selector a:hover {
    color: var(--hosteroid-bright-blue) !important;
}

/* Header Styling */
section#header {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

section#header .logo img {
    max-height: 80px;
}

.logo-text {
    color: var(--hosteroid-dark-blue);
    font-weight: 700;
}

/* Updated top navigation styling */
.top-nav {
    margin-top: 10px;
}

.top-nav li {
    margin-left: 5px;
}

.top-nav li a {
    color: var(--hosteroid-dark-blue);
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.top-nav li a:hover {
    background-color: rgba(0, 91, 148, 0.1);
}

.top-nav li.primary-action a.btn {
    background-color: var(--hosteroid-bright-blue);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-nav li.primary-action a.btn:hover {
    background-color: var(--hosteroid-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile menu icon */
.navbar-toggle {
    border-color: var(--hosteroid-dark-blue) !important;
    margin-top: 20px;
}

.navbar-toggle .icon-bar {
    background-color: var(--hosteroid-dark-blue) !important;
}

/* Horizontal nav for desktop */
.horizontal-nav li a {
    position: relative;
}

.horizontal-nav li a:hover {
    background-color: rgba(0, 91, 148, 0.1);
    border-radius: 4px;
}

.horizontal-nav li a:after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--hosteroid-bright-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.horizontal-nav li a:hover:after {
    transform: scaleX(1);
}

/* Navigation Styling */
.navbar-main {
    background-color: var(--hosteroid-dark-blue);
    border: none;
    border-radius: 0;
    margin-bottom: 0;
}

.navbar-main .navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-main .navbar-nav > li {
    margin: 0 5px;
    position: relative;
}

.navbar-main .navbar-nav > li > a {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 15px 20px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-main .navbar-nav > li > a:hover,
.navbar-main .navbar-nav > li > a:focus,
.navbar-main .navbar-nav > li.open > a {
    background-color: rgba(255,255,255,0.1);
    color: var(--hosteroid-light-blue);
}

.navbar-main .navbar-nav > li > a:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--hosteroid-light-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-main .navbar-nav > li > a:hover:after,
.navbar-main .navbar-nav > li.open > a:after {
    transform: scaleX(1);
}

.navbar-main .dropdown-menu {
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    margin-top: 5px;
}

.navbar-main .dropdown-menu > li > a {
    padding: 8px 20px;
    color: var(--hosteroid-dark-blue);
    font-weight: 500;
    transition: all 0.2s ease;
}

.navbar-main .dropdown-menu > li > a:hover {
    background-color: rgba(0, 153, 204, 0.1);
    color: var(--hosteroid-bright-blue);
    padding-left: 25px;
}

/* Home Banner Customization */
#home-banner {
    background: linear-gradient(135deg, #003366 0%, #0099cc 100%);
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 50px;
}

#home-banner .svg-wave-top,
#home-banner .svg-wave-bottom {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
}

#home-banner .svg-wave-top {
    top: 0;
    height: 150px;
}

#home-banner .svg-wave-bottom {
    bottom: -2px;
    height: 150px;
}

#home-banner .svg-wave-top svg,
#home-banner .svg-wave-bottom svg {
    width: 100%;
    height: 100%;
}

#home-banner .container {
    top:-50px;
    position: relative;
    z-index: 2;
}

#home-banner .animated-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#home-banner .hero-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

#home-banner .hero-subtitle {
    font-size: 1.6em;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

#home-banner .hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    display: flex;
    flex-wrap: wrap;
}

#home-banner .hero-features li {
    flex: 0 0 50%;
    padding: 8px 0;
    font-size: 1.1em;
    font-weight: 500;
}

#home-banner .hero-features li i {
    color: #00e676;
    margin-right: 10px;
}

#home-banner .hero-actions {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

#home-banner .hero-btn {
    margin: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    text-align: center;
}

#home-banner .btn-primary.hero-btn {
    background-color: #00e676;
    border-color: #00e676;
    color: #003366;
}

#home-banner .btn-primary.hero-btn:hover {
    background-color: #00c853;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

#home-banner .btn-outline.hero-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

#home-banner .btn-outline.hero-btn:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Server Animation */
.server-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.server-rack {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: serverFloat 6s ease-in-out infinite;
}

@keyframes serverFloat {
    0%, 100% {
        transform: translateY(0) rotateY(10deg);
    }
    50% {
        transform: translateY(-20px) rotateY(15deg);
    }
}

.server-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,230,118,0.3) 0%, rgba(0,153,204,0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.server-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.server-unit {
    fill: #f8f9fa;
    stroke: #e9ecef;
    stroke-width: 1;
}

.server-unit-1 {
    fill: #2b3035;
}

.server-unit-2 {
    fill: #212529;
}

.server-unit-3 {
    fill: #1a1d20;
}

.server-light {
    fill: #00e676;
}

.server-vent {
    fill: #343a40;
}

.blinking {
    animation: blink 2s infinite;
}

.server-light-2 {
    animation-delay: 0.7s;
}

.server-light-3 {
    animation-delay: 1.4s;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        fill: #00e676;
    }
    50% {
        opacity: 0.5;
        fill: #00c853;
    }
}

.pulse-circle {
    fill: rgba(0,230,118,0.1);
    stroke: rgba(0,230,118,0.5);
    stroke-width: 2;
    animation: pulse 3s infinite;
}

.pulse-delay-1 {
    animation-delay: 1s;
}

.pulse-delay-2 {
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    background: linear-gradient(to bottom, rgba(0,230,118,0), rgba(0,230,118,0.7), rgba(0,230,118,0));
    width: 2px;
    border-radius: 2px;
    animation: dataFlow 3s linear infinite;
}

.data-stream-1 {
    height: 60px;
    top: 15%;
    left: 65%;
    animation-duration: 2s;
}

.data-stream-2 {
    height: 40px;
    top: 25%;
    left: 75%;
    animation-duration: 1.5s;
    animation-delay: 0.5s;
}

.data-stream-3 {
    height: 50px;
    top: 45%;
    left: 70%;
    animation-duration: 2.5s;
    animation-delay: 1s;
}

.data-stream-4 {
    height: 35px;
    top: 65%;
    left: 80%;
    animation-duration: 1.8s;
    animation-delay: 1.5s;
}

@keyframes dataFlow {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(300%);
        opacity: 0;
    }
}

/* Mobile responsiveness for hero section */
@media (max-width: 767px) {
    #home-banner {
        padding: 80px 0 60px;
    }
    
    #home-banner .hero-title {
        font-size: 2.5em;
    }
    
    #home-banner .hero-subtitle {
        font-size: 1.3em;
    }
    
    #home-banner .hero-features {
        margin-bottom: 25px;
    }
    
    #home-banner .hero-features li {
        flex: 0 0 100%;
        font-size: 1em;
    }
    
    .server-animation {
        margin-top: 40px;
    }
    
    .server-rack {
        max-width: 280px;
    }
}

/* Home Shortcuts - Modernized */
.home-shortcuts {
    background-color: white;
    padding: 0;
    border-bottom: none;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.home-shortcuts ul {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}

.home-shortcuts li {
    flex: 1;
    text-align: center;
    border-right: 1px solid #eee;
    transition: all 0.3s ease;
}

.home-shortcuts li:hover {
    background-color: rgba(0,153,204,0.05);
}

.home-shortcuts li:last-child {
    border-right: none;
}

.home-shortcuts li a {
    color: #555;
    font-weight: 600;
    padding: 25px 0;
    display: block;
}

.home-shortcuts li a i {
    color: var(--hosteroid-bright-blue);
    font-size: 2em;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.home-shortcuts li a:hover i {
    color: var(--hosteroid-dark-blue);
    transform: translateY(-3px);
}

.home-shortcuts li a p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

/* Locations Section */
.locations-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.location-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.location-card i {
    font-size: 2.5em;
    color: var(--hosteroid-bright-blue);
    margin-bottom: 15px;
}

.location-card h4 {
    color: var(--hosteroid-dark-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Footer Styling */
section#footer {
    background-color: var(--hosteroid-dark-blue);
    color: white !important;
    padding: 40px 0 20px;
    border-top: none;
    width: 100%;
}

section#footer p {
    color: white !important;
    margin-bottom: 20px;
}

section#footer a {
    color: rgba(255,255,255,0.8) !important;
}

section#footer a:hover {
    color: white !important;
    text-decoration: none;
}

section#footer h4 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

section#footer .list-unstyled {
    margin-bottom: 20px;
}

section#footer .list-unstyled li {
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 10px;
}

section#footer .list-unstyled li a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
}

section#footer .list-unstyled li a:hover {
    color: white !important;
    text-decoration: none;
}

section#footer .back-to-top {
    color: rgba(255,255,255,0.5) !important;
}

section#footer .back-to-top i {
    background-color: rgba(255,255,255,0.1);
    color: white !important;
    padding: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

/* Client notifications */
.client-notifications .slim-alert {
    font-size: 12px;
}

/* Main body content area */
section#main-body {
    width: 100%;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
    section#header .logo img {
        max-height: 60px;
        margin: 0 auto;
        display: block;
    }
    
    .horizontal-nav {
        display: none !important;
    }
    
    #main-menu {
        margin-top: 10px;
    }
    
    section#footer h4 {
        margin-top: 30px;
    }
    
    .action-buttons {
        text-align: center;
        margin-top: 15px;
    }
    
    #home-banner h2 {
        font-size: 2em;
    }
    
    #home-banner .lead {
        font-size: 1.2em;
    }
    
    .home-shortcuts li {
        width: 50%;
        float: left;
        border-bottom: 1px solid #eee;
        border-right: 1px solid #eee;
    }
    
    .home-shortcuts li:nth-child(even) {
        border-right: none;
    }
    
    .home-shortcuts li:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Adjust horizontal spacing in top header bar */
#header .row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    align-items: center;
}

/* Adjust navigation spacing for wider layout */
.horizontal-nav {
    width: 100%;
    justify-content: space-around !important;
}

/* Adjust homepage sections for wider layout */
.home-shortcuts .row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    section#header .logo img {
        margin-left: 10px;
    }
    
    #main-horizontal-nav {
        padding-left: 20px;
    }
}

/* VPS Plans Section Styling */
.vps-plans-section {
    background: linear-gradient(to bottom, #f9f9ff, #ffffff);
    padding: 50px 0;
    margin-top: 0;
}

.plan-cards {
    margin-top: 30px;
}

.plan-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.plan-header {
    padding: 25px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-grow: 1;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--hosteroid-dark-blue);
    margin-bottom: 20px;
    text-align: center;
}

.plan-specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.spec-item i {
    width: 25px;
    margin-right: 10px;
    color: var(--hosteroid-bright-blue);
    font-size: 16px;
}

.plan-price {
    text-align: center;
    padding: 15px 0;
}

.plan-price .currency {
    font-size: 20px;
    color: #666;
    vertical-align: top;
    position: relative;
    top: 5px;
}

.plan-price .amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--hosteroid-dark-blue);
    line-height: 1;
}

.plan-price .period {
    font-size: 14px;
    color: #666;
    margin-left: 3px;
}

.plan-footer {
    padding: 20px;
    background-color: #f9f9fc;
}

.plan-location {
    margin-bottom: 15px;
}

.plan-location select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    color: #444;
    background-color: white;
}

.btn-order {
    background: var(--hosteroid-gradient);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-order:hover:not([disabled]) {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-order[disabled] {
    background: #aaa;
    opacity: 0.7;
    cursor: not-allowed;
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--hosteroid-bright-blue);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.featured-label {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--hosteroid-gradient);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 10px 0 10px;
}

.view-all-vps {
    margin-top: 20px;
}

.view-all-vps p {
    color: #666;
    margin-bottom: 15px;
}

.view-all-vps .btn {
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-vps .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Card Location Select and Order Button */
.card-location-select {
    width: 100%;
    height: 38px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 0 10px;
}

.card-order-btn {
    width: 100%;
    height: 38px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .plan-card {
        margin-bottom: 30px;
    }

    .plan-card.featured {
        transform: none;
        margin: 0 auto 30px;
    }

    .plan-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 767px) {
    .plan-header {
        padding: 20px 15px;
    }

    .plan-name {
        font-size: 20px;
    }

    .plan-price .amount {
        font-size: 36px;
    }

    .plan-footer {
        padding: 15px;
    }
}

/* Section Styling */
.section-title {
    color: #005b94;
    margin: 60px 0 20px;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* Feature Comparison Section */
.feature-comparison-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    position: relative;
}

.feature-comparison-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, white, #f8f9fa);
}

.comparison-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    background-color: white;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-header {
    display: flex;
    background-color: #005b94;
    color: white;
}

.comparison-header-cell {
    flex: 1;
    padding: 20px 15px;
    font-weight: 600;
    text-align: center;
    font-size: 1.1em;
}

.comparison-header-cell.feature-name {
    background-color: #003366;
    text-align: left;
    min-width: 200px;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    flex: 1;
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95em;
    color: #333;
}

.comparison-cell.feature-name {
    text-align: left;
    font-weight: 600;
    color: #003366;
    justify-content: flex-start;
    min-width: 200px;
}

.comparison-cell.highlight,
.comparison-header-cell.highlight {
    background-color: rgba(0,153,204,0.05);
    position: relative;
}

.comparison-cell.highlight:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: #0099cc;
    opacity: 0.3;
}

.feature-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-row .comparison-cell {
    padding: 20px 15px;
}

.btn-deploy {
    min-width: 100px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline.btn-deploy {
    border: 1px solid #0099cc;
    color: #0099cc;
    background-color: transparent;
}

.btn-outline.btn-deploy:hover {
    background-color: rgba(0,153,204,0.1);
    transform: translateY(-3px);
}

.btn-primary.btn-deploy {
    background-color: #0099cc;
    color: white;
    border: none;
}

.btn-primary.btn-deploy:hover {
    background-color: #0077aa;
    transform: translateY(-3px);
}

/* Homepage VPS Pricing Table Styles */
.main-container {
    padding-top: 30px;
    padding-bottom: 20px;
}

.pricing-table-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    margin: 40px 0;
    overflow-x: auto;
}

.pricing-table {
    margin-bottom: 0;
    width: 100%;
}

.pricing-table thead th {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    color: #005b94;
    font-weight: 600;
    padding: 15px;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 13px;
}

.pricing-table tbody td {
    border-top: 1px solid #e9ecef;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.pricing-table .plan-name {
    color: #005b94;
    font-size: 16px;
    font-weight: 700;
}

.pricing-table .price {
    color: #005b94;
    font-size: 18px;
    font-weight: 700;
}

.pricing-table .period {
    color: #6c757d;
    font-size: 13px;
    margin-left: 3px;
}

.pricing-table i {
    color: #0099cc;
    margin-right: 5px;
}

.pricing-table .order-btn {
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pricing-table .order-btn:hover:not([disabled]) {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.popular-tag {
    background: #00e676;
    border-radius: 20px;
    color: #005b94;
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    margin-left: 5px;
    padding: 3px 8px;
    text-transform: uppercase;
    vertical-align: middle;
}

.featured-plan {
    background-color: rgba(0, 153, 204, 0.05);
}

.featured-plan td {
    position: relative;
}

.location-select {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 13px;
    height: 34px;
    padding: 6px 10px;
    width: 100%;
}

.view-all-plans {
    margin: 20px 0 40px;
}

.view-all-plans .btn {
    border: 2px solid #0099cc;
    border-radius: 30px;
    color: #0099cc;
    font-weight: 600;
    padding: 10px 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-all-plans .btn:hover {
    background-color: #0099cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Why Us Section */
.why-us-section {
    background-color: #f8f9fa;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.feature-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    margin-bottom: 30px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.1), rgba(0, 91, 148, 0.1));
    border-radius: 50%;
    color: #0099cc;
    font-size: 24px;
    height: 70px;
    line-height: 70px;
    margin-bottom: 20px;
    text-align: center;
    width: 70px;
}

.feature-box h3 {
    color: #005b94;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon-section {
    background: linear-gradient(135deg, #f8fcff, #eaf6ff);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    border-radius: 30px;
    color: white;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 6px 15px;
    text-transform: uppercase;
}

.coming-soon-features {
    margin: 30px 0;
}

.coming-soon-features .feature-item {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.coming-soon-features .feature-item:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.coming-soon-features i {
    background: linear-gradient(135deg, #0099cc, #005b94);
    border-radius: 50%;
    color: white;
    display: inline-block;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 15px;
    text-align: center;
    width: 50px;
}

.coming-soon-features h4 {
    color: #005b94;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.coming-soon-features p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.coming-soon-cta {
    margin-top: 30px;
}

.coming-soon-cta .btn {
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.coming-soon-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.storage-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.storage-illustration img {
    max-width: 100%;
    transition: all 0.3s ease;
}

.storage-illustration:hover img {
    transform: translateY(-10px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 70px 0;
}

.testimonial-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-content {
    background-color: #f8f9fa;
    padding: 25px;
    position: relative;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f8f9fa;
}

.testimonial-content p {
    color: #555;
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    align-items: center;
    display: flex;
    padding: 15px 25px;
}

.author-avatar {
    color: #0099cc;
    font-size: 36px;
    margin-right: 15px;
}

.author-info h4 {
    color: #005b94;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
}

.author-info p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .main-container {
        padding: 40px 0;
    }
    
    .pricing-table-wrapper {
        margin: 30px -15px;
        border-radius: 0;
        width: calc(100% + 30px);
    }
    
    .pricing-table {
        min-width: 800px;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 10px;
        font-size: 13px;
    }
    
    .pricing-table .plan-name {
        font-size: 14px;
    }
    
    .pricing-table .price {
        font-size: 16px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .storage-illustration {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

/* Animation for featured plan */
.highlight-animation {
    animation: highlight-pulse 1.5s ease-in-out;
}

@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--hosteroid-bright-blue-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--hosteroid-bright-blue-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--hosteroid-bright-blue-rgb), 0);
    }
}

/* Hide table on mobile and show cards instead */
@media (max-width: 767px) {
    .pricing-table-wrapper {
        display: none;
    }
    
    .view-all-plans {
        display: none;
    }
    
    .vps-plans-section {
        margin-top: -30px;
        padding-top: 0;
    }
}

/* Remove empty white space above main container */
#main-body {
    padding-top: 0;
}
