/* ======================================================
   HEALING HANDS CLINIC — UROLOGY LANDING PAGES
   Shared design system  •  Pune, India
   ====================================================== */
:root {
  /* Colour system */
  --bg: #FBF7F0;
  --bg-alt: #F4ECDD;
  --surface: #FFFFFF;
  --primary: #0F4C5C;
  --primary-dark: #0A3540;
  --primary-light: #E5F0F2;
  --accent: #F97C7A;
  --accent-light: #F4E3D4;
  --ink: #0f4c5c;
  --ink-soft: #3A444C;
  --muted: #6B7378;
  --line: #E8DFD0;
  --line-soft: #F1EAD9;
  --success: #2E7D5C;
  --white: #ffffff;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 76, 92, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 76, 92, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 76, 92, 0.12);
}

/* ====================  TYPE SYSTEM  ==================== */
.eyebrow {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: #e5f0f2;
  padding: 8px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 350;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 350;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
}

h4 {
  font-size: 1.15rem;
  font-weight: 500;
  font-variation-settings: "opsz" 9;
}

h1 span,
h2 span {
  color: var(--accent);
  font-weight: 600;
}

p {
  color: var(--ink-soft);
}

.hero-grid .lead {
  font-size: 1.09rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ====================  LAYOUT  ==================== */

.section {
  padding: var(--space-6) 0;
}

.section-sm {
  padding: var(--space-5) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-7) 0;
  }

  .section-sm {
    padding: var(--space-6) 0;
  }
}




/* ====================  BUTTONS  ==================== */

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-gold {
  padding: 13px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.15s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost {
  padding: 12px 18px;
  border-radius: 18px;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgb(249 124 122);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-gold:hover{color:#fff;}
.btn-ghost:hover{color:var(--accent);}
/* ====================  HERO  ==================== */
.hero {
  position: relative;
  padding: var(--space-4) 0 var(--space-6);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 90% 10%, rgba(197, 111, 58, 0.08), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(15, 76, 92, 0.06), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero-text {
  max-width: 620px;
}

.hero h1 {
  margin: 1.2rem 0;
  font-weight: 600;
}

.hero .lead {
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-meta {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 160px;
}

.hero-meta-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.hero-meta-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-meta-item .num {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.hero-meta-item .lbl {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.3rem;
  display: block;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(197, 111, 58, 0.18), transparent 50%);
}

.hero-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-visual-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.hero-visual-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

/* ====================  TRUST BAR  ==================== */
.trustbar {
  background: var(--primary);
  color: var(--bg);
  padding: 2rem 0;
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .trustbar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.trust-item {
  text-align: center;
}

.trust-item .n {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 600;
  display: block;
  line-height: 1;
  color: var(--bg);
}

.trust-item .n em {
  color: #F4A06A;
  font-style: normal;
}

.trust-item .lbl {
  font-size: 0.82rem;
  color: rgba(251, 247, 240, 0.75);
  margin-top: 0.5rem;
  display: block;
  letter-spacing: 0.04em;
}

/* ====================  SECTION HEADER  ==================== */
.section-header {
  text-align: center;
  margin: 0 auto var(--space-6);
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin: 0.75rem 0 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ====================  WHAT IS / TWO-COL  ==================== */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 920px) {
  .split-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.split-block.reverse> :first-child {
  order: 2;
}

@media (max-width: 920px) {
  .split-block.reverse> :first-child {
    order: 0;
  }
}

.split-text h2 {
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.split-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.split-text p:last-child {
  margin-bottom: 0;
}

.split-visual {
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 2rem;
  border: 1px solid var(--line);
  position: relative;
}

.split-visual.tinted {
  background: var(--primary-light);
  border-color: transparent;
}

/* ====================  SYMPTOMS GRID  ==================== */
.sym-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 860px) {
  .sym-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .sym-grid {
    grid-template-columns: 1fr;
  }
}

.sym-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.sym-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}

.sym-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.sym-card:hover::before {
  transform: scaleY(1);
}

.sym-icon {
  width: 44px;
  height: 44px;
  margin: auto;
  border-radius: var(--r-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sym-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sym-card h4 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.sym-card p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ====================  TREATMENT OPTIONS  ==================== */
.treatments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .treatments {
    grid-template-columns: 1fr;
  }
}

.treatment {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s;
}

.treatment.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg);
  border: none;
}

.treatment.featured h3,
.treatment.featured p,
.treatment.featured li,
.treatment.featured .treatment-tag {
  color: var(--bg);
}

.treatment.featured p {
  color: rgba(251, 247, 240, 0.85);
}

.treatment.featured li {
  color: rgba(251, 247, 240, 0.92);
}

.treatment.featured .treatment-tag {
  background: rgba(244, 160, 106, 0.25);
  color: #F4A06A;
}

.treatment:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.treatment-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-sm);
  margin-bottom: 0.85rem;
}

.treatment h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.treatment>p {
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.treatment ul {
  display: grid;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
}

.treatment li {
  font-size: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
}

.treatment li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--accent);
}

.treatment.featured li::before {
  color: #F4A06A;
}

/* ====================  USP / WHY HHC  ==================== */
.usp-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.usp-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.4;
}

.usp-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.3;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

@media (max-width: 860px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}

.usp-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--r-md);
  border-top: 3px solid var(--accent);
  transition: transform 0.3s;
}

