/* ==========================================================================
   Global Property Escape — Components
   Buttons, section content blocks, destination/how/why/testimonial/pricing
   cards, newsletter, feature blocks, contact/FAQ, toasts.
   ========================================================================== */

/* ==========================================================================
   1. Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  line-height: 1; transition: all var(--transition-fast); cursor: pointer;
  border: 2px solid transparent; text-decoration: none;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary { background: var(--gradient-primary); color: var(--white); }
.btn-primary:hover { color: var(--white); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-accent { background: var(--gradient-accent); color: var(--white); }
.btn-accent:hover { color: var(--white); box-shadow: var(--shadow-accent); transform: translateY(-2px); }
.btn-blue { background: var(--gradient-blue); color: var(--white); }
.btn-blue:hover { color: var(--white); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline { border-color: var(--secondary); color: var(--secondary); background: transparent; }
.btn-outline:hover { background: var(--secondary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--secondary); }
.btn-ghost:hover { background: var(--info-bg); }
.btn-outline--white { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline--white:hover { background: var(--white); color: var(--primary); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { color: var(--white); filter: brightness(0.95); }
.btn-inherit { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-inherit:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-icon { padding: 12px; width: 46px; height: 46px; justify-content: center; }

/* Secondary / utility variants */
.btn-secondary { background: var(--light-grey); border-color: var(--border); color: var(--primary); }
.btn-secondary:hover { background: var(--grey); color: var(--primary); transform: translateY(-2px); }
.btn-success { background: var(--success); color: var(--white); }
.btn-success:hover { color: var(--white); filter: brightness(0.95); }
.btn-soft { background: var(--info-bg); color: var(--secondary); }
.btn-soft:hover { background: rgba(22,119,255,0.16); color: var(--secondary-dark); }

/* ==========================================================================
   1b. Badges
   ========================================================================== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4;
  padding: 4px 12px; border-radius: var(--radius-full); white-space: nowrap;
}
.badge--primary { background: var(--info-bg); color: var(--secondary); }
.badge--success { background: var(--success-bg); color: var(--success); }
.badge--warning { background: var(--warning-bg); color: #b26a00; }
.badge--danger { background: var(--error-bg); color: var(--error); }
.badge--dark { background: var(--primary); color: var(--white); }

/* ==========================================================================
   1c. Alerts
   ========================================================================== */
.alert {
  display: flex; align-items: flex-start; gap: 12px;
  border-radius: var(--radius); padding: 14px 16px; font-size: 0.92rem;
  line-height: 1.55;
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert--info { background: var(--info-bg); color: var(--secondary-dark); }
.alert--info svg { color: var(--secondary); }
.alert--success { background: var(--success-bg); color: #166b3c; }
.alert--success svg { color: var(--success); }
.alert--warning { background: var(--warning-bg); color: #8a5a00; }
.alert--warning svg { color: var(--warning); }
.alert--danger { background: var(--error-bg); color: #a03434; }
.alert--danger svg { color: var(--error); }

/* ==========================================================================
   1d. Tables
   ========================================================================== */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 13px 16px; border-bottom: 1px solid var(--border-light); text-align: left; font-size: 0.92rem; }
.table th {
  font-family: var(--font-heading); font-size: 0.76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted);
  background: var(--light-grey);
}
.table tr:last-child td { border-bottom: none; }
.table--bordered { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xs); }
.table--bordered th:last-child, .table--bordered td:last-child { border-right: none; }

/* ==========================================================================
   2. Section intro (used with layout utilities)
   ========================================================================== */
.section-intro { max-width: 680px; }
.section-intro--center { margin: 0 auto; text-align: center; }

/* ==========================================================================
   3. Destinations Grid
   ========================================================================== */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.destination-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 260px; box-shadow: var(--shadow-sm); transition: all var(--transition);
  display: block;
}
.destination-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.destination-card:hover img { transform: scale(1.07); }
.destination-card::after { content: ''; position: absolute; inset: 0; background: var(--gradient-card); }
.destination-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 24px; color: var(--white); }
.destination-info h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 4px; }
.destination-info p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 0; }
.destination-count {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(255,255,255,0.92); color: var(--primary);
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px; border-radius: var(--radius-full);
}

/* ==========================================================================
   4. Browse by Purpose
   ========================================================================== */
