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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: #f8fafc;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  font-weight: 700;
}

nav a {
  margin-left: 1rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* Hero */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #4e6c9b, #7e9cc8);
  color: #ffffff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 700px;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: 1px solid #0f172a;
}

.btn.primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* Grid / Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

/* Contact */
.contact {
  text-align: center;
}

.contact-box {
  margin: 1.5rem 0;
}

/* Footer */
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive Nav */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: none;
    flex-direction: column;
    padding: 1rem;
  }

  nav a {
    margin: 0.5rem 0;
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* =========================
   GLOBAL MOBILE RULES
   ========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .header-inner {
    padding: 16px 20px;
  }

  nav {
    display: none;
  }

  .section {
    padding: 60px 20px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  iframe {
    width: 100%;
    height: 260px;
  }

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

.logo img {
  height: 108px;
  width: auto;
}

.brand-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white; /* or dark based on header */
}
.header--scrolled .brand-name {
  color: #0f172a;
}
/* =====================================
   JUJUBII UNIVERSAL CONTACT MODULE
   ===================================== */

#contact.contact-section{
  background: linear-gradient(135deg,#262e58 0%,#2e3c6e 35%,#2b4f89 65%,#1e4068 100%);
  padding: 60px 16px 70px;
  text-align:center;
  color:white;
}

/* heading */
#contact .contact-title{
  font-size:24px;
  font-weight:600;
  margin-bottom:6px;
}

#contact .contact-sub{
  font-size:14px;
  color:#dbe6ff;
  margin-bottom:26px;
}

/* center column */
#contact .contact-form{
  width:100%;
  max-width:420px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
}

/* inputs */
#contact .contact-form input,
#contact .contact-form textarea{
  width:100%;
  padding:9px 4px;
  margin-bottom:16px;
  font-size:14px;
  border:none;
  border-bottom:1px solid rgba(255,255,255,.7);
  background:transparent;
  color:white;
}

/* placeholder */
#contact .contact-form input::placeholder,
#contact .contact-form textarea::placeholder{
  color:#e6edff;
}

/* focus */
#contact .contact-form input:focus,
#contact .contact-form textarea:focus{
  outline:none;
  border-bottom:1px solid #a5c4ff;
}

/* textarea */
#contact .contact-form textarea{
  min-height:70px;
  resize:vertical;
}

/* button */
#contact .contact-form button{
  align-self:center;
  padding:10px 24px;
  border-radius:6px;
  border:none;
  background:#0f1d3a;
  color:white;
  cursor:pointer;
  transition:.25s;
}

#contact .contact-form button:hover{
  background:#08142b;
}

/* success message */
#contact #form-status{
  margin-top:12px;
  font-size:13px;
  color:#9effc9;
}
/* ===== CONTACT FONT IMPROVEMENT ===== */

#contact{
  font-family: 'Inter', sans-serif;
}

/* heading */
#contact .contact-title{
  font-weight:600;
  letter-spacing:-0.02em;
}

/* subtitle */
#contact .contact-sub{
  font-weight:400;
  font-size:14px;
  letter-spacing:0.01em;
}

/* inputs */
#contact input,
#contact textarea{
  font-family:'Inter', sans-serif;
  font-size:14px;
}

/* button */
#contact button{
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing:0.02em;
}
