:root {
  --orange: #FF9F45;
  --blue: #6ECFF6;
  --green: #7BC67E;
  --sand: #F4E3C1;
  --gray: #A8A8A8;
  --dark: #2E2E2E;
  --light: #FFFFFF;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: #fafafa;
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

header {
  background: var(--light);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: 700;
  font-size: 0.85rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-logo-text span:last-child {
  font-size: 0.75rem;
  color: var(--gray);
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--dark);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--orange);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  background: var(--orange);
  color: var(--light);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-toggle {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.8rem;
}

.lang-toggle button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.lang-toggle button.active {
  background: var(--sand);
  color: var(--dark);
}

/* Responsive nav */

@media (max-width: 780px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }
}

/* Hero section */

.hero {
  background: linear-gradient(135deg, var(--blue), var(--sand));
  padding: 3.5rem 1rem 3rem 1rem;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.85);
  color: var(--dark);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.btn-primary {
  padding: 0.65rem 1.2rem;
  background: var(--orange);
  color: var(--light);
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-secondary {
  padding: 0.6rem 1.15rem;
  background: rgba(255,255,255,0.9);
  color: var(--dark);
  border-radius: 999px;
  border: 1px solid #ddd;
  font-size: 0.85rem;
  cursor: pointer;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.1rem;
  font-size: 0.8rem;
}

.hero-meta-item span:first-child {
  font-weight: 700;
}

.hero-image-placeholder {
  border-radius: 1.25rem;
  padding: 0.75rem;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.7);
}

.hero-image-box {
  border-radius: 0.9rem;
  overflow: hidden;
  position: relative;
}

.hero-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.65);
  color: var(--light);
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

/* Sections */

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.section-title {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.3rem;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--light);
  border-radius: 0.9rem;
  padding: 1.1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card .price {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.card .meta {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.4rem;
}

.card ul {
  list-style: none;
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 0.7rem;
}

.card ul li::before {
  content: "• ";
  color: var(--orange);
}

.card .card-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
}

/* Features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-item {
  background: var(--light);
  padding: 0.9rem;
  border-radius: 0.9rem;
  font-size: 0.85rem;
  box-shadow: 0 5px 16px rgba(0,0,0,0.04);
}

.feature-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */

.testimonial {
  background: var(--light);
  border-left: 4px solid var(--orange);
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

/* Contact / forms */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.4rem;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  font-family: var(--font-main);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-caption {
  padding: 0.5rem 0.75rem 0.8rem 0.75rem;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog */

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--light);
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  font-size: 0.9rem;
}

.blog-card h3 {
  margin-bottom: 0.4rem;
}

.blog-card .meta {
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 0.4rem;
}

@media (max-width: 700px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

/* Table (price list) */

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.price-table th,
.price-table td {
  border: 1px solid #e3e3e3;
  padding: 0.5rem 0.6rem;
}

.price-table th {
  background: #f5f5f5;
}

/* Footer */

footer {
  background: #111;
  color: #eee;
  padding: 1.8rem 1rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-col a {
  display: block;
  color: #ccc;
  margin-bottom: 0.25rem;
}

.footer-bottom {
  max-width: 1080px;
  margin: 1rem auto 0;
  font-size: 0.75rem;
  color: #777;
  text-align: center;
}

/* WhatsApp floating button */

.whatsapp-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 200;
}

.whatsapp-fab span {
  color: white;
  font-size: 1.4rem;
}

/* Language visibility */

.lang-en {
  display: block;
}

.lang-id {
  display: none;
}

body.lang-id-active .lang-en {
  display: none;
}

body.lang-id-active .lang-id {
  display: block;
}