.purpose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.purpose-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.purpose-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.purpose-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.purpose-card::after { content: ''; position: absolute; inset: 0; background: var(--gradient-card); }
.purpose-card-body { position: relative; z-index: 2; padding: 30px; color: var(--white); }
.purpose-card-body h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.purpose-card-body p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 18px; }
.purpose-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--white);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem;
}
.purpose-link svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.purpose-card:hover .purpose-link svg { transform: translateX(4px); }

/* ==========================================================================
   5. Holiday Escapes (categories)
   ========================================================================== */
.escapes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.escape-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 190px; display: block; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.escape-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.escape-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.escape-card:hover img { transform: scale(1.06); }
.escape-card::after { content: ''; position: absolute; inset: 0; background: var(--gradient-card); }
.escape-card-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 16px; color: var(--white);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem;
}

/* Browse by style — interactive selector (app.js) */
.style-chip {
  border: 0; padding: 0; background: none; width: 100%; cursor: pointer;
  text-align: left; font: inherit; color: var(--white);
}
.style-chip:focus-visible { outline: 3px solid var(--teal, #0f766e); outline-offset: 2px; }
.style-chip.is-active { outline: 3px solid var(--teal, #0f766e); outline-offset: -6px; box-shadow: var(--shadow-md); }
.style-listings { margin-top: 30px; }
.style-listings-head { text-align: center; margin-bottom: 22px; }
.style-listings-title { font-size: 1.4rem; margin-bottom: 4px; }
.style-listings-count { color: var(--text-dim); margin: 0; }
.style-none { text-align: center; padding: 36px 0; color: var(--text-dim); }

/* ==========================================================================
   6. How It Works
   ========================================================================== */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs); transition: all var(--transition); position: relative;
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-card-number {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800;
  color: var(--grey); line-height: 1;
}
.how-card-icon {
  width: 60px; height: 60px; border-radius: var(--radius);
  background: var(--info-bg); color: var(--secondary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.how-card-icon svg { width: 28px; height: 28px; }
.how-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.how-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ==========================================================================
   7. Why Choose Us
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs); transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-full);
  background: var(--gradient-accent); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.why-card-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ==========================================================================
   8. Testimonials
   ========================================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border-light); box-shadow: var(--shadow-xs);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--warning); }
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-text { font-size: 0.98rem; color: var(--text); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
}
.testimonial-author h4 { font-size: 0.98rem; color: var(--primary); margin-bottom: 2px; }
.testimonial-author p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ==========================================================================
   9. Newsletter
   ========================================================================== */
.newsletter-section { background: var(--gradient-primary); }
.newsletter-wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { color: var(--white); margin-bottom: 10px; }
.newsletter-text p { color: rgba(255,255,255,0.78); margin: 0; max-width: 480px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 460px; }
.newsletter-form input {
  flex: 1; padding: 15px 20px; border: none; border-radius: var(--radius-full);
  font-size: 0.95rem;
}
.newsletter-form input:focus { outline: 3px solid var(--accent); outline-offset: 2px; box-shadow: var(--ring-accent); }
.newsletter-form .btn { flex-shrink: 0; min-height: 52px; }

/* ==========================================================================
   10. Feature Blocks
   ========================================================================== */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-block + .feature-block { margin-top: 64px; }
.feature-block.reverse .feature-visual { order: -1; }
.feature-copy { min-width: 0; }
.feature-visual {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; background: var(--gradient-primary); position: relative;
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-body h3 { font-size: 1.55rem; margin-bottom: 16px; }
.feature-body p { font-size: 1rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.feature-list li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.97rem; }
.feature-list svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   11. Pricing Plans
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.popular {
  border: 2px solid var(--accent); position: relative;
  transform: scale(1.03); box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-accent); color: var(--white);
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 18px; border-radius: var(--radius-full); white-space: nowrap;
}
.pricing-plan { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.pricing-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.pricing-currency { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.pricing-amount, .pricing-price { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.pricing-period { color: var(--text-muted); font-size: 0.9rem; }
.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-features li { display: flex; gap: 10px; margin-bottom: 13px; font-size: 0.93rem; }
.pricing-features svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pricing-features .off { color: var(--text-dim); }
.pricing-features .off svg { color: var(--text-dim); }
.pricing-card .btn { justify-content: center; }
.pricing-note { text-align: center; margin-top: 24px; font-size: 0.85rem; color: var(--text-muted); }
.pricing-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-left: auto; margin-right: auto; }
.pricing-group-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  color: var(--primary); text-align: center; margin: 48px 0 20px;
}
.pricing-group-title:first-of-type { margin-top: 8px; }
.pricing-agent {
  margin: 40px auto 0; max-width: 600px; text-align: center;
  background: var(--white); border: 1px solid var(--accent);
  border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow-xs);
}
.pricing-agent h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--primary); margin-bottom: 6px; }
.pricing-agent .pricing-price-row { justify-content: center; margin-bottom: 10px; }
.pricing-agent p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ==========================================================================
   12. Contact & FAQ
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--gradient-primary); border-radius: var(--radius-lg);
  padding: 40px; color: var(--white);
}
.contact-info-card h2 { color: var(--white); margin-bottom: 18px; }
.contact-info-card > p { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin-bottom: 32px; }
.contact-method { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-method-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(255,255,255,0.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; }
.contact-method h3 { color: var(--white); font-size: 0.98rem; margin-bottom: 4px; }
.contact-method p, .contact-method a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.contact-method a:hover { color: var(--teal); }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all var(--transition-fast);
}
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 22px; background: none; border: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--primary); cursor: pointer; text-align: left;
}
.faq-question:hover { color: var(--secondary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--info-bg); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); }

