/*
Theme Name: Astra Child
Template: astra
Version: 1.1.0
Text Domain: thrglobaldentistry
*/

:root{
  --navy:#061a2b;
  --navy2:#0b2a46;
  --teal:#12b4a3;
  --teal2:#0ea191;
  --gold:#c7a24a;
  --ink:#0b1220;
  --muted:#5b6878;
  --bg:#f5f7fb;
  --card:#ffffff;
  --line:rgba(12, 24, 44, .10);

  --radius:18px;
  --shadow: 0 18px 45px rgba(6, 18, 43, .10);
  --shadow2: 0 10px 25px rgba(6, 18, 43, .14);

  --container: min(1200px, calc(100% - 40px));
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }

body.page-template-template-landing-implantology-php .site-header,
body.page-template-template-landing-implantology-php .site-footer,
body.page-template-template-landing-implantology .site-header,
body.page-template-template-landing-implantology .site-footer{
  display:none !important;
}

/* Admin bar offset */
body.admin-bar .thr-nav{ top:32px; }
@media (max-width: 782px){
  body.admin-bar .thr-nav{ top:46px; }
}

.thr-wrap{ width:100%; overflow:hidden; }
.thr-container{ width:var(--container); margin:0 auto; }

/* ========= NAV ========= */
.thr-nav{
  position:fixed;
  left:0; right:0; top:0;
  z-index:9999;
  background:rgba(6, 26, 43, .72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.thr-nav-inner{
  width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:18px;
}
.thr-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.thr-brand img{ width:44px; height:44px; object-fit:contain; }
.thr-brand .thr-brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.thr-brand .thr-brand-text strong{
  color:#fff;
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  font-size:14px;
  letter-spacing:.2px;
}
.thr-brand .thr-brand-text span{
  color:rgba(255,255,255,.75);
  font-size:12px;
}

.thr-menu{
  display:flex;
  align-items:center;
  gap:16px;
}
.thr-menu a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
  transition:all .2s ease;
}
.thr-menu a:hover{
  color:#fff;
  background:rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.thr-cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.thr-btn{
  appearance:none;
  border:0;
  background:linear-gradient(135deg, var(--teal), var(--teal2));
  color:#071a2a;
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  font-size:13px;
  padding:11px 14px;
  border-radius:14px;
  text-decoration:none;
  box-shadow: 0 12px 28px rgba(18, 180, 163, .28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.thr-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(18, 180, 163, .34);
  filter:saturate(1.08);
}
.thr-btn.secondary{
  background:rgba(255,255,255,.12);
  color:#fff;
  box-shadow:none;
  border:1px solid rgba(255,255,255,.18);
}
.thr-btn.secondary:hover{
  background:rgba(255,255,255,.18);
}

.thr-burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.thr-burger svg{ width:20px; height:20px; }
/* ===== Fix mobile burger icon (always visible) ===== */
.thr-burger{
  position:relative;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
}

/* Hide SVG (optional) to avoid conflicts */
.thr-burger svg{ display:none !important; }

/* Draw 3 lines with CSS */
.thr-burger::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:3px;
  transform:translate(-50%,-50%);
  box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
  opacity: .95;
}

.thr-burger:active{
  transform: translateY(1px);
}

/* Mobile nav drawer */
.thr-drawer{
  position:fixed;
  inset:0;
  background:rgba(6, 18, 30, .55);
  backdrop-filter: blur(8px);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:9998;
}
.thr-drawer.open{ opacity:1; pointer-events:auto; }
.thr-drawer-panel{
  position:absolute;
  right:0; top:0; height:100%;
  width:min(360px, 88vw);
  background:linear-gradient(180deg, rgba(6,26,43,.98), rgba(9,33,58,.98));
  border-left:1px solid rgba(255,255,255,.10);
  padding:18px;
  transform: translateX(14px);
  transition: transform .2s ease;
}
.thr-drawer.open .thr-drawer-panel{ transform:none; }
.thr-drawer a{
  display:block;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:12px 12px;
  border-radius:14px;
}
.thr-drawer a:hover{ background:rgba(255,255,255,.08); }
.thr-drawer .drawer-close{
  display:flex; justify-content:flex-end; margin-bottom:8px;
}
.thr-drawer .drawer-close button{
  width:44px; height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  cursor:pointer;
}

/* ========= HERO ========= */
.thr-hero{
  position:relative;
  padding-top:92px;
  min-height: 86vh;
  display:flex;
  align-items:stretch;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(18,180,163,.25), transparent 55%),
    radial-gradient(900px 520px at 80% 20%, rgba(199,162,74,.18), transparent 60%),
    #020d17;
}
.thr-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(3,10,18,.35), rgba(3,10,18,.85)),
    url("https://thrglobaldentistry.com/wp-content/uploads/2025/12/Dental-School-Facilities-1-scaled.webp") center/cover no-repeat;
  opacity:.92;
}
.thr-hero .thr-container{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:center;
  padding:56px 0 44px 0;
}
.thr-hero h1{
  margin:0 0 14px 0;
  color:#fff;
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  letter-spacing:-.6px;
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.05;
}
.thr-hero .headline-pill{
  display:inline-block;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
  margin-bottom:14px;
}
.thr-hero .headline-pill span{
  color:rgba(255,255,255,.90);
  font-weight:700;
  font-size:13px;
  letter-spacing:.3px;
}
.thr-hero p{
  margin:0 0 18px 0;
  color:rgba(255,255,255,.82);
  font-size:16px;
  max-width: 62ch;
}
.thr-hero .hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.thr-trust{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.thr-trust .uod{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.thr-trust .uod img{ width:44px; height:44px; object-fit:contain; }
.thr-trust .uod strong{
  color:#fff;
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  font-size:13px;
}
.thr-trust .uod span{
  display:block;
  color:rgba(255,255,255,.75);
  font-size:12px;
}

/* Hero right cards */
.thr-hero-cards{
  display:grid;
  gap:14px;
}
.thr-mini-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  padding:16px 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.20);
  transform: translateZ(0);
  transition: transform .2s ease, background .2s ease;
}
.thr-mini-card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.10);
}
.thr-mini-card .kicker{
  color:rgba(255,255,255,.70);
  font-weight:700;
  font-size:12px;
  letter-spacing:.35px;
  text-transform:uppercase;
}
.thr-mini-card .big{
  color:#fff;
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  font-size:24px;
  margin-top:6px;
}
.thr-mini-card .small{
  color:rgba(255,255,255,.78);
  font-size:13px;
  margin-top:6px;
}

