/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Brand (logo + text) */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive logo */
.brand-logo {
  height: 40px;
  width: auto;
  max-width: 100%;
}

/* Make brand behave like a normal navbar link */
.brand-link {
  color: white;
  text-decoration: none;
}

.brand-link:hover {
  opacity: 0.9;
}

/* Brand text */
.brand-text {
  font-size: 1.3rem;
  font-weight: bold;
  white-space: nowrap;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #2c3e50;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 1000;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Section Height Logic */
section, footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Aligns content to top */
}

/* Home remains full height */
.full-height {
  min-height: 100vh;
}

/* Services, How We Work, and Footer follow content height */
.auto-height, footer {
  min-height: auto;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1100px;
  padding-top: 70px; /* Offset for fixed navbar */
  padding-bottom: 100px;
  font-size: 1.3rem;
}

.section-home .container {
  padding-top: 80px; /* Offset for fixed navbar */
}

/* Background Colors */
.section-home { background-color: #ffffff; }     /* White */
.section-services { background-color: #fffde7; } /* Yellow */
.section-how { background-color: #e8f5e9; }      /* Green */
.footer-contact { background-color: #e3f2fd; }   /* Blue */

/* Typography and Content Styling */
h1 { font-size: 2.2rem; color: #2c3e50; margin-bottom: 20px; }
h2 { font-size: 2rem; border-bottom: 2px solid #333; display: inline-block; margin-bottom: 20px; }

.hero-subtext { margin-bottom: 18px; }

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 30px;
}

.intro-box {
  background: rgba(255,255,255,0.4);
  padding: 20px;
  border-left: 5px solid #2c3e50;
  margin-bottom: 30px;
}

.grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.list-box, .service-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.step {
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.step-num {
  background: #2c3e50;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer-note {
  font-weight: bold;
  font-style: italic;
  margin-top: 10px;
}

/* ===== Bilingual language helpers ===== */
.lang { display: none; }
body.lang-is-en .lang-en { display: inline; }
body.lang-is-id .lang-id { display: inline; }

/* Footer flex layout (contact + language toggle) */
.footer-flex {
  display: flex;
  justify-content: space-between; /* requested: space-between */
  align-items: flex-end;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-btn {
  border: 2px solid #2c3e50;
  background: transparent;
  color: #2c3e50;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: #2c3e50;
  color: white;
}

/* Mobile Responsive medium*/
@media (max-width: 768px) {
/* Brand sizing on tablets/phones */
.brand-logo {
  height: 32px;
}

.brand-text {
  font-size: 1.1rem;
}

  .navbar {
    flex-direction: column;
    padding: 10px;
  }

  .navbar ul {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .container {
    padding-top: 100px;
	font-size: 1.1rem;
  }

  .section-home .container {
    padding-top: 100px; /* Adjust this value to your liking */
  }

  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  
/* Typography and Content Styling */
h1 { font-size: 1.3rem; color: #2c3e50; margin-bottom: 20px; }
h2 { font-size: 1.2rem; border-bottom: 2px solid #333; display: inline-block; margin-bottom: 20px; }
}

/* Mobile Responsive small*/
@media (max-width: 399px) {
/* Brand sizing on very small phones */
.brand-logo {
	height: 26px;
}

.brand-text {
	font-size: 1rem;
}

	.navbar {
		line-height: 1.2;
	}
	
	.navbar ul li {
		margin-left: 10px;
	}
h1 { font-size: 1.2rem; color: #2c3e50; margin-bottom: 20px; }
h2 { font-size: 1.1rem; border-bottom: 2px solid #333; display: inline-block; margin-bottom: 20px; }
}
	
	
