/* Gatot Kaca Host - Static Site Styles */
:root {
  --yellow: #f0c020;
  --yellow-dark: #d4a810;
  --yellow-light: #ffe566;
  --dark: #2b2b2b;
  --dark-nav: #1e1e1e;
  --grey-bg: #ececec;
  --grey-light: #f5f5f5;
  --grey-box: #ddd;
  --red: #c0392b;
  --red-link: #cc0000;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --container: 980px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--grey-bg);
  line-height: 1.5;
}

a { color: var(--red-link); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 10px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--grey-light);
  border-bottom: 1px solid #ccc;
  padding: 4px 0;
  font-size: 11px;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}

.top-bar a {
  color: var(--red-link);
  padding: 0 8px;
  border-right: 1px solid var(--red-link);
}

.top-bar a:last-child { border-right: none; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border: 3px solid var(--dark);
  flex-shrink: 0;
}

.logo-text h1 {
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow-dark);
  text-shadow: 1px 1px 0 var(--dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-box {
  background: var(--grey-box);
  border: 1px solid #bbb;
  padding: 8px 16px;
  text-align: center;
  border-radius: 2px;
}

.contact-box strong {
  display: block;
  font-size: 12px;
  color: var(--text);
}

.contact-box em {
  font-style: normal;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.contact-box .contact-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
}

.contact-box .contact-lines a {
  text-decoration: none;
  line-height: 1.3;
}

.contact-box .contact-lines a:hover em {
  text-decoration: underline;
}

.contact-box .contact-lines em i {
  margin-right: 4px;
  font-size: 10px;
}

/* ===== NAVIGATION ===== */
.main-nav {
  background: linear-gradient(to bottom, #3a3a3a, var(--dark-nav));
  border-top: 3px solid var(--yellow);
}

.nav-inner {
  display: flex;
  align-items: stretch;
}

.nav-links {
  display: flex;
  list-style: none;
  flex: 1;
}

.nav-links li a {
  display: block;
  padding: 12px 22px;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  border-right: 1px solid #444;
  transition: background 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: var(--yellow);
  color: var(--dark);
  text-decoration: none;
}

.nav-order {
  display: flex;
  align-items: stretch;
}

.nav-order a {
  display: flex;
  align-items: center;
  padding: 12px 30px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 1px solid var(--yellow-dark);
}

.nav-order a:hover {
  background: var(--yellow-light);
  text-decoration: none;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  min-height: 280px;
}

.hero-left {
  flex: 1;
  padding: 25px 30px;
  position: relative;
  z-index: 2;
}

.hero-left h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-features {
  list-style: none;
  margin-bottom: 15px;
}

.hero-features li {
  padding: 3px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.hero-features li i {
  color: var(--dark);
  margin-right: 6px;
  width: 16px;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: 50%;
  border: 3px solid var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

.hero-badge .percent {
  font-size: 22px;
  color: var(--red);
  font-weight: 900;
}

.hero-right {
  flex: 1;
  position: relative;
  background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=600&h=400&fit=crop') center/cover no-repeat;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--yellow) 0%, transparent 30%);
}

.hero-price-box {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.85);
  color: var(--white);
  padding: 15px 20px;
  text-align: center;
  border: 2px solid var(--yellow);
  z-index: 2;
  min-width: 180px;
}

.hero-price-box .murah {
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
  padding: 2px 10px;
  display: inline-block;
  margin-bottom: 8px;
}

.hero-price-box .label {
  font-size: 11px;
  color: #ccc;
}

.hero-price-box .price {
  font-size: 36px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.hero-price-box .price small {
  font-size: 14px;
}

.hero-price-box .per {
  font-size: 11px;
  color: #aaa;
}

.hero-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: #444;
  color: var(--white);
  text-decoration: none;
}

.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-yellow:hover {
  background: var(--yellow-light);
  text-decoration: none;
}

/* ===== PRODUCT ICONS ROW ===== */
.product-icons {
  background: var(--dark);
  padding: 0;
}

.product-icons .container {
  display: flex;
}

.product-icon-item {
  flex: 1;
  text-align: center;
  padding: 12px 5px;
  border-right: 1px solid #444;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s;
}

.product-icon-item:last-child { border-right: none; }

.product-icon-item:hover {
  background: #444;
  text-decoration: none;
  color: var(--yellow);
}

.product-icon-item i {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
}

.product-icon-item span {
  font-size: 11px;
  font-weight: 700;
}

/* ===== MAIN CONTENT LAYOUT ===== */
.main-content {
  padding: 20px 0;
}

.content-layout {
  display: flex;
  gap: 15px;
}

.content-main {
  flex: 1;
  min-width: 0;
}

.content-sidebar {
  width: 260px;
  flex-shrink: 0;
}

/* ===== SERVER BOXES ===== */
.server-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.server-box {
  flex: 1;
  background: var(--white);
  border: 1px solid #ccc;
  overflow: hidden;
}

.server-box-header {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
}

.server-box-header .flag {
  font-size: 28px;
}

.server-box-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}

.server-box-body {
  padding: 15px;
  display: flex;
  gap: 10px;
}

.server-box-price {
  background: var(--grey-light);
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  min-width: 100px;
}

.server-box-price .amount {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
}

.server-box-price .period {
  font-size: 10px;
  color: var(--text-light);
}

.server-box-features {
  flex: 1;
  list-style: none;
  font-size: 12px;
}

.server-box-features li {
  padding: 2px 0;
  border-bottom: 1px dotted #ddd;
}

.server-box-features li i {
  color: var(--yellow-dark);
  margin-right: 4px;
  width: 14px;
}

.server-box-footer {
  padding: 10px 15px;
  display: flex;
  gap: 8px;
  border-top: 1px solid #eee;
  background: var(--grey-light);
}

/* ===== RESELLER BOX ===== */
.reseller-box {
  background: var(--white);
  border: 1px solid #ccc;
  margin-bottom: 15px;
  overflow: hidden;
}

.reseller-header {
  background: linear-gradient(to right, var(--grey-box), var(--grey-light));
  padding: 10px 15px;
  border-bottom: 2px solid var(--yellow);
}

.reseller-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}

.reseller-body {
  padding: 15px;
  display: flex;
  gap: 15px;
}

.reseller-features {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  list-style: none;
  font-size: 12px;
}

.reseller-features li i {
  color: var(--yellow-dark);
  margin-right: 4px;
}

.reseller-image {
  width: 180px;
  flex-shrink: 0;
}

.reseller-image img {
  width: 100%;
  border: 1px solid #ddd;
}

.reseller-footer {
  padding: 10px 15px;
  display: flex;
  gap: 8px;
  border-top: 1px solid #eee;
  background: var(--grey-light);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--white);
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.why-header {
  background: var(--dark);
  color: var(--yellow);
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.why-item {
  padding: 15px;
  border-right: 1px solid #eee;
  text-align: center;
}

.why-item:last-child { border-right: none; }

.why-item i {
  font-size: 32px;
  color: var(--yellow-dark);
  margin-bottom: 8px;
}

.why-item h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}

.why-item ul {
  list-style: none;
  font-size: 11px;
  color: var(--text-light);
  text-align: left;
}

.why-item ul li {
  padding: 2px 0;
}

.why-item ul li i {
  font-size: 10px;
  color: var(--red);
  margin-right: 4px;
}

/* ===== SIDEBAR ===== */
.sidebar-box {
  background: var(--white);
  border: 1px solid #ccc;
  margin-bottom: 12px;
}

.sidebar-box-header {
  background: var(--dark);
  color: var(--yellow);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.sidebar-guarantee {
  padding: 10px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 5px;
  border-bottom: 1px dotted #ddd;
  font-size: 12px;
  font-weight: 600;
}

.guarantee-item:last-child { border-bottom: none; }

.guarantee-item i {
  font-size: 24px;
  color: var(--yellow-dark);
  width: 30px;
  text-align: center;
}

.sidebar-features {
  padding: 10px 12px;
  list-style: none;
  font-size: 11px;
}

.sidebar-features li {
  padding: 3px 0;
  border-bottom: 1px dotted #eee;
}

.sidebar-features li i {
  color: var(--yellow-dark);
  margin-right: 4px;
  width: 14px;
}

.sidebar-btn {
  display: block;
  margin: 8px 10px;
  padding: 10px;
  background: var(--grey-box);
  border: 1px solid #bbb;
  text-align: center;
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.sidebar-btn:hover {
  background: var(--yellow);
  text-decoration: none;
  color: var(--dark);
}

.sidebar-btn i {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--dark);
}

.sidebar-powered {
  text-align: center;
  font-size: 10px;
  color: var(--text-light);
  padding: 8px;
  font-style: italic;
}

/* ===== PARTNER LOGOS ===== */
.partner-logos {
  background: var(--white);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.logo-row:last-child { margin-bottom: 0; }

.partner-logo {
  height: 35px;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: opacity 0.2s;
}

.partner-logo:hover { opacity: 1; }

.partner-text-logo {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-light);
  padding: 5px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--grey-light);
  border-top: 3px solid var(--yellow);
  padding: 25px 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  padding: 2px 0;
}

.footer-col ul li a {
  font-size: 11px;
  color: var(--text-light);
}

.footer-col ul li a:hover {
  color: var(--red-link);
}

.footer-copyright {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

/* ===== INNER PAGE STYLES ===== */
.page-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  padding: 25px 0;
  border-bottom: 3px solid var(--dark);
}

.page-banner h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
}

