/*
 * about.css — About page specific: breadcrumb, hero, timeline, philosophy, CTA
 * Used only by about-dr-samir-contractor.html
 * Dr Samir Contractor Website
 */

/* ─── buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.6rem; border-radius: 999px;
  font-size: .95rem; font-weight: 600; font-family: var(--body);
  border: 0; cursor: pointer; text-decoration: none;
  transition: all .22s ease;
}
.btn-primary { background: var(--brand-green); color: #fff; box-shadow: 0 4px 14px rgba(28,177,113,.3); }
.btn-primary:hover { background: var(--brand-green-deep); transform: translateY(-2px); }
.btn-secondary { background: var(--brand-blue); color: #fff; }
.btn-secondary:hover { background: var(--brand-blue-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid #CBD2D9; }
.btn-ghost:hover { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }

/* ─── BREADCRUMB ─── */
.breadcrumb { padding: .85rem 0; border-bottom: 1px solid var(--rule); background: var(--bg-soft); }
.breadcrumb nav { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.breadcrumb a { font-size: .82rem; color: var(--brand-blue); }
.breadcrumb a:hover { color: var(--brand-blue-deep); }
.breadcrumb .sep { font-size: .82rem; color: var(--muted); }
.breadcrumb .current { font-size: .82rem; color: var(--ink-3); font-weight: 500; }

/* ─── HERO ─── */
.about-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 5vw, 4rem);
  background: var(--bg);
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, var(--brand-blue-soft) 0%, #C5DEF0 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  position: relative; z-index: 1;
}
.hero-text .eyebrow { margin-bottom: 1rem; }
.hero-text h1 { margin-bottom: 1.1rem; }
.hero-quote {
  font-size: 1.1rem;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.6;
  padding-left: 1.25rem;
  border-left: 3px solid var(--brand-green);
  margin-bottom: 1.75rem;
}
.hero-cta-row { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: .4rem 1.25rem;
  font-size: .84rem; color: var(--ink-3); align-items: center;
}
.hero-proof .dot { width: 4px; height: 4px; background: var(--brand-green); border-radius: 50%; display: inline-block; }

/* Portrait */
.portrait-wrap { position: relative; }
.portrait-frame {
  width: 100%; aspect-ratio: 4/5; border-radius: 8px;
  background: linear-gradient(160deg, rgba(6,114,186,.06), rgba(28,177,113,.05)), var(--brand-blue-soft);
  position: relative; overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(6,114,186,.22), 0 4px 16px rgba(15,44,63,.06);
}
.portrait-frame::after {
  content: 'Portrait Photo\AReplace with\ADr.SamirContractor-Vadodara.png';
  white-space: pre; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: rgba(6,114,186,.45);
  font-family: var(--body); font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 500; line-height: 1.8;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

/* Floating credential badge */
.cred-float {
  position: absolute; bottom: 1.5rem; left: -1.5rem;
  background: var(--brand-blue); color: #fff;
  padding: 1rem 1.3rem; border-radius: 8px;
  box-shadow: 0 16px 40px -10px rgba(6,114,186,.35);
  z-index: 2; min-width: 200px;
}
.cred-float .cf-label { font-size: .66rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.75); font-weight: 700; margin-bottom: .3rem; }
.cred-float .cf-value { font-family: var(--display); font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.3; }
.cred-float .cf-sub { font-size: .78rem; color: rgba(255,255,255,.75); margin-top: .2rem; }

/* ─── CREDENTIALS STRIP ─── */
.creds-strip {
  background: var(--ink); padding: 2rem 0;
}
.creds-inner {
  display: flex; align-items: stretch; gap: 0;
  justify-content: center; flex-wrap: wrap;
}
.cred-item {
  flex: 1; min-width: 120px; max-width: 200px;
  text-align: center; padding: 1.1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.cred-item:last-child { border-right: 0; }
.cred-item .ci-abbr {
  font-family: var(--display); font-size: 1.6rem; font-weight: 700;
  color: var(--brand-green); line-height: 1; margin-bottom: .35rem;
}
.cred-item .ci-name { font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.cred-item .ci-org { font-size: .68rem; color: rgba(255,255,255,.45); margin-top: .2rem; }

/* ─── SECTION SHELL ─── */
.section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.section-alt { background: var(--bg-soft); }
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 720px; }
.section-head .eyebrow { margin-bottom: .85rem; }
.section-head h2 { margin-bottom: .85rem; }
.section-head p { font-size: 1.05rem; max-width: 54ch; }

/* ─── SURGICAL VOLUMES ─── */
.volumes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-bottom: 2rem;
}
.vol-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--brand-blue);
  border-radius: 8px; padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.vol-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -12px rgba(6,114,186,.14); }
.vol-card .vc-num {
  font-family: var(--display); font-size: 2.6rem; font-weight: 700;
  color: var(--brand-blue); line-height: 1; margin-bottom: .4rem;
  letter-spacing: -.02em;
}
.vol-card .vc-label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-3); font-weight: 600; margin-bottom: .5rem;
}
.vol-card .vc-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.vol-note {
  text-align: center; font-size: .82rem; color: var(--muted);
  font-style: italic; margin-top: .5rem;
}

