main > .container {
  padding: 0px 15px 20px;
}

.footer {
  background-color: #f5f5f5;
  font-size: 0.9em;
  height: 60px;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

.not-set {
  color: #c55;
  font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
  content: "";
  left: 3px;
  display: inline-block;
  width: 0;
  height: 0;
  border: solid 5px transparent;
  margin: 4px 4px 2px 4px;
  background: transparent;
}

a.asc:after {
  border-bottom: solid 7px #212529;
  border-top-width: 0;
}

a.desc:after {
  border-top: solid 7px #212529;
  border-bottom-width: 0;
}

.grid-view th {
  white-space: nowrap;
}

.hint-block {
  display: block;
  margin-top: 5px;
  color: #999;
}

.error-summary {
  color: #a94442;
  background: #fdf7f7;
  border-left: 3px solid #eed3d7;
  padding: 10px 20px;
  margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
  padding-top: 7px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .nav li > form > button.logout {
    display: block;
    text-align: left;
    width: 100%;
    padding: 10px 0;
  }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
  outline: none;
}

.form-group {
  margin-bottom: 1rem;
}
 

body {
  background-color: var(--bg-dark);
  color: var(--text-bright);
  font-family: "Inter", sans-serif;
}

.audit-header {
  background: linear-gradient(
    180deg,
    rgba(248, 81, 73, 0.1) 0%,
    transparent 100%
  );
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--border-color);
}

.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  height: 100%;
}

.service-card {
  background: var(--card-bg);
  border-left: 4px solid var(--primary-blue);
  padding: 25px;
  border-radius: 0 16px 16px 0;
  margin-bottom: 20px;
  transition: 0.3s;
}
.service-card:hover {
  background: #1c2128;
  transform: translateX(10px);
}

.cost-center-box {
  border: 2px dashed var(--accent-red);
  padding: 30px;
  border-radius: 20px;
  background: rgba(248, 81, 73, 0.05);
}

.profit-guard-box {
  border: 2px solid var(--accent-green);
  padding: 30px;
  border-radius: 20px;
  background: rgba(63, 185, 126, 0.05);
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(33, 136, 255, 0.3);
  margin-bottom: 10px;
}
 
 

.jumbotron {
  background: radial-gradient(
    circle at top,
    rgba(33, 136, 255, 0.15) 0%,
    transparent 70%
  );
  padding: 100px 20px;
  border-radius: 30px;
}

.display-4 {
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(180deg, #fff 0%, #8b949e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hosting-card,
.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hosting-card:hover,
.portfolio-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.1);
}

/* Portfolio Specific Style */
.portfolio-card {
  padding: 30px;
  text-align: left;
  border-left: 4px solid var(--border-color);
}

.portfolio-card:hover {
  border-left: 4px solid var(--accent-cyan);
}

.portfolio-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-link:hover {
  color: #fff;
}

.spec-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(33, 136, 255, 0.3));
}

.badge-bestseller {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.spec-value {
  color: var(--accent-cyan);
  font-weight: 600;
}
 

.section-title {
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 2px;
}
 

.text-muted-custom {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

hr {
  border-top: 1px solid var(--border-color);
  margin: 20px 0;
} 
 

.hero-pricing {
  background: radial-gradient(
    circle at top left,
    rgba(33, 136, 255, 0.1) 0%,
    transparent 50%
  );
  padding: 80px 0 50px;
  border-bottom: 1px solid var(--border-color);
}

/* Pricing Cards */
.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: 0.3s ease-in-out;
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(33, 136, 255, 0.2);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-bright);
  margin: 20px 0;
}

.price-tag span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Resources List */
.resource-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.resource-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.resource-list li i {
  color: var(--accent-green);
  margin-right: 10px;
}

.tech-pill-sm {
  background: #0d1117;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.highlight-cyan {
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Dedicated Resource Badge */
.dedicated-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: bold;
  white-space: nowrap;
}

:root {
  --bg-dark: #0b0e14;
  --card-bg: #161b22;
  --primary-blue: #2188ff;
  --accent-cyan: #00f0ff;
  --accent-green: #3fb950;
  --accent-orange: #ffa657;
  --text-bright: #ffffff;
  --border-color: #30363d;
  --danger-red: #f85149;
}
 

.arch-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.security-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}
.security-list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  border-left: 4px solid var(--danger-red);
  color: var(--text-bright);
  font-weight: 600; /* Tebal agar mudah dibaca */
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.flow-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: transform 0.2s;
}
.flow-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}

.tech-pill {
  background: #0d1117;
  border: 1px solid var(--primary-blue);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  display: inline-block;
  margin: 4px;
  font-family: "Fira Code", monospace;
}

.collab-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}  

/* Hero Section */
.hero-mail {
  background: radial-gradient(
    circle at top right,
    rgba(33, 136, 255, 0.15) 0%,
    transparent 60%
  );
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--border-color);
}

/* Cards */
.collab-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.collab-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Tech Pills */
.tech-pill {
  background: #0d1117;
  border: 1px solid var(--primary-blue);
  color: var(--accent-cyan);
  padding: 5px 12px;
  border-radius: 6px;
  font-family: "Fira Code", monospace;
  font-size: 0.8rem;
  display: inline-block;
  margin: 4px;
}