.page-banner p {
  font-size: 13px;
  color: var(--dark);
  margin-top: 5px;
}

.page-content {
  background: var(--white);
  border: 1px solid #ccc;
  padding: 25px;
  margin-bottom: 20px;
}

.page-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin: 20px 0 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--yellow);
}

.page-content h3:first-child { margin-top: 0; }

.page-content p {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.7;
}

.page-content ul, .page-content ol {
  margin: 10px 0 10px 20px;
  font-size: 13px;
}

.page-content li { margin-bottom: 5px; }

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 12px;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: center;
}

.pricing-table th {
  background: var(--dark);
  color: var(--yellow);
  font-weight: 700;
}

.pricing-table tr:nth-child(even) {
  background: var(--grey-light);
}

.pricing-table .price-cell {
  font-weight: 900;
  color: var(--red);
  font-size: 14px;
}

.pricing-table .featured {
  background: #fffde7;
  border: 2px solid var(--yellow);
}

/* FAQ */
.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 8px;
}

.faq-question {
  background: var(--grey-light);
  padding: 12px 15px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover { background: var(--grey-box); }

.faq-answer {
  padding: 12px 15px;
  display: none;
  font-size: 13px;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { background: var(--yellow); }

/* Forms */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  font-size: 13px;
  font-family: inherit;
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Domain Search */
.domain-search {
  display: flex;
  gap: 0;
  margin: 20px 0;
}

.domain-search input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--yellow);
  font-size: 16px;
}

