/* ===== CONTACT STYLES ===== */
  
.intro {
  background-color: #2C3E50;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 10px 10px;  
  padding: 40px 20px 10px 20px;
  position: relative;
}

.intro-header-content {
  height: auto;
}

.intro-phone {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.intro-phone a {
  color: #ffd600;
  text-decoration: none;
}

.intro-phone a:hover {
  color: #f5d742;
  opacity: 0.85;
}

/* Logo */
.intro-logo {
  max-width: 220px;
  margin-top: 0px;
  margin-bottom: 15px;
}

/* Header text */
.intro-header-content h1 {
  font-size: clamp(20px, 2.8vw, 30px);  
  max-width: 1000px;
  margin: 0 auto 12px;
  margin-top: 20px;
  padding: 5px;
}

/* ===== Header hamburger menu ===== */
.intro {
  position: relative;
}

.menu-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 2.5px 0;
  border-radius: 2px;
}

.menu {
  position: absolute;
  top: 65px;
  right: 20px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: none;
  z-index: 9999;
}

.menu a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #2C3E50;
  font-weight: 600;
  border-radius: 8px;
}

.menu a:hover {
  background: rgba(69, 81, 196, 0.10);
}

.menu.open { display:block; }


/* ===== FORM ===== */  
    :root{
      --max: 980px;
      --pad: 18px;
      --radius: 14px;
      --border: #e6e6e6;
      --text: #111;
      --muted: #666;
      --bg: #fafafa;
      --card: #fff;
      --shadow: 0 10px 24px rgba(0,0,0,.08);
      --orange: #f28c28;
      --orange-dark: #d97512;
    }

    * { box-sizing: border-box; }
    body{
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
    }

    .page{
      max-width: var(--max);
      margin: 0 auto;
      padding: 42px var(--pad) 20px;
    }

    .card{
      margin: 24px auto 0;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
	  width: 80%;
    }

    form{
      display: grid;
      gap: 18px;
    }

    .section-title{
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .02em;
      text-transform: uppercase;
      color: #333;
      margin-top: 6px;
    }

    .grid-2{
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-3{
      display: grid;
      gap: 14px;
      grid-template-columns: 2fr 1fr 1fr;
    }
    @media (max-width: 820px){
      .grid-3{ grid-template-columns: 1fr; }
    }
    @media (max-width: 640px){
      .grid-2{ grid-template-columns: 1fr; }
      .card{ padding: 16px; }
    }

    label{
      display: block;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .req::after{
      content: " *";
      color: #d10;
      font-weight: 700;
    }

    input, select, textarea{
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 11px 12px;
      font-size: 15px;
      background: #fff;
      outline: none;
    }
    textarea{
      min-height: 120px;
      resize: vertical;
      line-height: 1.35;
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(242,140,40,.8);
      box-shadow: 0 0 0 3px rgba(242,140,40,.18);
    }
    .hint{
      font-size: 12.5px;
      color: var(--muted);
      margin-top: 6px;
      line-height: 1.35;
    }

    .pill-row{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .pill{
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 9px 12px;
      display: inline-flex;
      gap: 8px;
      align-items: center;
      cursor: pointer;
      user-select: none;
      background: #fff;
    }
    .pill input{ width: auto; }
    .pill strong{ font-size: 14px; }

    details{
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 12px 4px;
      background: #fff;
    }
    summary{
      cursor: pointer;
      font-weight: 700;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 4px 2px 10px;
    }
    summary::-webkit-details-marker{ display: none; }
    .chev{
      display: inline-block;
      width: 10px; height: 10px;
      border-right: 2px solid #555;
      border-bottom: 2px solid #555;
      transform: rotate(45deg);
      transition: transform .2s ease;
      margin-left: 8px;
    }
    details[open] .chev{ transform: rotate(225deg); }

    .row{
      display: grid;
      gap: 14px;
    }

    .actions{
      display: flex;
      gap: 12px;
      justify-content: center;
      align-items: center;
      padding-top: 8px;
    }

    .btn{
      border: none;
      border-radius: 10px;
      padding: 12px 18px;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 160px;
    }
    .btn-primary{
      background: var(--orange);
      color: #fff;
    }
    .btn-primary:hover{ background: var(--orange-dark); }
    .btn-ghost{
      background: #fff;
      border: 1px solid var(--border);
      color: #222;
      min-width: 120px;
    }
    .btn-ghost:hover{ border-color: #ccc; }

    .error{
      display: none;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(209,0,0,.25);
      background: rgba(209,0,0,.06);
      color: #7a0000;
      font-size: 14px;
      line-height: 1.35;
    }
    .success{
      display: none;
      padding: 12px;
      border-radius: 10px;
      border: 1px solid rgba(0,150,80,.25);
      background: rgba(0,150,80,.07);
      color: #0b5b33;
      font-size: 14px;
      line-height: 1.35;
    }

    .inline{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap: wrap;
    }

    /* hidden blocks toggled by JS */
    .hidden{ display:none !important; }

    /* small footer text */
    .privacy{
      text-align:center;
      color: var(--muted);
      font-size: 12.5px;
      margin-top: 10px;
    }
	
	/* ===== Upload box (Contact form) ===== */
.upload-box {
  border: 2px dashed #2C3E50;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
}

.upload-box-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.upload-box-title{
  font-weight: 800;
  margin: 0;
}

.upload-types{
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.35;
}

.upload-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.upload-mini-btn{
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  background: var(--orange);
  color: #fff;
}

.upload-mini-btn:hover{ background: var(--orange-dark); }

.file-chip-list{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:grid;
  gap:8px;
}

.file-chip{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  word-break: break-word;
}

.file-remove{
  border: none;
  background: #FF6600;
  color: #fff;
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 800;
}

.file-remove:hover{ opacity: .9; }
	
	
/* ---------- Footer ---------- */
footer {
  background-color: #2C3E50;
  color: #fff;
  font-size: 16pt;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

@media (max-width: 640px) {
  footer a[href^="tel"] {
    color: #ffd600 !important;  /* orange */
  }
}