.usp-card:hover {
  transform: translateY(-4px);
}

.usp-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(249, 124, 122, 0.25);
}

.usp-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.usp-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ====================  DOCTOR PROFILE (REF IMAGE DESIGN)  ==================== */
.doctor-grid-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 860px) {
  .doctor-grid-v3 {
    grid-template-columns: 1fr;
  }
}

.doctor-card-v3 {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid var(--line);
}

.doctor-card-v3:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.doctor-photo-v3 {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 4px solid var(--accent);
  padding: 5px;
  background: var(--bg-alt);
  overflow: hidden;
}

.doctor-photo-v3 img,
.doctor-photo-v3 svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctor-badge-v3 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.doctor-card-v3 h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.doctor-card-v3 .creds {
  font-size: 0.88rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.doctor-card-v3 .role {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.doctor-card-v3 .bio-short {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 auto;
}

/* ====================  TESTIMONIALS  ==================== */
.testimonials {
  background: var(--primary);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -120px;
  right: 5%;
  font-size: 30rem;
  color: rgba(244, 160, 106, 0.08);
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
}

.testimonials .section-header h2 {
  color: var(--bg);
}

.testimonials .section-header p {
  color: rgba(251, 247, 240, 0.8);
}

.testimonials .eyebrow {
  color: #F4A06A;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

@media (max-width: 860px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: var(--r-md);
  position: relative;
}

.stars {
  color: #F4A06A;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-card blockquote {
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 350;
  color: var(--bg);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 1.1rem;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--bg);
}

.testi-author span {
  font-size: 0.8rem;
  color: rgba(251, 247, 240, 0.7);
}

/* ====================  FAQ  ==================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: "opsz" 14;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-answer {
  margin-top: 1rem;
  padding-right: 3rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-answer p+p {
  margin-top: 0.85rem;
}

/* ====================  BOOKING / CONTACT  ==================== */
.booking-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 920px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.booking-info h2 {
  margin-bottom: 1.2rem;
}

.booking-info .lead {
  margin-bottom: 2.5rem;
}

.contact-blocks {
  display: grid;
  gap: 1.25rem;
}

.contact-block {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.contact-block strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-block a,
.contact-block p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-block a:hover {
  color: var(--accent);
}

.booking-form {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.booking-form h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.booking-form>p {
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1);
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
}





/* ====================  HUB-PAGE SPECIALTY GRID  ==================== */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .specialty-grid {
    grid-template-columns: 1fr;
  }
}

.specialty-link {
  display: block;
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.specialty-grid a {
  text-decoration: none;
}
.specialty-link::after {
  content: '→';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.3rem;
  color: var(--muted);
  transition: all 0.3s;
}

.specialty-link:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.specialty-link:hover::after {
  color: var(--accent);
  transform: translateX(4px);
}

.specialty-link .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.specialty-link h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.specialty-link p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ====================  TECH SHOWCASE (HUB)  ==================== */
.tech-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 860px) {
  .tech-block {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
}

.tech-block::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 160, 106, 0.2), transparent 60%);
  pointer-events: none;
}

.tech-block .eyebrow {
  color: #F4A06A;
}

.tech-block h2 {
  color: var(--bg);
  margin: 1rem 0 1.25rem;
}

.tech-block p {
  color: rgba(251, 247, 240, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.tech-block ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  padding-left: 0px;
}

.tech-block li {
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(251, 247, 240, 0.9);
}

.tech-block li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-size: 0.7em;
}

.tech-visual {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ====================  BREADCRUMB  ==================== */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--ink);
}

/* ====================  ANIMATIONS / REVEAL  ==================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================  MISC / UTILS  ==================== */
.mt-0 {
  margin-top: 0 !important;
}

.tc {
  text-align: center;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: var(--space-6) 0;
}

/* ====================  STONE TYPES SECTION  ==================== */
.stone-types-title {
  margin-bottom: var(--space-3);
}

.stone-types-grid {
  display: grid;
  gap: var(--space-3);
}

.stone-card {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--surface);
  border-radius: var(--r-sm);
}

.stone-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stone-name {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.stone-desc {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ====================  RISK FACTORS BOX  ==================== */
.risk-box {
  margin-top: 2.5rem;
  background: var(--surface);
  padding: var(--space-5);
  border-radius: var(--r-md);
  border-left: 4px solid var(--accent);
}

.risk-title {
  margin-bottom: 0.75rem;
}

.risk-text {
  font-size: 0.98rem;
  color: var(--ink-soft);
}

/* ====================  UTILITIES  ==================== */
.bg-alt {
  background: var(--bg-alt) !important;
}

.eyebrow-center {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
}

/* ====================  LOCATION GRID  ==================== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1100px) {
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.location-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.location-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.location-card .btn-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.location-card .btn-link::after {
  content: '→';
}

/* Print friendly */
@media print {

  .header,
  .booking-form {
    display: none;
  }
}