.domain-search button {
  padding: 12px 25px;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

.domain-search button:hover { background: #444; }

.domain-extensions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}

.domain-ext {
  padding: 6px 14px;
  background: var(--grey-light);
  border: 1px solid #ddd;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.domain-ext:hover,
.domain-ext.active {
  background: var(--yellow);
  border-color: var(--yellow-dark);
}

/* Blog / Testimonial Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 15px 0;
}

.card {
  border: 1px solid #ddd;
  overflow: hidden;
}

.card-img {
  height: 140px;
  background: var(--grey-box);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--text-light);
}

.card-body {
  padding: 12px;
}

.card-body h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}

.card-body p {
  font-size: 12px;
  color: var(--text-light);
}

.card-body .date {
  font-size: 10px;
  color: #999;
  margin-top: 8px;
}

/* Status Table */
.status-online { color: #27ae60; font-weight: 700; }
.status-maintenance { color: var(--yellow-dark); font-weight: 700; }

/* Breadcrumb */
.breadcrumb {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.breadcrumb a { color: var(--red-link); }

/* Alert boxes */
.alert {
  padding: 12px 15px;
  margin-bottom: 15px;
  font-size: 13px;
  border-radius: 2px;
}

.alert-info {
  background: #e3f2fd;
  border: 1px solid #90caf9;
  color: #1565c0;
}

.alert-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}

.alert-warning {
  background: #fff8e1;
  border: 1px solid #ffe082;
  color: #f57f17;
}

/* ===== CLIENT SHOWCASE (IDC) ===== */
.clients-section {
  background: var(--white);
  border-top: 1px solid #ccc;
  padding: 30px 0;
}

.clients-section-header {
  text-align: center;
  margin-bottom: 25px;
}

.clients-section-header h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
}

.clients-section-header p {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.client-card {
  display: flex;
  flex-direction: column;
  background: var(--grey-light);
  border: 1px solid #ccc;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

.client-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text);
}

.client-card-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
}

.client-card-body {
  padding: 12px 15px;
  flex: 1;
}

.client-card-body h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--dark);
}

