/********** Template CSS **********/
:root {
    --primary: #7c09ff;
    --secondary: #0000ff;
    --third: #f59e0b;
    --success: #7EBC12;
    --light: #F2F2F2;
    --dark: #1D2833;
    --mainp: #7c09ff;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/* ===== CHATBOT STYLES ===== */
:root {
  --chatbot-bg: #ffffff;
  --chatbot-header-bg: #7c09ff;
  --chatbot-text: #333333;
  --chatbot-border: #e0e0e0;
  --chatbot-accent: #7c09ff;
  --chatbot-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  --chatbot-bg: #2d3748;
  --chatbot-header-bg: #1a202c;
  --chatbot-text: #f7fafc;
  --chatbot-border: #4a5568;
  --chatbot-accent: #7c09ff;
  --chatbot-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Toggle Button */
.chatbot-toggle {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--chatbot-accent);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--chatbot-shadow);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Chat Container */
.chatbot-container {
  position: fixed;
  bottom: 170px;
  right: 30px;
  width: 380px;
  height: 500px;
  background: var(--chatbot-bg);
  border-radius: 15px;
  box-shadow: var(--chatbot-shadow);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.chatbot-container.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

/* Header */
.chatbot-header {
  background: var(--chatbot-header-bg);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-title h5 {
  margin: 0;
  font-weight: 600;
}

.chatbot-actions {
  display: flex;
  gap: 10px;
}

.theme-toggle, .close-chatbot {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

/* Messages */
.chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.message {
  max-width: 80%;
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 18px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.message-bot {
  align-self: flex-start;
  background: rgba(108, 99, 255, 0.1);
  color: var(--chatbot-text);
  border-top-left-radius: 5px;
}

.message-user {
  align-self: flex-end;
  background: var(--chatbot-accent);
  color: white;
  border-top-right-radius: 5px;
}

.message-time {
  font-size: 11px;
  color: var(--chatbot-text);
  opacity: 0.7;
  margin-top: 5px;
  text-align: right;
}

/* Quick Replies */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 15px 15px;
}

.quick-reply {
  background: rgba(108, 99, 255, 0.1);
  color: var(--chatbot-accent);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-reply:hover {
  background: var(--chatbot-accent);
  color: white;
}

/* Input Area */
.chatbot-input {
  display: flex;
  padding: 15px;
  border-top: 1px solid var(--chatbot-border);
  background: var(--chatbot-bg);
}

.chatbot-input input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--chatbot-border);
  border-radius: 30px;
  background: var(--chatbot-bg);
  color: var(--chatbot-text);
  outline: none;
}

.chatbot-input button {
  background: var(--chatbot-accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.chatbot-input button:hover {
  transform: scale(1.05);
}

.attachment-btn {
  background: transparent !important;
  color: var(--chatbot-text) !important;
}

/* Animations */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(108, 99, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  padding: 10px 15px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--chatbot-accent);
  border-radius: 50%;
  margin: 0 2px;
  animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingAnimation {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 8px;
}
body {
    background-image: url('new-slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: makes the image fixed while scrolling */
    min-height: 100vh;
  }

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--mainp) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--light) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
    left: 0%;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
    left: 0%;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #6112bc;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--light) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--success);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
        left: 0%;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--success);
    }
}


/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-round.png),
        url(../img/bg-line.png);
    background-position:
        0px 40%,
        right 0 top 0,
        left 50% top 0,
        left 50% top 50%,
        center bottom -1px;
    background-repeat: no-repeat;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 11px;
    bottom: 0;
    left: 0;
    border-top: 1px solid #5A5A5A;
    border-bottom: 1px solid #5A5A5A;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    bottom: 5px;
    left: 0;
    background: var(--success);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -30px;
}

.section-title.text-center::after {
    width: 120px;
    left: 50%;
    margin-left: -60px;
}


/*** Domain Search ***/
.domain {
    background: url(../img/bg-domain.png) center center no-repeat;
    background-size: contain;
}


/*** Comparison ***/
@media (min-width: 992px) {
    .comparison::after {
        position: absolute;
        content: "";
        width: 1px;
        top: 56px;
        bottom: 20px;
        left: 50%;
        background: #DDDDDD;
    }
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--success) !important;
    border-color: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item .position-absolute {
    background: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--success);
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}
/*** my changes***/
.hover-effect {
    transition: all 0.3s ease;
  }
  .hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  .carousel-item {
    transition: transform 0.8s ease-in-out;
  }

  /* Add to your CSS */
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}

