/* ===== Clean Static Site Styles ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.7;
  background: #f8f9fa;
  font-size: 16px;
}
img { max-width: 100%; height: auto; }
a { color: #25d366; text-decoration: none; transition: color 0.2s; }
a:hover { color: #20bf5b; text-decoration: underline; }

/* Navigation links override — dark gray default, green on hover */
header nav a {
  color: #333 !important;
  text-decoration: none !important;
}
header nav a:hover {
  color: #25d366 !important;
  text-decoration: none !important;
}
header nav a[style*="background"]:hover {
  color: #fff !important;
}
ul, ol { list-style: none; }

/* ===== Header & Navigation ===== */
header {
  background: #fff !important;
  border-bottom: 2px solid #25d366 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
header nav {
  gap: 14px !important;
  flex-wrap: nowrap !important;
}
header nav a {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== Main Content ===== */
main {
  background: #fff;
  min-height: 60vh;
  padding: 40px 20px !important;
}

/* ===== Typography ===== */
h1 { font-size: 32px; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; line-height: 1.3; }
h2 { font-size: 26px; font-weight: 600; color: #1a1a2e; margin-bottom: 16px; margin-top: 30px; }
h3 { font-size: 20px; font-weight: 600; color: #333; margin-bottom: 12px; margin-top: 24px; }
p { margin-bottom: 16px; color: #555; }
strong, b { color: #333; font-weight: 600; }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  background: #25d366;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin: 8px 8px 8px 0;
}
.btn-primary:hover {
  background: #20bf5b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.btn-secondary {
  display: inline-block;
  background: #1a1a2e;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin: 8px 8px 8px 0;
}
.btn-secondary:hover {
  background: #2d2d4e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,26,46,0.3);
}

/* ===== Content Sections ===== */
main > div[style*="margin-bottom:40px"] {
  margin-bottom: 40px !important;
}

/* ===== Image Containers ===== */
.elementor-image img, .elementor-image-box img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ===== Lists ===== */
.entry-content ul li, .entry-content ol li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  color: #555;
}
.entry-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: bold;
}

/* ===== Breadcrumbs ===== */
.breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.breadcrumb a { color: #25d366; }

/* ===== Footer ===== */
footer {
  clear: both !important;
  display: block !important;
  width: 100% !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  header > div { flex-direction: column; gap: 12px !important; text-align: center; }
  nav { justify-content: center; gap: 16px !important; }
  main { padding: 24px 16px !important; }
  .btn-primary, .btn-secondary { padding: 10px 20px; font-size: 14px; }
}

/* Force English validation messages site-wide */
input:required:invalid,
textarea:required:invalid {
  /* No visual change, JS handles it */
}

/* ===== Float Contact Stack ===== */
#fc-stack{
  position:fixed;
  right:14px;
  bottom:15px;
  z-index:99999999;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.fc-item{
  width:52px;
  height:52px;
  background:#25d366;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
  transition:all 0.3s ease;
  position:relative;
  overflow:visible;
  cursor:pointer;
}
.fc-item:hover{
  transform:scale(1.08);
  box-shadow:0 6px 20px rgba(0,0,0,0.22);
  background:#20bf5b;
}
.fc-top{
  background:#1a1a2e;
  opacity:0.6;
  margin-top:8px;
}
.fc-top:hover{
  opacity:1;
  background:#2d2d4e;
}
.fc-label{
  position:absolute;
  right:62px;
  top:50%;
  transform:translateY(-50%);
  background:#333;
  color:#fff;
  font-size:13px;
  font-weight:600;
  padding:6px 14px;
  border-radius:6px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.25s ease, right 0.25s ease;
  right:56px;
}
.fc-item:hover .fc-label{
  opacity:1;
  right:60px;
}
.fc-label::after{
  content:'';
  position:absolute;
  right:-6px;
  top:50%;
  transform:translateY(-50%);
  border-left:6px solid #333;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
}
.fc-item:nth-child(2) .fc-label{ width:auto; }

@media(max-width:480px){
  #fc-stack{ right:8px; bottom:8px; }
  .fc-item{ width:46px; height:46px; }
  .fc-label{ display:none; }
  #float-form-panel{ right:8px; left:8px; width:auto; bottom:180px; }
}

/* ===== Float Form Panel ===== */
#float-form-panel{
  position:fixed;
  right:14px;
  bottom:144px;
  z-index:999999999;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 40px rgba(0,0,0,0.18);
  width:320px;
  padding:0;
  display:none;
  font-family:inherit;
  overflow:hidden;
}
#float-form-panel.show{
  display:block;
  animation:ffFadeIn 0.3s ease;
}
@keyframes ffFadeIn{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}
.ff-header{
  background:#25d366;
  color:#fff;
  padding:12px 18px;
  font-size:15px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
#ff-close{
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  padding:0 4px;
  line-height:1;
  opacity:0.85;
}
#ff-close:hover{opacity:1}
#float-form{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
#float-form input,
#float-form textarea{
  width:100%;
  padding:9px 12px;
  border:1px solid #d0d0d0;
  border-radius:6px;
  font-size:14px;
  font-family:inherit;
  box-sizing:border-box;
  transition:border-color 0.2s;
}
#float-form input:focus,
#float-form textarea:focus{
  border-color:#25d366;
  outline:none;
}
#float-form textarea{resize:vertical;min-height:50px}
#ff-submit{
  background:#25d366;
  color:#fff;
  border:none;
  padding:11px;
  border-radius:6px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:background 0.2s;
  font-family:inherit;
}
#ff-submit:hover{background:#20bf5b}
#ff-submit:disabled{background:#aaa;cursor:not-allowed}
#ff-msg{margin:0;font-size:13px;min-height:16px}
