* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #050b1a;
  color: #e5e7eb;
}

header {
  background: #020617;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: #3b82f6;
}

header h1 span {
  color: #e5e7eb;
}

nav a {
  margin-left: 20px;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #3b82f6;
}

.hero {
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #020617, #050b1a);
}

.hero h2 {
  font-size: 2.7rem;
  color: #3b82f6;
}

.hero p {
  margin-top: 10px;
  font-size: 1rem;
}

.section {
  padding: 70px 40px;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #3b82f6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.card, .product {
  background: #020617;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover, .product:hover {
  transform: translateY(-6px);
}

.product h3 {
  color: #3b82f6;
}

.product a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #3b82f6;
  color: #020617;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.product a:hover {
  background: #60a5fa;
}

footer {
  text-align: center;
  padding: 25px;
  background: #020617;
  font-size: 0.9rem;
}

<div class="contact">
  <a href="https://wa.me/6282177534324?text=Halo%20saya%20ingin%20konsultasi"
     target="_blank" class="btn wa">
    <i class="fab fa-whatsapp"></i> WhatsApp
  </a>

  <a href="mailto:razergaming542@gmail.com" class="btn email">
    <i class="fas fa-envelope"></i> Email
  </a>

  <a href="https://instagram.com/zer_arsitek"
     target="_blank" class="btn ig">
    <i class="fab fa-instagram"></i> Instagram
  </a>
</div>
}

.card h3,
.product h3 {
  color: #f9fafb; /* putih terang */
}

.card p,
.product p {
  color: #d1d5db; /* abu terang, enak dibaca */
}

.contact {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  color: #ffffff; /* PUTIH TERANG */
}

.btn i {
  font-size: 18px;
}

.price {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ===== SERVICE & PRODUCT TEXT ===== */
.service h3,
.product h3 {
  color: #f9fafb;
  margin-bottom: 8px;
}

.service p {
  color: #d1d5db;
  font-size: 0.95rem;
}

/* ===== PRICE ===== */
.price {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.05rem;
}

/* ===== CONTACT ===== */
.contact {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* BRAND COLORS */
.wa {
  background: #25D366;
}

.email {
  background: #0d6efd;
}

.ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.desc {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 42px;
  height: auto;
}

32 × 32 px  (paling ideal)

.about {
  background: #020617;
}

.about-wrapper {
  max-width: 900px;
  margin: auto;
}

.about-text h3 {
  color: #3b82f6;
  margin-bottom: 15px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e5e7eb;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  text-decoration: none;
  color: inherit;
}

.portfolio img {
  width: 100%;
  height: 180px;              /* KUNCI biar gak kebesaran */
  object-fit: cover;          /* Potong rapi */
  border-radius: 10px;
  margin-bottom: 12px;
}

.portfolio h3 {
  color: #e5e7eb;
  font-size: 1.05rem;
}

/* Hover efek */
.portfolio:hover img {
  transform: scale(1.05);
}

.portfolio img {
  transition: transform 0.3s ease;
}

/* ===== MODAL IMAGE ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(2,6,23,0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}

background-image: url("img/hero.jpg");