.carousel-item-next,
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev,
.active.carousel-item-left {
  transform: translateX(-100%);
}

/*** Footer ***/
.footer {
    background:
        url(../img/bg-round.png),
        url(../img/bg-line.png);
    background-position:
        0px 112px,
        right 0 bottom 0,
        left 50% top 80px,
        left 50% bottom 0,
        top center;
    background-repeat: no-repeat;
}

.footer p {
    font-size: 15px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--secondary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .3);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.hosting-hero {
                position: relative;
                overflow: hidden;
                color: white;
                padding: 4rem 0;
                background-color: transparent;
              }

              /* Background Elements */
              .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
              }

              .bg-particles {
                position: absolute;
                width: 100%;
                height: 100%;
              }

              .particle {
                position: absolute;
                border-radius: 50%;
                background: rgba(255,255,255,0.05);
                animation: float 15s infinite linear;
              }

              .particle:nth-child(1) {
                width: 300px;
                height: 300px;
                top: -50px;
                left: -50px;
                animation-delay: 0s;
              }

              .particle:nth-child(2) {
                width: 200px;
                height: 200px;
                bottom: -30px;
                right: 20%;
                animation-delay: 5s;
              }

              .particle:nth-child(3) {
                width: 150px;
                height: 150px;
                top: 30%;
                right: -30px;
                animation-delay: 8s;
              }

              .bg-gradient {
                position: absolute;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.0) 0%, rgba(30, 41, 59, 0.0) 0%);
              }

              /* Slider Container */
              .slider-container {
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;
              }

              .slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 0.8s ease;
              }

              .slide.active {
                opacity: 1;
                position: relative;
              }

              .slide-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                opacity: 0.3;
                z-index: 0;
              }

              /* Content Layout */
              .hero-container {
                position: relative;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
                display: flex;
                align-items: center;
                min-height: 500px;
                z-index: 1;
              }

              .hero-content {
                max-width: 600px;
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
              }

              /* Typography */
              h1 {
                font-size: 3.5rem;
                font-weight: 800;
                line-height: 1.2;
                margin: 0;
              }

              .highlight {
                color: var(--third);
                position: relative;
                display: inline-block;
              }

              .highlight::after {
                content: '';
                position: absolute;
                bottom: 5px;
                left: 0;
                width: 100%;
                height: 10px;
                background: rgba(245, 158, 11, 0.2);
                z-index: -1;
                border-radius: 2px;
              }

              .subhead {
                font-size: 1.25rem;
                color: rgba(255,255,255,0.8);
                margin: 0;
                max-width: 90%;
              }

              /* Badges */
              .badge {
                align-self: flex-start;
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(5px);
                padding: 0.5rem 1rem;
                border-radius: 50px;
                font-size: 0.9rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 0.5rem;
              }

              /* Price Card */
              .price-card {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                padding: 1.5rem;
                width: fit-content;
                border: 1px solid rgba(255,255,255,0.1);
                margin: 1rem 0;
                position: relative;
              }

              .price-badge {
                position: absolute;
                top: -10px;
                right: 20px;
                background: var(--third);
                color: var(--dark);
                padding: 0.25rem 0.75rem;
                border-radius: 50px;
                font-size: 0.75rem;
                font-weight: 700;
              }

              .price {
                display: flex;
                align-items: flex-end;
                gap: 0.5rem;
              }

              .amount {
                font-size: 3rem;
                font-weight: 800;
                line-height: 1;
              }

              .period {
                font-size: 1rem;
                color: rgba(255,255,255,0.7);
                padding-bottom: 0.5rem;
              }

              .price-note {
                font-size: 0.9rem;
                color: rgba(255,255,255,0.6);
                text-decoration: line-through;
              }

              /* CTA Buttons */
              .cta-group {
                display: flex;
                gap: 1rem;
                margin-top: 1rem;
              }

              .cta-primary {
                background: var(--primary);
                color: white;
                border: none;
                padding: 0.75rem 1.5rem;
                border-radius: 8px;
                font-size: 1rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                cursor: pointer;
                transition: all 0.2s ease;
                position: relative;
                overflow: hidden;
              }

              .cta-primary:hover {
                background: var(--secondary);
                transform: translateY(-2px);
              }

              .cta-primary svg {
                transition: transform 0.2s ease;
              }

              .cta-primary:hover svg {
                transform: translateX(3px);
              }

              /* Pulse Animation */
              .pulse {
                animation: pulse 2s infinite;
              }

              @keyframes pulse {
                0% {
                  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
                }
                70% {
                  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
                }
                100% {
                  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
                }
              }

              /* Slider Controls */
              .slider-controls {
                position: absolute;
                bottom: 2rem;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                align-items: center;
                gap: 2rem;
                z-index: 10;
              }

              .slider-prev, .slider-next {
                background: rgba(255,255,255,0.1);
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.2s ease;
                color: white;
              }

              .slider-prev:hover, .slider-next:hover {
                background: rgba(255,255,255,0.2);
              }

              .slider-dots {
                display: flex;
                gap: 0.5rem;
              }

              .slider-dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: rgba(255,255,255,0.3);
                cursor: pointer;
                transition: all 0.2s ease;
              }

              .slider-dot.active {
                background: white;
                transform: scale(1.2);
              }

              /* Trust Indicators */
              .trust-indicators {
                position: relative;
                max-width: 1200px;
                margin: 0.8rem auto 0;
                padding: 0 1rem;
                display: flex;
                gap: 0.75rem;
                justify-content: center;
                flex-wrap: wrap;
                z-index: 1;
              }

              .trust-item {
                display: flex;
                align-items: center;
                gap: 0.35rem;
                font-size: 0.75rem;
                color: rgba(255,255,255,0.8);
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(5px);
                padding: 0.35rem 0.85rem;
                border-radius: 50px;
              }

              .trust-item svg {
                color: var(--success);
                width: 14px;
                height: 14px;
              }

              /* Animations */
              @keyframes float {
                0% { transform: translate(0, 0) rotate(0deg); }
                50% { transform: translate(20px, 20px) rotate(5deg); }
                100% { transform: translate(0, 0) rotate(0deg); }
              }

              /* Responsive Design */
              @media (max-width: 768px) {
                .hero-container {
                  text-align: center;
                  padding-bottom: 4rem;
                  justify-content: center;
                }
                
                h1 {
                  font-size: 2.5rem;
                }
                
                .subhead {
                  max-width: 100%;
                }
                
                .price-card, .cta-group, .trust-indicators {
                  margin-left: auto;
                  margin-right: auto;
                }
                
                .badge {
                  align-self: center;
                }
                
                .highlight::after {
                  bottom: 2px;
                  height: 8px;
                }
                
                .slider-controls {
                  bottom: 1rem;
                }
                
                .trust-item {
                  padding: 0.5rem 1rem;
                  font-size: 0.8rem;
                }
              }