/* ─── CAREER TIMELINE ─── */
.timeline-wrap { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 820px; }
.timeline-wrap::before {
  content: ''; position: absolute;
  left: 19px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--brand-blue), var(--brand-green));
}
.tl-item { display: grid; grid-template-columns: 40px 1fr; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
  position: relative; z-index: 1; flex-shrink: 0;
  font-family: var(--body);
}
.tl-dot.milestone { background: var(--brand-green); }
.tl-content { padding-top: .5rem; }
.tl-year {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .16em;
  font-weight: 700; color: var(--brand-blue); margin-bottom: .3rem;
}
.tl-year.green { color: var(--brand-green-deep); }
.tl-content h4 { font-size: 1rem; margin-bottom: .3rem; }
.tl-content p { font-size: .9rem; color: var(--ink-3); line-height: 1.55; }
.tl-badge {
  display: inline-block; background: var(--brand-blue-soft);
  color: var(--brand-blue); font-size: .68rem; font-weight: 700;
  padding: .18rem .6rem; border-radius: 999px; letter-spacing: .05em;
  margin-top: .4rem; text-transform: uppercase;
}
.tl-badge.green { background: #C8EBDA; color: var(--brand-green-deep); }

/* ─── MEMBERSHIPS ─── */
.memberships-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.member-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px; padding: 1.5rem 1.35rem;
  display: flex; flex-direction: column; gap: .65rem;
  transition: border-color .25s, transform .25s;
}
.member-card:hover { border-color: var(--brand-blue-soft); transform: translateY(-2px); }
.member-card .mc-flag {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.member-card .mc-flag.blue { background: var(--brand-blue-soft); }
.member-card .mc-flag.green { background: #C8EBDA; }
.member-card h4 { font-size: .95rem; line-height: 1.35; }
.member-card p { font-size: .82rem; line-height: 1.5; }
.member-card .mc-type {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--brand-blue);
}
.member-card .mc-type.green { color: var(--brand-green-deep); }

/* ─── PHILOSOPHY ─── */
.philosophy-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.philosophy-text .eyebrow { margin-bottom: 1rem; }
.philosophy-text h2 { margin-bottom: 1.25rem; }
.philosophy-text p { font-size: 1rem; margin-bottom: 1.1rem; line-height: 1.7; }
.philosophy-text p:last-child { margin-bottom: 0; }
.philosophy-text p em { font-style: italic; color: var(--ink-2); }

.philosophy-card {
  background: var(--brand-blue); border-radius: 10px;
  padding: 2rem 2.25rem;
}
.philosophy-card blockquote {
  font-family: var(--display); font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600; color: #fff; line-height: 1.45;
  position: relative; padding-top: 1.5rem;
}
.philosophy-card blockquote::before {
  content: '"';
  font-family: var(--display); font-size: 4rem; font-weight: 700;
  color: var(--brand-green); line-height: .8;
  position: absolute; top: 0; left: 0;
}
.philosophy-card cite {
  display: block; margin-top: 1.5rem;
  font-size: .85rem; color: rgba(255,255,255,.75);
  font-style: normal; line-height: 1.4;
}
.philosophy-card cite strong { color: #fff; font-weight: 600; }

/* ─── PRACTICE AREAS ─── */
.practice-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem;
}
.practice-card {
  border: 1px solid var(--rule); border-radius: 8px;
  padding: 1.5rem 1.25rem; text-decoration: none;
  display: flex; flex-direction: column; gap: .75rem;
  transition: all .25s;
}
.practice-card:hover {
  border-color: var(--brand-blue-soft);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(6,114,186,.12);
}
.practice-card .pc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-blue-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-blue);
}
.practice-card .pc-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.practice-card h4 { color: var(--ink); font-size: .98rem; }
.practice-card p { font-size: .84rem; color: var(--ink-3); line-height: 1.5; flex: 1; }
.practice-card .pc-link {
  font-size: .82rem; font-weight: 700;
  color: var(--brand-green-deep);
  display: inline-flex; align-items: center; gap: .3rem;
}
.practice-card:hover .pc-arrow { transform: translateX(3px); }
.pc-arrow { transition: transform .2s; }

/* ─── CTA ─── */
.about-cta { background: var(--brand-blue); padding: clamp(3rem, 6vw, 5rem) 0; }
.about-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.about-cta h2 { color: #fff; margin-bottom: 1rem; }
.about-cta h2 em { color: var(--brand-green); }
.about-cta p { color: rgba(255,255,255,.82); font-size: 1rem; margin-bottom: 1.75rem; }
.cta-contact-blocks { display: flex; flex-direction: column; gap: 1.25rem; }
.cta-block {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px; padding: 1.1rem 1.35rem;
}
.cta-block .ctb-label {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .16em;
  font-weight: 700; color: var(--brand-green); margin-bottom: .3rem;
  display: flex; align-items: center; gap: .4rem;
}
.cta-block .ctb-value {
  font-family: var(--display); font-size: 1.05rem;
  font-weight: 700; color: #fff;
}
.cta-block a { color: #fff; transition: color .18s; }
.cta-block a:hover { color: var(--brand-green); }
.cta-block .ctb-sub { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .2rem; }
.cta-btn-row { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.btn-white { background: #fff; color: var(--brand-blue) !important; font-weight: 700; }
.btn-white:hover { background: var(--brand-green); color: #fff !important; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }


/* Sticky WhatsApp */
.sticky-wa { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99; background: var(--brand-green); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(28,177,113,.45); text-decoration: none; animation: pulse 2.2s infinite; }
.sticky-wa:hover { background: var(--brand-green-deep); transform: scale(1.06); }
.sticky-wa svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse { 0%,100%{ box-shadow:0 8px 24px rgba(28,177,113,.45),0 0 0 0 rgba(28,177,113,.55); } 50%{ box-shadow:0 8px 24px rgba(28,177,113,.45),0 0 0 14px rgba(28,177,113,0); } }