/* ==========================================================================
   13. Toasts & Notifications
   ========================================================================== */
.toast-container {
  position: fixed; top: calc(var(--header-h) + 16px); right: 16px;
  z-index: 1200; display: flex; flex-direction: column; gap: 10px;
  max-width: 360px; width: calc(100% - 32px);
}
.toast {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--secondary); border-radius: var(--radius);
  padding: 14px 16px; box-shadow: var(--shadow-md);
  animation: toastIn 0.3s ease forwards;
}
.toast.hiding { animation: toastOut 0.3s ease forwards; }
.toast svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.toast-success { border-left-color: var(--success); }
.toast-success svg { color: var(--success); }
.toast-error { border-left-color: var(--error); }
.toast-error svg { color: var(--error); }
.toast-info { border-left-color: var(--secondary); }
.toast-info svg { color: var(--secondary); }
.toast-warning { border-left-color: var(--warning); }
.toast-warning svg { color: #c77700; }
.toast-body { flex: 1; }
.toast-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--primary); margin-bottom: 2px; }
.toast-message { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }
.toast-close { background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 2px; flex-shrink: 0; }
.toast-close:hover { color: var(--text); }
.toast-close svg { width: 16px; height: 16px; }

/* ==========================================================================
   14. Call-to-action band
   ========================================================================== */
.cta-band {
  position: relative; border-radius: var(--radius-2xl); overflow: hidden;
  padding: 64px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; color: var(--white);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0.92; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.82); margin: 0; max-width: 520px; }
.cta-band .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-actions .btn { min-height: 48px; }

/* ==========================================================================
   15. Agents
   ========================================================================== */
.agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.agent-card-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; gap: 16px; transition: all var(--transition);
}
.agent-card-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.agent-card-head { display: flex; align-items: center; gap: 16px; }
.agent-avatar-img {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  background: var(--light-grey); flex-shrink: 0;
}
.agent-card-info h3 { font-size: 1.05rem; margin-bottom: 2px; }
.agent-card-info h3 a { color: var(--primary); }
.agent-card-info h3 a:hover { color: var(--secondary); }
.agent-role { font-size: 0.84rem; color: var(--secondary); font-weight: 600; margin: 0 0 2px; }
.agent-card-item .choice-logo-img { height: 28px; max-width: 120px; margin: 4px 0; }
.agent-loc { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.agent-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.agent-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.agent-meta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: auto;
  padding-top: 14px; border-top: 1px solid var(--border-light);
  font-size: 0.8rem; color: var(--text-muted);
}
.agent-meta span { display: inline-flex; align-items: center; gap: 6px; }
.agent-meta span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Agent profile page */
.agent-profile-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm);
  display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap;
}
.agent-profile-avatar {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
  background: var(--light-grey); flex-shrink: 0;
}
.agent-profile-info { flex: 1; min-width: 280px; }
.agent-profile-info h1, .agent-profile-info h2 { font-size: 1.8rem; margin-bottom: 4px; }
.agent-profile-info .agent-role { font-size: 1rem; margin-bottom: 14px; }
.agent-profile-info .agent-bio { margin: 18px 0; max-width: 640px; }

