/* ══════════════════════════════════════════════════════════
   components.css
   buttons · cards · form elements · badges · tags
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--ivory);
  padding: 15px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  transition: all var(--tr);
}

.btn-primary:hover {
  background: var(--navy2);
  border-color: var(--navy2);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(78, 58, 46, 0.18);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 14px 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: all var(--tr);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Review cards — 3-section layout ── */
.review-card {
  min-width: 536px;
  max-width: 536px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(249, 246, 240, 0.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* Row 1: photo + identity */
.review-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
}

.review-avatar {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.review-avatar img.review-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-avatar .review-monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(242, 239, 234, 0.25);
  background: transparent;
  width: auto;
  height: auto;
}

.review-identity {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
}

.review-role {
  font-size: 0.72rem;
  color: rgba(249, 246, 240, 0.45);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 6px;
}

.review-stars span {
  color: var(--gold-pale);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

/* Divider */
.review-card-divider {
  height: 1px;
  background: rgba(249, 246, 240, 0.08);
  margin: 0 28px;
}

/* Row 2: quote */
.review-quote-wrap {
  padding: 20px 28px 28px;
  flex: 1;
}

.review-quote {
  font-family: "Graphik", sans-serif;
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(242, 239, 234, 0.85);
  font-style: italic;
}

.review-quote::before {
  content: "\201C";
  color: var(--gold-pale);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 2px;
}

/* Nav */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(249, 246, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr);
}

.carousel-btn:hover {
  border-color: var(--gold-pale);
  background: rgba(184, 150, 90, 0.1);
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
  stroke: rgba(249, 246, 240, 0.7);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 20px;
  height: 2px;
  background: rgba(249, 246, 240, 0.2);
  cursor: pointer;
  transition: all var(--tr);
}

.carousel-dot.active {
  background: var(--gold-pale);
  width: 40px;
}

/* ══════════════════════════════
   FORM ELEMENTS
══════════════════════════════ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--tr);
  outline: none;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
  border-color: var(--border);
  border-bottom-color: var(--gold);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--navy);
  color: var(--ivory);
  padding: 16px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--navy);
  transition: all var(--tr);
  margin-top: 4px;
}

.form-submit:hover {
  background: transparent;
  color: var(--navy);
}

.form-note {
  font-size: 0.73rem;
  color: var(--muted);
}

/* ── Contact right-column blocks ── */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cblock-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.book-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: var(--ivory);
  padding: 20px 28px;
  border: 1px solid var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--tr);
  width: 100%;
}

.book-btn:hover {
  background: transparent;
  color: var(--navy);
}

.book-btn svg {
  stroke: var(--gold-pale);
  flex-shrink: 0;
}

.book-btn-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 8px;
}

.msg-row {
  display: flex;
  gap: 12px;
}

.msg-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--tr);
}

.msg-btn.wa {
  color: #128C7E;
}

.msg-btn.wa:hover {
  background: #128C7E;
  color: #fff;
  border-color: #128C7E;
}

.msg-btn.tg {
  color: #0088cc;
}

.msg-btn.tg:hover {
  background: #0088cc;
  color: #fff;
  border-color: #0088cc;
}

.msg-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cblock-divider {
  height: 1px;
  background: var(--border);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cinfo-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.87rem;
}

.cinfo-icon {
  width: 32px;
  height: 32px;
  background: var(--ivory);
  border: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cinfo-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}

.cinfo-row a {
  transition: color var(--tr);
}

.cinfo-row a:hover {
  color: var(--gold);
}

.cinfo-row span {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ══════════════════════════════
   FLOATING BUTTONS
══════════════════════════════ */
.float-btns {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(28, 35, 51, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(28, 35, 51, 0.28);
}

.float-btn svg {
  width: 22px;
  height: 22px;
}

.float-tg {
  background: #0088cc;
}

.float-wa {
  background: #25D366;
}