/* =====================================================
   SERVER STATUS BAR
   ===================================================== */
.server-status-bar {
    background: linear-gradient(135deg, #1D2833 0%, #2d3748 100%);
    padding: 5px 0;
    border-bottom: 1px solid rgba(124,9,255,0.3);
}
.status-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}
.status-label {
    font-size: 11px;
    color: #a0aec0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.status-metrics {
    display: flex;
    align-items: center;
    gap: 10px;
}
.status-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.metric-label {
    font-size: 9px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}
.metric-value {
    font-size: 11px;
    color: #7c09ff;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}
.status-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.1);
}
.status-page-link {
    font-size: 10px;
    color: #f59e0b;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: opacity 0.2s;
}
.status-page-link:hover { opacity: 0.7; color: #f59e0b; }

/* =====================================================
   FEATURES STRIP
   ===================================================== */
.features-strip {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.features-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 120px;
}
.feature-strip-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(124,9,255,0.1), rgba(124,9,255,0.05));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 13px;
    flex-shrink: 0;
}
.feature-strip-title {
    font-size: 11px;
    font-weight: 700;
    color: #1D2833;
    font-family: 'Montserrat', sans-serif;
}
.feature-strip-sub {
    font-size: 10px;
    color: #718096;
    margin-top: 1px;
}

/* =====================================================
   BUTTON VARIANTS
   ===================================================== */