/* ========= SECTIONS ========= */
.thr-section{
  padding: clamp(48px, 6vw, 84px) 0;
}
.thr-section .section-title{
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  letter-spacing:-.35px;
  font-size: clamp(24px, 3vw, 36px);
  margin:0 0 14px 0;
}
.thr-section .section-sub{
  color:var(--muted);
  margin:0 0 28px 0;
  max-width: 80ch;
}

.thr-grid{
  display:grid;
  gap:18px;
}
.thr-grid.two{ grid-template-columns: 1fr 1fr; }
.thr-grid.three{ grid-template-columns: repeat(3, 1fr); }

.thr-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  transform-style:preserve-3d;
  perspective: 900px;
}
.thr-card:hover{
  transform: translateY(-4px) rotateX(.6deg);
  box-shadow: var(--shadow2);
}
.thr-card h3{
  margin:0 0 10px 0;
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  font-size:18px;
}
.thr-card p{ margin:0; color:var(--muted); }

.thr-icon{
  width:44px; height:44px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: radial-gradient(circle at 30% 20%, rgba(18,180,163,.35), rgba(18,180,163,.12));
  border:1px solid rgba(18,180,163,.25);
  margin-bottom:12px;
}
.thr-icon svg{ width:22px; height:22px; fill: var(--teal); }

.thr-band{
  background: linear-gradient(180deg, #ffffff, #f3f6fb);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Stats strip */
.thr-stats{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(3, 1fr);
}
.thr-stat{
  border-radius: var(--radius);
  padding:18px;
  background: linear-gradient(180deg, rgba(6,26,43,.92), rgba(6,26,43,.78));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(6,18,43,.22);
}
.thr-stat .num{
  color:#fff;
  font-family:"Montserrat", sans-serif;
  font-weight:900;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing:-.6px;
}
.thr-stat .label{
  color:rgba(255,255,255,.82);
  font-weight:700;
  margin-top:6px;
}
.thr-stat .note{
  color:rgba(255,255,255,.70);
  font-size:12px;
  margin-top:6px;
}

/* UOD ecosystem list */
.thr-list{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}
.thr-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius: 16px;
  background: #ffffff;
  border:1px solid var(--line);
  box-shadow: 0 10px 24px rgba(6,18,43,.06);
}
.thr-badge{
  flex:0 0 auto;
  padding:8px 10px;
  border-radius:14px;
  background: rgba(18,180,163,.12);
  border:1px solid rgba(18,180,163,.24);
  color: var(--teal2);
  font-weight:800;
  font-size:12px;
}
.thr-list strong{ font-family:"Montserrat", sans-serif; color:var(--ink); }
.thr-list span{ color:var(--muted); display:block; margin-top:2px; }

/* Impact table */
.thr-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}
.thr-table th, .thr-table td{
  text-align:left;
  padding:14px 14px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.thr-table th{
  background: linear-gradient(180deg, #0b2a46, #061a2b);
  color:#fff;
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  font-size:13px;
}
.thr-table tr:last-child td{ border-bottom:0; }
.thr-table td{
  color:var(--muted);
  font-size:13px;
}
.thr-table td strong{ color:var(--ink); }

/* Roadmap glass cards */
.thr-glass{
  background: rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.45);
  box-shadow: 0 18px 45px rgba(6,18,43,.10);
  backdrop-filter: blur(10px);
}
.thr-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(199,162,74,.14);
  border:1px solid rgba(199,162,74,.24);
  color:#7a5b1b;
  font-weight:800;
  font-size:12px;
}

/* Footer */
.thr-footer{
  background: radial-gradient(900px 420px at 10% 0%, rgba(18,180,163,.22), transparent 55%),
              #03101c;
  color:rgba(255,255,255,.86);
  padding:54px 0;
  border-top:1px solid rgba(255,255,255,.10);
}
.thr-footer strong{ color:#fff; font-family:"Montserrat", sans-serif; font-weight:900; }
.thr-footer a{ color:#fff; text-decoration:none; border-bottom:1px dotted rgba(255,255,255,.35); }
.thr-footer a:hover{ border-bottom-color:#fff; }
.thr-foot-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.thr-foot-small{ color:rgba(255,255,255,.60); font-size:12px; margin-top:14px; }

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in{
  opacity:1;
  transform:none;
}

/* Responsive */
@media (max-width: 980px){
  .thr-hero .thr-container{ grid-template-columns: 1fr; }
  .thr-hero{ min-height: unset; }
  .thr-stats{ grid-template-columns: 1fr; }
  .thr-grid.three{ grid-template-columns: 1fr; }
  .thr-grid.two{ grid-template-columns: 1fr; }
  .thr-foot-grid{ grid-template-columns: 1fr; }
  .thr-menu, .thr-cta{ display:none; }
  .thr-burger{ display:flex; }
}
