/* ==========================================================
   NIMAI — CLEAN WEBSITE CSS (WHITE THEME + INTER FONT)
   ========================================================== */

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ROOT VARIABLES */
:root {
  --nimai-font: 'Inter', sans-serif;
  --nimai-text: #111827;
  --nimai-heading: #020617;
  --nimai-bg: #ffffff;
  --nimai-accent: #111827;
  --nimai-gray: #6b7280;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--nimai-bg);
  color: var(--nimai-text);
  font-family: var(--nimai-font);
  line-height: 1.65;
}

/* GLOBAL ELEMENTS */
a {
  color: var(--nimai-text);
  text-decoration: none;
  transition: 0.2s ease;
  font-weight: 500;
}
a:hover { opacity: 0.7; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ==========================================================
   CONTAINERS
   ========================================================== */

.auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==========================================================
   HEADER (NAV LEFT, LOGO RIGHT)
   ========================================================== */

.nimai-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nimai-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  flex-direction: row-reverse; /* logo goes right */
}

.nimai-logo img {
  height: 34px;
  width: auto;
}

.nimai-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: auto; /* nav left */
}

.nimai-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--nimai-text);
}

.nimai-nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--nimai-text);
}

/* MOBILE MENU ICON (non-functional placeholder) */
.nimai-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 30px;
  height: 18px;
}
.nimai-nav-toggle span {
  height: 2px;
  background: #111827;
  margin-bottom: 4px;
  display: block;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */

.nimai-hero {
  background: #ffffff;
  padding: 80px 0;
}

.nimai-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.nimai-hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--nimai-gray);
  margin-bottom: 12px;
}

.nimai-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--nimai-heading);
  margin-bottom: 16px;
}

.nimai-hero p {
  color: #4b5563;
  font-size: 1rem;
  max-width: 550px;
  margin-bottom: 22px;
}

.nimai-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.nimai-btn-primary {
  background: var(--nimai-text);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.nimai-btn-secondary {
  background: transparent;
  border: 1px solid var(--nimai-text);
  color: var(--nimai-text);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.nimai-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: #6b7280;
}

.nimai-hero-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 16px;
}

/* ==========================================================
   GENERIC PAGE SECTIONS
   ========================================================== */

.nimai-section {
  padding: 70px 0;
  background: #ffffff;
}

.nimai-section-header {
  max-width: 740px;
  margin-bottom: 34px;
}

.nimai-section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7280;
  margin-bottom: 6px;
}

.nimai-section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #020617;
}

.nimai-section-subtitle {
  font-size: 1rem;
  color: #4b5563;
}

/* ==========================================================
   CARD GRID
   ========================================================== */

.nimai-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.nimai-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
}

.nimai-card-tag {
  background: #e2e8f0;
  color: #111827;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  margin-bottom: 10px;
  display: inline-block;
}

/* ==========================================================
   APPROACH STEPS
   ========================================================== */

.nimai-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.nimai-step {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 18px;
  border-radius: 16px;
}

.nimai-step-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #6b7280;
  margin-bottom: 8px;
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */

.nimai-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* ==========================================================
   CONTACT SECTION
   ========================================================== */

.nimai-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nimai-contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 16px;
}

.nimai-contact-card h3 {
  margin-bottom: 10px;
}

.nimai-contact-card ul li {
  margin-bottom: 8px;
}

.nimai-contact-form input,
.nimai-contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  color: #111827;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}

.nimai-contact-form button {
  width: 100%;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.nimai-footer {
  padding: 20px 0;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
}

/* ==========================================================
   RESPONSIVE 
   ========================================================== */

@media (max-width: 991px) {
  .nimai-hero-grid,
  .nimai-contact-grid {
    grid-template-columns: 1fr;
  }

  .nimai-nav { display: none; }
  .nimai-nav-toggle { display: block; }
}