.btn-third {
    background: var(--third);
    color: #1D2833 !important;
    font-weight: 600;
    border: none;
    font-family: 'Montserrat', sans-serif;
}
.btn-third:hover {
    background: #e08d00;
    color: #fff !important;
}
.text-third { color: var(--third) !important; }
.bg-primary1 { background: var(--primary) !important; }
.bg-white1 { background: rgba(255,255,255,0.15) !important; }
.text-blue { color: var(--secondary) !important; }

/* =====================================================
   LOGIN PAGE
   ===================================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    font-family: 'Open Sans', sans-serif;
}
.auth-left {
    flex: 1;
    background: linear-gradient(135deg, #7c09ff 0%, #4a00c8 50%, #0000ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
.auth-left-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: floatCircle 8s infinite ease-in-out;
}
.auth-left-circle:nth-child(1) { width: 400px; height: 400px; top: -100px; left: -100px; animation-delay: 0s; }
.auth-left-circle:nth-child(2) { width: 250px; height: 250px; bottom: -60px; right: -60px; animation-delay: 3s; }
.auth-left-circle:nth-child(3) { width: 150px; height: 150px; top: 50%; left: 60%; animation-delay: 6s; }
@keyframes floatCircle {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}
.auth-left-content { position: relative; z-index: 1; text-align: center; color: #fff; }
.auth-left-content .auth-logo img { max-height: 60px; margin-bottom: 30px; filter: brightness(0) invert(1); }
.auth-left-content h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; margin-bottom: 15px; }
.auth-left-content p { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.6; margin-bottom: 30px; }
.auth-feature-list { list-style: none; padding: 0; text-align: left; }
.auth-feature-list li { color: rgba(255,255,255,0.9); font-size: 14px; padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.auth-feature-list li i { color: #f59e0b; }

.auth-right {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    min-height: 100vh;
}
.auth-card { width: 100%; max-width: 440px; }
.auth-back-link { font-size: 13px; color: #718096; margin-bottom: 30px; display: flex; align-items: center; gap: 6px; text-decoration: none; }
.auth-back-link:hover { color: var(--primary); }
.auth-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #1D2833; font-size: 1.8rem; margin-bottom: 5px; }
.auth-card .auth-subtitle { color: #718096; font-size: 14px; margin-bottom: 30px; }

.auth-tabs { display: flex; gap: 0; border-bottom: 2px solid #eee; margin-bottom: 30px; }
.auth-tab { flex: 1; padding: 12px; text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: #718096; cursor: pointer; border: none; background: none; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.auth-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.auth-form-panel { display: none; }
.auth-form-panel.active { display: block; animation: fadeInUp 0.3s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.auth-field { margin-bottom: 20px; position: relative; }
.auth-field label { display: block; font-size: 13px; font-weight: 600; color: #4a5568; margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.auth-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1D2833;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.auth-field input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,9,255,0.1); }
.auth-field .toggle-password { position: absolute; right: 14px; top: 38px; cursor: pointer; color: #718096; font-size: 14px; }

.auth-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #7c09ff, #0000ff);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}
.auth-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124,9,255,0.4); }
.auth-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: #cbd5e0; font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }

.social-btn {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    margin-bottom: 10px;
}
.social-btn:hover { border-color: #cbd5e0; background: #f7fafc; }
.auth-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 13px; font-weight: 500; display: none; }
.auth-alert.error { background: #fff5f5; color: #c53030; border-left: 4px solid #fc8181; display: flex; }
.auth-alert.success { background: #f0fff4; color: #276749; border-left: 4px solid #68d391; display: flex; }

/* =====================================================
   CUSTOMER PANEL
   ===================================================== */
.panel-layout {
    display: flex;
    min-height: 100vh;
    background: #f0f2f5;
    font-family: 'Open Sans', sans-serif;
}