/* ==========================================================================
   15b. Top Property Agents & Owners (homepage section)
   ========================================================================== */
.top-agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.top-agent-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.top-agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.top-agent-card:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
.top-agent-rank {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  line-height: 1.5;
}
.top-agent-card:first-child .top-agent-rank {
  background: var(--accent);
  color: var(--white);
}
.top-agent-logo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--light-grey);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border: 3px solid var(--border-light);
}
.top-agent-card:first-child .top-agent-logo-wrap {
  border-color: var(--accent);
}
.top-agent-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.top-agent-logo-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
.top-agent-company-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}
.choice-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 4px;
}
.top-agent-agency-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--secondary);
  background: rgba(15, 118, 110, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.top-agent-agency-name {
  font-size: 0.78rem;
  color: var(--secondary);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
}
.top-agent-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}
.top-agent-count {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 4px 0 0;
}
.top-agent-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.top-agent-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--secondary);
  transition: color var(--transition-fast);
}
.top-agent-card:hover .top-agent-cta {
  color: var(--accent);
}
.top-agents-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Responsive: top agents */
@media (max-width: 1024px) {
  .top-agents-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .top-agents-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .top-agent-card { padding: 24px 16px; }
  .choice-logo-img { height: 28px; max-width: 130px; }
}

/* ==========================================================================
   16. Destination details
   ========================================================================== */
.dest-highlights { margin-top: 28px; }
.dest-highlights h3 { font-size: 1.15rem; margin-bottom: 16px; }

/* ==========================================================================
   17. Enquiry form (details sidebar)
   ========================================================================== */
.enquiry-form { display: flex; flex-direction: column; gap: 14px; }
.enquiry-title { font-size: 1rem; margin-bottom: 2px; }
.booking-note {
  font-size: 0.82rem; color: var(--text-muted);
  background: var(--info-bg); border-radius: var(--radius-sm);
  padding: 12px 14px; margin-bottom: 6px; line-height: 1.5;
}
.hidden-form { display: none; }

/* ==========================================================================
   18. Home stats band
   ========================================================================== */
.home-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.home-stat { text-align: center; padding: 20px 0; }
.home-stat-value {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--accent); line-height: 1.1; margin-bottom: 6px;
}
.home-stat-label {
  font-size: 0.9rem; color: rgba(255,255,255,0.72);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.section--dark .home-stat + .home-stat { border-left: 1px solid rgba(255,255,255,0.12); }

/* ---------- Content & landing pages ---------- */
.section--tint { background: var(--light-grey); }
.content-prose { max-width: 780px; }
.content-prose h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.content-prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.content-prose p, .content-prose li { font-size: 0.98rem; line-height: 1.8; color: var(--text); }
.content-prose ul { padding-left: 22px; margin-bottom: 18px; }
.content-prose .meta-note { font-size: 0.85rem; color: var(--text-muted); border-left: 3px solid var(--accent); padding: 6px 14px; background: var(--info-bg); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 22px; }
.legal-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 44px; box-shadow: var(--shadow-sm); }
.legal-card h1 { font-size: 1.9rem; margin-bottom: 6px; }
.legal-card .updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.country-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.country-chips li { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 10px 18px; font-size: 0.92rem; color: var(--text); box-shadow: var(--shadow-sm); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: relative; box-shadow: var(--shadow-sm); }
.step-num { position: absolute; top: 20px; right: 24px; font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: rgba(22,119,255,0.14); line-height: 1; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; line-height: 1.7; }
.step-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--gradient-primary); color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-icon svg { width: 24px; height: 24px; }
.not-found { text-align: center; max-width: 560px; margin: 0 auto; padding: 80px 0; }
.not-found-code { font-family: var(--font-heading); font-size: clamp(4rem, 10vw, 7rem); font-weight: 800; line-height: 1; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.not-found h1 { font-size: 1.6rem; margin: 18px 0 10px; }
.not-found p { color: var(--text-muted); margin-bottom: 28px; }
.auth-stub-note { max-width: 640px; margin: 0 auto; text-align: center; color: var(--text-muted); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.compare-table th, .compare-table td { padding: 13px 16px; border-bottom: 1px solid var(--border-light); text-align: left; }
.compare-table th { font-family: var(--font-heading); color: var(--primary); background: var(--bg); }
.compare-table td.yes { color: var(--success); font-weight: 600; }
.compare-table td.no { color: var(--text-dim); }
.compare-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
