/* components.css */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}
.badge-pill { border-radius: 60px; }
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,113,74,.2);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,113,74,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-primary { background: #229ED9; color: white; box-shadow: 0 4px 16px rgba(34,158,217,.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,158,217,.35); }
.btn-secondary { background: #5B5EA6; color: white; box-shadow: 0 4px 16px rgba(91,94,166,.2); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,94,166,.35); }

/* Tags & Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-teal { background: rgba(170,195,238,0.15); color: var(--teal); }
.badge-trans { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,0.05); font-weight: 600; text-transform: none; letter-spacing: normal; }

/* Cards */
.prob-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.5px solid rgba(0,0,0,0.05);
  cursor: default;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.prob-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.08);
}
.prob-card .icon-rect { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.prob-card .icon-rect svg { width: 22px; height: 22px; }
.prob-card .card-title { font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--navy); margin-top: 4px; }
.prob-card .card-line { width: 24px; height: 2px; border-radius: 2px; margin-top: 4px; }

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 260px;
  gap: 0;
  margin-bottom: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(196,113,74,.22); }
.service-card > div:first-child { padding: 36px 32px; }
.service-card > div:nth-child(2) { padding: 36px 28px; border-left: 1px solid rgba(0,0,0,.06); display: flex; flex-direction: column; justify-content: center; }
.service-card > div:last-child { position: relative; min-height: 300px; overflow: hidden; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 16px;}
.service-list li { display: flex; align-items: flex-start; gap: 16px; color: var(--body); font-size: 16px; }
.service-list li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }

.price-card { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: 0 8px 32px rgba(0,0,0,.04); border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column; gap: 20px; transition: transform 0.25s ease; position: relative;}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.price-card-primary { background: var(--navy); color: var(--white); box-shadow: 0 16px 48px rgba(28,43,74,.15); border: none; }

.review-card {
  background: white; border-radius: 24px; box-shadow: 0 8px 32px rgba(0,0,0,.04); padding: 40px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; border: 1px solid rgba(0,0,0,0.02);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.review-stars { color: var(--accent); font-size: 22px; letter-spacing: 2px;}
.review-quote-mark { color: var(--teal); opacity: 0.2; font-size: 80px; position: absolute; top: 20px; right: 32px; font-family: var(--serif); line-height: 1; }
.review-text { font-style: italic; color: var(--body); font-size: 16px; line-height: 1.6; position: relative; z-index: 1;}
.review-author { font-weight: 700; color: var(--navy); font-size: 16px;}
.review-tag { font-size: 14px; color: var(--grey-text); }

/* Forms */
input, textarea { width: 100%; padding: 20px; border-radius: 16px; border: 1.5px solid var(--grey-mid); background: var(--white); font-family: inherit; font-size: 16px; transition: border-color 0.2s ease, box-shadow 0.2s ease; margin-bottom: 20px; }
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(196,113,74,0.1); outline: none; }
button:disabled { opacity: 0.6; cursor: not-allowed; }

/* Modal */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(28,43,74,.85); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-content { background: var(--white); border-radius: 24px; padding: 48px; max-width: 540px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,0.2); }
.modal-close { position: absolute; top: 24px; right: 24px; background: rgba(0,0,0,0.05); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; font-size: 20px; color: var(--navy); cursor: pointer; transition: background 0.2s; }
.modal-close:hover { background: rgba(0,0,0,0.1); }

/* Floating Elements */
.floating-btns { position: fixed; right: 32px; bottom: 32px; z-index: 900; display: flex; flex-direction: column; gap: 16px; opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity 0.3s ease, transform 0.3s ease; }
.floating-btns.visible { opacity: 1; pointer-events: auto; transform: none; }
.btn-float { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items:center; justify-content:center; box-shadow: 0 8px 24px rgba(0,0,0,.15); color:white; transition: transform 0.25s, box-shadow 0.25s;}
.btn-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.btn-float-tg { background: #229ED9; }
.btn-float-max { background: #5B5EA6; }
.btn-float-tel { background: var(--navy); }

.mob-sticky { display: none; }