/* Sidebar */
.panel-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1a1f2e 0%, #242b3e 100%);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.panel-sidebar.collapsed { transform: translateX(-260px); }
.sidebar-logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sidebar-logo img { max-height: 40px; }
.sidebar-user { padding: 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sidebar-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #7c09ff, #f59e0b); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0; }
.sidebar-user-info .sidebar-name { font-size: 13px; font-weight: 700; color: #fff; font-family: 'Montserrat', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
.sidebar-user-info .sidebar-email { font-size: 11px; color: #718096; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }

.sidebar-nav { padding: 16px 0; flex: 1; }
.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: #a0aec0;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    text-decoration: none;
}
.sidebar-nav-item:hover { color: #fff; background: rgba(255,255,255,0.05); }
.sidebar-nav-item.active { color: #7c09ff; background: rgba(124,9,255,0.1); border-left-color: #7c09ff; }
.sidebar-nav-item i { width: 18px; text-align: center; font-size: 15px; }
.sidebar-nav-item.logout { color: #fc8181; margin-top: auto; }
.sidebar-nav-item.logout:hover { background: rgba(252,129,129,0.1); }

.sidebar-status { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.sidebar-status-indicator { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #68d391; font-family: 'Montserrat', sans-serif; }
.sidebar-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #68d391; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%, 100% { box-shadow: 0 0 0 0 rgba(104,211,145,0.4); } 50% { box-shadow: 0 0 0 6px rgba(104,211,145,0); } }

/* Main content */
.panel-main {
    margin-left: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.3s;
}
.panel-main.expanded { margin-left: 0; }

/* Top bar */
.panel-topbar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-hamburger { display: none; background: none; border: none; font-size: 20px; color: #4a5568; cursor: pointer; padding: 4px; }
.topbar-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: #1D2833; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-notif { position: relative; cursor: pointer; width: 36px; height: 36px; background: #f7fafc; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #4a5568; font-size: 16px; }
.topbar-notif-badge { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; background: #fc8181; border-radius: 50%; font-size: 10px; color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.topbar-user { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 6px 12px; border-radius: 10px; background: #f7fafc; }
.topbar-user-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #7c09ff, #f59e0b); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; font-family: 'Montserrat', sans-serif; }
.topbar-user-name { font-size: 13px; font-weight: 600; color: #1D2833; font-family: 'Montserrat', sans-serif; }

/* Panel content area */
.panel-content { padding: 28px; flex: 1; }
.panel-tab { display: none; }
.panel-tab.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Stat cards */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 28px; }
.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.stat-card.purple { border-top-color: #7c09ff; }
.stat-card.green  { border-top-color: #48bb78; }
.stat-card.orange { border-top-color: #f59e0b; }
.stat-card.blue   { border-top-color: #4299e1; }
.stat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.stat-card.purple .stat-icon { background: rgba(124,9,255,0.1); color: #7c09ff; }
.stat-card.green  .stat-icon { background: rgba(72,187,120,0.1); color: #48bb78; }
.stat-card.orange .stat-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }
.stat-card.blue   .stat-icon { background: rgba(66,153,225,0.1); color: #4299e1; }
.stat-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: #1D2833; line-height: 1; }
.stat-label { font-size: 12px; color: #718096; margin-top: 4px; font-weight: 600; font-family: 'Montserrat', sans-serif; }

/* Panel cards */
.panel-card { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 24px; }
.panel-card-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: #1D2833; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }

/* Service badges */
.badge-status { padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif; display: inline-block; }
.badge-active { background: rgba(72,187,120,0.15); color: #276749; }
.badge-suspended { background: rgba(252,129,129,0.15); color: #c53030; }
.badge-pending { background: rgba(245,158,11,0.15); color: #92400e; }
.badge-cancelled { background: rgba(160,174,192,0.15); color: #4a5568; }
.badge-paid { background: rgba(72,187,120,0.15); color: #276749; }
.badge-unpaid { background: rgba(245,158,11,0.15); color: #92400e; }
.badge-overdue { background: rgba(252,129,129,0.15); color: #c53030; }
.badge-open { background: rgba(66,153,225,0.15); color: #2b6cb0; }
.badge-inprogress { background: rgba(245,158,11,0.15); color: #92400e; }
.badge-resolved { background: rgba(72,187,120,0.15); color: #276749; }
.badge-closed { background: rgba(160,174,192,0.15); color: #4a5568; }
.badge-low { background: rgba(160,174,192,0.15); color: #4a5568; }
.badge-medium { background: rgba(66,153,225,0.15); color: #2b6cb0; }
.badge-high { background: rgba(245,158,11,0.15); color: #92400e; }
.badge-critical { background: rgba(252,129,129,0.15); color: #c53030; }

/* Tables in panel */
.panel-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.panel-table th { padding: 10px 12px; text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; color: #718096; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid #e2e8f0; }
.panel-table td { padding: 14px 12px; border-bottom: 1px solid #f7fafc; color: #1D2833; vertical-align: middle; }
.panel-table tr:hover td { background: #f7fafc; }
.panel-table tr:last-child td { border-bottom: none; }

/* Panel buttons */
.btn-panel-primary { background: linear-gradient(135deg, #7c09ff, #5a06bb); color: #fff !important; border: none; padding: 9px 18px; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.btn-panel-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(124,9,255,0.3); }
.btn-panel-secondary { background: #f7fafc; color: #4a5568 !important; border: 1px solid #e2e8f0; padding: 9px 18px; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.btn-panel-secondary:hover { background: #edf2f7; }
.btn-panel-danger { background: rgba(252,129,129,0.1); color: #c53030 !important; border: none; padding: 9px 18px; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.2s; }

/* Uptime bar */
.uptime-bar-wrap { background: #e2e8f0; border-radius: 50px; height: 8px; overflow: hidden; margin: 8px 0; }
.uptime-bar { height: 100%; background: linear-gradient(90deg, #48bb78, #38a169); border-radius: 50px; transition: width 1s ease; }

/* Activity timeline */
.activity-item { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid #f7fafc; align-items: flex-start; }
.activity-item:last-child { border-bottom: none; }
.activity-dot { width: 10px; height: 10px; border-radius: 50%; background: #7c09ff; margin-top: 4px; flex-shrink: 0; }
.activity-text { font-size: 13px; color: #4a5568; flex: 1; }
.activity-time { font-size: 11px; color: #a0aec0; white-space: nowrap; font-family: 'Montserrat', sans-serif; }

/* Skeleton loading */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* Toast notifications */
.panel-toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.panel-toast { padding: 14px 20px; border-radius: 10px; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.15); font-size: 13px; font-family: 'Montserrat', sans-serif; font-weight: 600; display: flex; align-items: center; gap: 10px; min-width: 280px; animation: slideInRight 0.3s ease; }
.panel-toast.success { border-left: 4px solid #48bb78; color: #276749; }
.panel-toast.error   { border-left: 4px solid #fc8181; color: #c53030; }
.panel-toast.info    { border-left: 4px solid #4299e1; color: #2b6cb0; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Profile form */
.profile-field { margin-bottom: 18px; }
.profile-field label { display: block; font-size: 12px; font-weight: 700; color: #718096; text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Montserrat', sans-serif; margin-bottom: 6px; }
.profile-field input, .profile-field textarea { width: 100%; padding: 11px 14px; border: 2px solid #e2e8f0; border-radius: 8px; font-size: 13px; color: #1D2833; font-family: 'Open Sans', sans-serif; transition: border-color 0.2s; outline: none; }
.profile-field input:focus, .profile-field textarea:focus { border-color: #7c09ff; }
.profile-field input:read-only { background: #f7fafc; color: #718096; cursor: not-allowed; }
.profile-avatar-circle { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #7c09ff, #f59e0b); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: #fff; margin: 0 auto 16px; }

/* Quick actions */
.quick-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.quick-action-btn { padding: 12px 20px; border-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 8px; border: none; transition: all 0.2s; text-decoration: none; }
.quick-action-btn.primary { background: linear-gradient(135deg, #7c09ff, #5a06bb); color: #fff; }
.quick-action-btn.secondary { background: rgba(245,158,11,0.1); color: #92400e; }
.quick-action-btn.info { background: rgba(66,153,225,0.1); color: #2b6cb0; }
.quick-action-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* Filter buttons */
.filter-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-btn { padding: 7px 16px; border-radius: 20px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; cursor: pointer; border: 2px solid #e2e8f0; background: #fff; color: #718096; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: #7c09ff; color: #fff; border-color: #7c09ff; }

/* Service cards */
.service-card { border: 1px solid #e2e8f0; border-radius: 12px; padding: 18px; margin-bottom: 14px; transition: all 0.2s; }
.service-card:hover { border-color: #7c09ff; box-shadow: 0 4px 15px rgba(124,9,255,0.1); }

/* Ticket thread */
.ticket-message { padding: 14px; border-radius: 10px; margin-bottom: 12px; font-size: 13px; line-height: 1.6; color: #1D2833; }
.ticket-message.user { background: rgba(124,9,255,0.06); border-left: 3px solid #7c09ff; }
.ticket-message.admin { background: rgba(72,187,120,0.06); border-left: 3px solid #48bb78; }
.ticket-message-meta { font-size: 11px; color: #4a5568; margin-bottom: 6px; font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* Responsive panel */
@media (max-width: 768px) {
    .panel-sidebar { transform: translateX(-260px); }
    .panel-sidebar.open { transform: translateX(0); }
    .panel-main { margin-left: 0; }
    .topbar-hamburger { display: block; }
    .auth-page { flex-direction: column; }
    .auth-left { min-height: 250px; padding: 40px 24px; }
    .auth-right { padding: 40px 24px; }
    .features-strip-inner { justify-content: center; }
    .stat-cards { grid-template-columns: 1fr 1fr; }
    .panel-content { padding: 16px; }
}

/* =====================================================
   PRODUCT PAGES (VPS, Aurora Panel, Dedicated)
   ===================================================== */
.product-hero {
    background: transparent;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(124,9,255,0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(0,0,255,0.2) 0%, transparent 60%);
}
.product-hero-content { position: relative; z-index: 1; }
.product-hero h1 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 3rem; line-height: 1.2; margin-bottom: 16px; }
.product-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 30px; }
.hero-stat-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.hero-stat-item { text-align: center; }
.hero-stat-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem; color: #f59e0b; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Billing toggle */
.billing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; }
.billing-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: #4a5568; }
.billing-label.active { color: #7c09ff; }
.billing-switch { position: relative; width: 52px; height: 28px; }
.billing-switch input { opacity: 0; width: 0; height: 0; }
.billing-slider { position: absolute; cursor: pointer; inset: 0; background: #7c09ff; border-radius: 50px; transition: 0.3s; }
.billing-slider:before { content: ''; position: absolute; height: 20px; width: 20px; left: 4px; bottom: 4px; background: #fff; border-radius: 50%; transition: 0.3s; }
.billing-switch input:checked + .billing-slider:before { transform: translateX(24px); }
.billing-badge { background: rgba(72,187,120,0.15); color: #276749; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; font-family: 'Montserrat', sans-serif; }

/* Plan cards */
.plan-card {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    padding: 30px 24px;
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.plan-card:hover { border-color: #7c09ff; transform: translateY(-6px); box-shadow: 0 20px 50px rgba(124,9,255,0.15); }
.plan-card.featured { border-color: #7c09ff; box-shadow: 0 10px 40px rgba(124,9,255,0.2); }
.plan-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #7c09ff, #f59e0b); border-radius: 16px 16px 0 0; }
.plan-popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #7c09ff, #f59e0b); color: #fff; padding: 5px 18px; border-radius: 50px; font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif; white-space: nowrap; }
.plan-type { font-size: 11px; font-weight: 700; color: #718096; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; margin-bottom: 6px; }
.plan-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; color: #1D2833; margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: #718096; margin-bottom: 20px; line-height: 1.5; }
.plan-price-wrap { margin-bottom: 20px; }
.plan-price { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.8rem; color: #1D2833; line-height: 1; }
.plan-price-currency { font-size: 1.4rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-price-period { font-size: 13px; color: #718096; margin-left: 4px; }
.plan-price-annual { font-size: 12px; color: #48bb78; font-weight: 600; margin-top: 4px; display: none; }
.plan-price-annual.show { display: block; }
.plan-btn { display: block; width: 100%; padding: 13px; border-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; border: none; text-align: center; transition: all 0.3s; margin-bottom: 20px; text-decoration: none; }
.plan-btn.primary { background: linear-gradient(135deg, #7c09ff, #5a06bb); color: #fff !important; }
.plan-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124,9,255,0.4); }
.plan-btn.outline { background: transparent; color: #7c09ff !important; border: 2px solid #7c09ff; }
.plan-btn.outline:hover { background: #7c09ff; color: #fff !important; }
.plan-features { list-style: none; padding: 0; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 13px; color: #4a5568; border-bottom: 1px solid #f7fafc; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: #48bb78; margin-top: 2px; flex-shrink: 0; }
.plan-features li.na { color: #a0aec0; }
.plan-features li.na i { color: #a0aec0; }

/* OS Tab Selector */
.os-tabs { display: flex; background: #f7fafc; border-radius: 12px; padding: 4px; gap: 4px; width: fit-content; margin: 0 auto 32px; }
.os-tab { padding: 10px 28px; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; border: none; background: transparent; color: #718096; transition: all 0.2s; }
.os-tab.active { background: #7c09ff; color: #fff; box-shadow: 0 4px 15px rgba(124,9,255,0.3); }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.feature-grid-item { background: #fff; border-radius: 14px; padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s; border-top: 3px solid var(--primary); }
.feature-grid-item:hover { transform: translateY(-4px); }
.feature-grid-icon { width: 56px; height: 56px; background: rgba(124,9,255,0.08); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #7c09ff; font-size: 22px; margin: 0 auto 14px; }
.feature-grid-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: #1D2833; margin-bottom: 6px; }
.feature-grid-desc { font-size: 12px; color: #718096; line-height: 1.5; }

/* Dedicated server table */
.server-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 2px 20px rgba(0,0,0,0.07); border-left: 5px solid transparent; margin-bottom: 20px; transition: all 0.2s; }
.server-card:hover { transform: translateX(5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.server-card.bronze { border-left-color: #cd7f32; }
.server-card.silver { border-left-color: #a8a9ad; }
.server-card.gold   { border-left-color: #f59e0b; }
.server-card.platinum { border-left-color: #7c09ff; }
.server-tier { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.server-card.bronze .server-tier { color: #cd7f32; }
.server-card.silver .server-tier { color: #a8a9ad; }
.server-card.gold   .server-tier { color: #f59e0b; }
.server-card.platinum .server-tier { color: #7c09ff; }
.server-specs { display: flex; gap: 24px; flex-wrap: wrap; margin: 16px 0; }
.server-spec { text-align: center; }
.server-spec-value { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: #1D2833; }
.server-spec-label { font-size: 11px; color: #718096; margin-top: 2px; }
.server-price { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; color: #1D2833; }

/* DC location badges */
.dc-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 50px; background: rgba(124,9,255,0.08); color: #7c09ff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; margin: 6px; }

/* FAQ */
.faq-item { border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 18px 20px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: #1D2833; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; transition: background 0.2s; }
.faq-question:hover, .faq-question.open { background: rgba(124,9,255,0.03); color: #7c09ff; }
.faq-question i { transition: transform 0.3s; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease; font-size: 13px; color: #4a5568; line-height: 1.7; background: #fff; }
.faq-answer.open { max-height: 200px; padding: 16px 20px; border-top: 1px solid #f7fafc; }

/* CTA banner */
.cta-banner { background: linear-gradient(135deg, #7c09ff 0%, #0000ff 100%); padding: 60px 0; text-align: center; color: #fff; border-radius: 20px; margin: 60px 0; }
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 28px; }
.cta-banner .btn-white { background: #fff; color: #7c09ff !important; font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 14px 36px; border-radius: 10px; border: none; font-size: 15px; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* Payment Modal */
.payment-modal-header { background: linear-gradient(135deg, #7c09ff, #0000ff); color: #fff; padding: 24px; border-radius: 14px 14px 0 0; }
.payment-modal-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; }
.payment-modal-amount { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem; margin-top: 6px; }
.payment-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    transition: all 0.2s;
}
.payment-btn.razorpay { background: #528FF0; color: #fff; }
.payment-btn.razorpay:hover { background: #3d72d6; transform: translateY(-2px); }
.payment-btn.stripe  { background: #635BFF; color: #fff; }
.payment-btn.stripe:hover  { background: #4d45e0; transform: translateY(-2px); }
.payment-btn.paypal  { background: #0070ba; color: #fff; }
.payment-btn.paypal:hover  { background: #005ea6; transform: translateY(-2px); }
.payment-btn-icon { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.payment-secure-note { text-align: center; font-size: 12px; color: #718096; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Chatbot z-index fix for pages */
.chatbot-toggle, .chatbot-container { z-index: 9999; }

/* ===== FOOTER LINK FIX ===== */
/* Make btn-link white inside the purple footer */
.footer .btn-link {
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer .btn-link:hover {
    color: #f59e0b !important;
    padding-left: 6px;
}
.footer p, .footer p i {
    color: rgba(255,255,255,0.8);
}
.footer .copyright a {
    color: #f59e0b;
}

/* ===== BODY BACKGROUND FIX for product pages ===== */
body {
    background-image: url('../img/back.jpg');
    background-size: cover;
    background-attachment: fixed;
}