.client-card-industry {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--dark);
  padding: 2px 8px;
  margin-bottom: 6px;
}

.client-card-city {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.client-card-city i { margin-right: 4px; }

.client-card-body p {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.client-card-meta {
  display: flex;
  justify-content: space-between;
  padding: 8px 15px;
  background: var(--dark);
  color: #aaa;
  font-size: 10px;
}

.client-card-meta i { color: var(--yellow); margin-right: 4px; }

.clients-pagination {
  margin: 0 0 30px;
  padding: 18px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.clients-pagination-info {
  font-size: 12px;
  color: var(--text-light);
  margin: 0 0 12px;
}

.clients-pagination-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.clients-pagination-list a,
.clients-pagination-list .clients-page-current {
  display: inline-block;
  min-width: 36px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #ccc;
  background: var(--white);
  color: var(--dark);
}

.clients-pagination-list a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
  text-decoration: none;
}

.clients-pagination-list .clients-page-current {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--yellow);
}

.clients-pagination-list .clients-page-ellipsis {
  padding: 8px 4px;
  color: var(--text-light);
  font-size: 12px;
}

.clients-pagination-list .clients-page-prev,
.clients-pagination-list .clients-page-next {
  min-width: auto;
}

.clients-section-footer {
  text-align: center;
  margin-top: 20px;
}

.clients-footer-bar {
  background: var(--dark);
  padding: 20px 0;
  border-top: 3px solid var(--yellow);
}

.clients-footer-bar h3 {
  text-align: center;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.clients-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #ccc;
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s;
  min-width: 90px;
}

.client-logo-item:hover {
  color: var(--yellow);
  text-decoration: none;
}

.client-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  border: 2px solid #555;
  transition: border-color 0.2s;
}

.client-logo-item:hover .client-logo-icon {
  border-color: var(--yellow);
}

/* Jasa Website highlight box */
.web-service-box {
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 100%);
  border: 2px solid var(--yellow-dark);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.web-service-box i {
  font-size: 48px;
  color: var(--dark);
}

.web-service-box h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
  border: none;
  padding: 0;
}

.web-service-box p {
  font-size: 12px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img { height: 44px; max-width: 180px; }
  .header-inner { flex-direction: column; gap: 10px; }
  .nav-links { flex-wrap: wrap; }
  .nav-links li a { padding: 10px 14px; font-size: 11px; }
  .hero-inner { flex-direction: column; }
  .hero-right { min-height: 200px; }
  .content-layout { flex-direction: column; }
  .content-sidebar { width: 100%; }
  .server-row { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reseller-body { flex-direction: column; }
  .reseller-features { grid-template-columns: 1fr; }
  .product-icons .container { flex-wrap: wrap; }
  .product-icon-item { flex: 0 0 50%; }
  .clients-grid { grid-template-columns: 1fr; }
  .web-service-box { flex-direction: column; text-align: center; }
}
