/* ===========================
   GLOBAL / BASE
   =========================== */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #23333A;
  background: #FFFFFF;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #23333A;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* ===========================
   HEADER
   =========================== */

.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E6ECEF;
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 42px;
}

.nav {
  display: flex;
  gap: 1.8rem;
}

.nav a {
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity .15s;
}

.nav a:hover {
  opacity: 1;
}


/* ===========================
   HERO
   =========================== */

.hero {
  background: linear-gradient(
    135deg,
    #0F766E 0%,
    #139E97 50%,
    #14B8A6 100%
  );
  padding: 5rem 0 6rem;
  color: #FFFFFF;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.hero p {
  font-size: 1.05rem;
  max-width: 650px;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.15s ease;
}

.btn-primary {
  background: #FFFFFF;
  color: #0F766E;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.btn-secondary {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}


/* ===========================
   SECTIONS
   =========================== */

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #F5F7F8;
}

.section h2 {
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
}

.section p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #54636B;
}


/* ===========================
   GRID
   =========================== */

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}

@media (max-width: 900px) {
  .grid-two {
    grid-template-columns: 1fr;
  }
}


/* ===========================
   CARDS
   =========================== */

.card {
  background: #FFFFFF;
  border-radius: 0.9rem;
  padding: 1.6rem;
  border: 1px solid #E3EAEE;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.card p {
  font-size: 0.95rem;
  color: #5E6C75;
}


/* ===============================
   CONTACT FORM (minimal edit)
   =============================== */

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #23333A;
}

/* ▼▼▼ MINIMAL CHANGE #1 — added select ▼▼▼ */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border: 1px solid #c5cfd6;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-family: inherit;
}
/* ▲▲▲ END CHANGE #1 */

.contact-form textarea {
  resize: vertical;
}

/* ▼▼▼ MINIMAL CHANGE #2 — added select ▼▼▼ */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #1E848F;
  box-shadow: 0 0 0 2px rgba(30, 132, 143, 0.2);
  outline: none;
}
/* ▲▲▲ END CHANGE #2 */

.form-note {
  font-size: 0.85rem;
  color: #6F7A83;
  margin-top: 0.5rem;
}

.logo-collage {
  max-width: 70%;
  height: auto;
  margin: 20px auto;
  display: block;
  opacity: 0.95;
}

#contact-status {
  margin-top: 0.5rem;
  color: #0b8457; /* success green */
  font-size: 0.9rem;
}

/* Toast notification */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: #0f766e; /* teal-ish, matches “professional success” tone */
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  max-width: 90vw;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
}

.toast-message {
  line-height: 1.3;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  padding: 2rem 0;
  text-align: center;
  background: #FFFFFF;
  color: #6F7A83;
  font-size: 0.9rem;
  border-top: 1px solid #E6ECEF;
}