/* Comparison Table */
.table-compare-enterprise {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  background: var(--card-bg);
}
.table-compare-enterprise th,
.table-compare-enterprise td {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}
.table-compare-enterprise th {
  background: rgba(33, 136, 255, 0.05);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.saving-badge {
  background: var(--accent-green);
  color: #000;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.8rem;
}

.highlight-cyan {
  color: var(--accent-cyan);
  font-weight: 700;
}
.about-freddo {
  color: #e9ecef;
  line-height: 1.8;
}
.hero-text {
  font-size: 1.1rem;
  color: #adb5bd;
}
.highlight-box {
  background: rgba(33, 136, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(33, 136, 255, 0.2);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2188ff;
}
.icon-circle {
  width: 60px;
  height: 60px;
  background: #2188ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}  

.jumbotron {
  background: radial-gradient(
    circle at top,
    rgba(33, 136, 255, 0.15) 0%,
    transparent 70%
  );
  padding: 100px 20px;
  border-radius: 30px;
}

.display-4 {
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(180deg, #fff 0%, #8b949e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hosting-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 45px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hosting-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.1);
}

.spec-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(33, 136, 255, 0.3));
}

.badge-bestseller {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.spec-value {
  color: var(--accent-cyan);
  font-weight: 600;
}
/* Warna default (garis dan tulisan) */
.btn-outline-custom {
    color: #ff5733; /* Ganti dengan warna pilihanmu */
    border-color: #ff5733;
}

/* Warna saat mouse diarahkan (hover) */
.btn-outline-custom:hover {
    background-color: #ff5733;
    color: white; /* Tulisan jadi putih saat di-hover */
}
.btn-glow {
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  border: none;
  color: #fff;
  padding: 18px 45px;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(33, 136, 255, 0.2);
}

.card-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
  
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#header .navbar {
  background-color: rgba(11, 14, 20, 0.8) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #30363d;
}

.navbar-dark .navbar-nav .nav-link {
  color: #8b949e;
  transition: 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #00f0ff;
}

#footer {
  background-color: #161b22 !important;
  border-top: 1px solid #30363d;
  color: #8b949e;
}

/* Floating WhatsApp Button Styling */
.wa-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-tooltip {
  background: #161b22;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 10px;
  border: 1px solid #2188ff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.wa-button {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
}

.wa-button:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.wa-float-container:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.wa-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: wa-pulse-animation 2s infinite;
}

@keyframes wa-pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.breadcrumb-item a {
  color: #2188ff;
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #8b949e;
}
/* Menghapus background putih pada menu navigasi saat hover */
#w1 li a:hover, 
#w1 li.active a,
.navbar-nav .nav-link:hover {
    background-color: transparent !important; /* Memaksa background tetap transparan */
    color: #00F0FF !important; /* Warna teks berubah jadi Cyan menyala */
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6); /* Efek glow tipis pada teks */
    transition: 0.3s ease-in-out;
}

/* Memastikan menu 'Active' juga tidak punya background putih */
#w1 li.active a {
    background-color: rgba(0, 240, 255, 0.1) !important; /* Background biru sangat tipis saja */
    border-bottom: 2px solid #00F0FF; /* Garis bawah penanda halaman aktif */
} 
/* Mengubah card/form agar kontras dengan background baru */
.site-login, .list-group-item {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Efek kaca/glassmorphism */
    color: white !important;
    padding:10px;
}

/* Memperbaiki warna link di sidebar */
.list-group-item span {
    color: #cbd5e1;
}

.list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* Menyesuaikan breadcrumb */
.breadcrumb {
    background-color: transparent;
}
.breadcrumb-item a {
    color: #38bdf8; /* Warna biru muda neon */
} 
/* 1. Reset Body ke Dark Theme */
body {
    background: #0f172a; /* Biru gelap charcoal yang dalam */
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 240, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(15, 23, 42, 1) 0px, transparent 50%);
    color: #e2e8f0; /* Teks putih keabuan agar nyaman di mata */
    font-family: 'Inter', sans-serif;
}

/* 2. Navigasi & Breadcrumb */
.navbar {
    background-color: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.breadcrumb {
    background-color: transparent;
}
.breadcrumb-item a {
    color: #00F0FF;
}
.breadcrumb-item.active {
    color: #94a3b8;
}

/* 3. Panel Form (Glassmorphism Look) */
.site-contact {
    background: rgba(30, 41, 59, 0.5); /* Semi transparan */
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* 4. Input Fields (Dark Input) */
.form-control {
    background-color: #1e293b !important;
    border: 1px solid #334155 !important;
    color: #f8fafc !important;
    border-radius: 10px;
    padding: 12px;
}

.form-control:focus {
    border-color: #00F0FF !important;
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15) !important;
    outline: none;
}

/* 5. Captcha Image & Labels */
.form-label {
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

#contactform-verifycode-image {
    border-radius: 8px;
    filter: brightness(0.9) contrast(1.1); /* Biar captcha gak terlalu silau */
}

/* 6. Button Submit Neon */
.btn-primary {
    background: #00F0FF;
    border: none;
    color: #0f172a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}