:root{
  --cou-red:#8b0000;
  --cou-red-2:#a30d0d;
  --ink:#111;
  --muted:#666;
  --bg:#f5f5f5;
  --card:#ffffff;
  --link:#0b58d6; /* blue links like template */
  --shadow:0 10px 30px rgba(0,0,0,.12);
  --radius:14px;
  --radius-sm:10px;
  --max:1180px;
  --font: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
a{color:var(--link); text-decoration:underline}
a:hover{opacity:.92}
a:focus{outline:3px solid rgba(11,88,214,.35); outline-offset:2px; border-radius:6px}

.topbar{
  background:#111;
  color:#fff;
  font-size:11px;
}
.topbar .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:6px 16px;
  display:flex;
  flex-wrap:wrap;
  gap:8px 10px;
  align-items:center;
  justify-content:space-between;
}
.quicklinks-inline{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.quicklinks-inline a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
.quicklinks-inline a:hover{text-decoration:underline}
.brandbar{
  background:linear-gradient(90deg, var(--cou-red), #2b0000);
  color:#fff;
}
.brandbar .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:6px 16px;
  display:flex;
  align-items:center;
  gap:12px;
}
.brandbar img{
  width:44px; height:44px; border-radius:50%;
  background:#fff;
  padding:3px;
}
.brandbar .title{
  display:flex; flex-direction:column;
}
.brandbar .title strong{font-size:16px; letter-spacing:.2px}
.brandbar .title span{font-size:12px; opacity:.9}

.hero{
  position:relative;
  min-height:260px;
  background:#000;
  overflow:hidden;
}
.hero img{
  width:100%;
  height:360px;
  object-fit:contain;
  background:#fff;
  display:block;
}

.hero .overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.65));
}
.hero .content{
  position:absolute;
  left:0; right:0; bottom:0;
  max-width:var(--max);
  margin:0 auto;
  padding:18px 16px 20px;
  color:#fff;
}
.hero h1{
  margin:0;
  font-size:34px;
  letter-spacing:.4px;
}
.breadcrumbs{
  margin-top:6px;
  font-size:13px;
  opacity:.95;
}
.breadcrumbs a{color:#fff; text-decoration:underline}

.page{
  max-width:var(--max);
  margin:-36px auto 0;
  padding:0 16px 70px;
}
.layout{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:18px;
  align-items:start;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
}
.card h3{
  margin:0 0 10px;
  font-size:18px;
  letter-spacing:.2px;
}
.card .sub{
  margin:0 0 10px;
  color:var(--muted);
  font-size:13px;
}
.linklist{
  list-style:none;
  padding:0;
  margin:0;
}
.linklist li{
  padding:8px 2px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.linklist li:last-child{border-bottom:none}
.linklist a{
  display:inline-block;
  font-weight:700;
  text-decoration:underline;
}
.linklist .dash a::before{
  content:"- ";
  color:var(--link);
  font-weight:900;
}
.section{
  padding:16px 18px;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  margin-bottom:14px;
}
.section h2{
  text-align:center;
  margin:0 0 8px;
  font-size:22px;
}
.section h4{
  margin:10px 0 6px;
  font-size:13px;
  font-style:italic;
  font-weight:700;
  color:#000;
}
.section p{margin:0 0 10px}
.section .findout{
  margin-top:8px;
  font-size:14px;
}
.section .findout a{font-weight:700}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:10px 0 0;
}
.pill{
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-weight:800;
  font-size:13px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.pill i{margin-right:6px}

.inquiry form{
  display:grid;
  gap:10px;
}
.field label{
  display:block;
  font-weight:800;
  font-size:12px;
  margin-bottom:4px;
}
.field input,.field textarea,.field select{
  width:100%;
  border:1px solid rgba(0,0,0,.18);
  border-radius:10px;
  padding:10px 12px;
  font:inherit;
  background:#fff;
}
.field textarea{min-height:110px; resize:vertical}
.btn{
  border:none;
  cursor:pointer;
  border-radius:12px;
  padding:10px 12px;
  font-weight:900;
  background:var(--cou-red);
  color:#fff;
  box-shadow:0 12px 30px rgba(139,0,0,.22);
}
.btn:hover{background:var(--cou-red-2)}
.note{
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
}

.footer{
  background:#111;
  color:#fff;
}
.footer .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 16px 22px;
}
.footer .grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:center;
}
.footer .mini-links{
  font-size:12px;
  line-height:1.8;
  font-weight:700;
}
.footer .mini-links a{color:#fff; text-decoration:none}
.footer .mini-links a:hover{text-decoration:underline}
.footer .address{
  background:#e9e9e9;
  color:#111;
  border-radius:14px;
  padding:14px;
  text-align:center;
}
.footer .address img{width:64px; height:64px; border-radius:50%; background:#fff; padding:6px}
.footer .address h3{margin:6px 0 0}
.footer .address p{margin:6px 0 0; font-size:12px}
.footer .address .phone{color:#0a8a3a; font-weight:900}

.copyrow{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:12px;
  opacity:.95;
}
.copyrow a{color:#fff}

.chat-fab{
  position:fixed;
  right:16px;
  bottom:16px;
  width:52px;
  height:52px;
  border-radius:16px;
  border:none;
  cursor:pointer;
  background:var(--cou-red);
  color:#fff;
  font-weight:900;
  box-shadow:0 14px 40px rgba(0,0,0,.35);
}
.chat-panel{
  position:fixed;
  right:16px;
  bottom:78px;
  width:min(340px, calc(100vw - 32px));
  background:#fff;
  border-radius:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.28);
  overflow:hidden;
  display:none;
}
.chat-panel.open{display:block}
.chat-head{
  padding:12px 12px;
  background:linear-gradient(90deg, #5ab82f, #f2c423);
  color:#111;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.chat-head strong{font-size:13px}
.chat-head button{
  border:none;
  background:rgba(255,255,255,.75);
  border-radius:10px;
  padding:6px 10px;
  cursor:pointer;
  font-weight:900;
}
.chat-body{
  padding:10px 12px;
  font-size:12px;
  color:#333;
}
.chat-actions{
  display:flex;
  gap:8px;
  padding:10px 12px;
}
.chat-actions .btn{
  width:100%;
  background:#111;
  box-shadow:none;
}
.chat-actions .btn.secondary{
  background:var(--cou-red);
}
.chat-log{
  padding:10px 12px;
  height:140px;
  overflow:auto;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
  background:#fafafa;
}
.bubble{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:8px 10px;
  margin:8px 0;
}
.bubble.me{
  margin-left:auto;
  background:#fff7f7;
  border-color:rgba(139,0,0,.18);
}
.chat-input{
  display:flex;
  gap:8px;
  padding:10px 12px;
}
.chat-input input{
  flex:1;
  border:1px solid rgba(0,0,0,.16);
  border-radius:12px;
  padding:10px 12px;
  font:inherit;
}
.chat-input button{
  border:none;
  background:var(--cou-red);
  color:#fff;
  font-weight:900;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.active-link{
  background:rgba(11,88,214,.08);
  border-radius:10px;
  padding:8px 10px;
}
@media (max-width: 980px){
  .layout{grid-template-columns:1fr}
  .page{margin-top:-18px}
  .hero img{
  width:100%;
  height:360px;
  object-fit:contain;
  background:#fff;
  display:block;
}

}


/* Heading (template-like) */

.heading-wrap{background:#111}
.heading-black{background:#111; border-top:3px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18)}
.heading-black .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:6px 16px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap:10px;
  align-items:center;
}
.heading-left,.heading-right{display:flex; gap:10px; flex-wrap:nowrap; white-space:nowrap; overflow:hidden}
.heading-right{justify-content:flex-end}
.heading-link{color:#fff; text-decoration:none; font-weight:700; font-size:12px}

.heading-link.dd::after{content:'  v'; font-weight:900; opacity:.85}
.heading-link:hover{text-decoration:underline}
.heading-logo img{
  height:44px;
  width:auto;
  display:block;
  background:transparent;
  padding:0;
  border-radius:0;
}

.menu-red{background:var(--cou-red)}
.menu-row{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.menu-a, .menu-btn{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:12.5px;
  letter-spacing:.2px;
  background:transparent;
  border:none;
  padding:10px 10px;
  cursor:pointer;
}
.menu-a:hover,.menu-btn:hover{text-decoration:underline}
.menu-item{position:relative}
.caret{font-size:10px; margin-left:6px}
.mega{
  position:absolute;
  left:0;
  top:100%;
  z-index:50;
  width:min(980px, calc(100vw - 32px));
  background:#fff;
  border:1px solid rgba(0,0,0,.14);
  box-shadow:0 18px 60px rgba(0,0,0,.18);
  border-radius:12px;
  padding:16px 14px;
  display:none;
}
.mega-col{display:flex; flex-direction:column; gap:10px}
.mega{display:none}
.mega.open{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:18px}
.mega-link{
  color:#000;
  font-weight:800;
  text-decoration:none;
}
.mega-link::before{content:"- "; color:#000}
.mega-link:hover{text-decoration:underline}
@media (max-width:980px){
  .heading-black .inner{grid-template-columns:1fr; justify-items:center}
  .heading-right{justify-content:center}
  .heading-left{justify-content:center}
  .mega.open{grid-template-columns:1fr}
}

.extra-table{padding:0}
.biglink-table{
  list-style:none;
  margin:0;
  padding:0;
  border:3px solid rgba(0,0,0,.22);
  border-radius:10px;
  overflow:hidden;
}
.biglink-table li{
  border-bottom:1px solid rgba(0,0,0,.18);
  background:#fff;
}
.biglink-table li.alt{background:#efefef}
.biglink-table li:last-child{border-bottom:none}
.biglink-table a{
  display:block;
  padding:14px 12px;
  font-size:20px;
  font-weight:900;
  color:var(--link);
  text-decoration:underline;
  font-family: "Times New Roman", Georgia, serif;
}

.social-strip{
  background:#ededed;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
}
.social-strip .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  text-align:center;
}
.social-text{font-size:12px; color:#333; font-weight:700}
.social-icons{display:flex; gap:8px; align-items:center; justify-content:center}
.soc{
  width:28px; height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:12px;
}
.soc.facebook{background:#1877f2}
.soc.twitter{background:#1da1f2}
.soc.google{background:#ea4335}
.soc.linkedin{background:#0a66c2}
.soc.youtube{background:#ff0000}
.soc.instagram{background:#5851db}

.italic-lead{margin-top:2px}
.bullets{font-family:"Times New Roman", Georgia, serif; font-size:14px}

/* Downloads page banner (from attachment) */
.downloads-banner{
  margin-bottom:14px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.downloads-banner-top{
  background:var(--cou-red);
  color:#fff;
  display:flex;
  flex-wrap:wrap;
  gap:14px 22px;
  justify-content:center;
  padding:8px 10px;
  font-weight:900;
  font-family:"Times New Roman", Georgia, serif;
}
.downloads-cat{color:#fff; text-decoration:none; font-size:14px}
.downloads-cat:hover{text-decoration:underline}
.downloads-banner-title{
  background:linear-gradient(90deg, var(--cou-red), #b30f0f);
  color:#fff;
  text-align:center;
  font-weight:900;
  padding:8px 10px;
  font-size:14px;
}
.downloads-banner-main{
  background:var(--cou-red);
  color:#fff;
  text-align:center;
  font-weight:900;
  padding:12px 10px;
  font-size:28px;
  letter-spacing:.5px;
}
.downloads-text h2{font-size:20px}
.dl-list{margin:8px 0 0 20px}
.dl-list li{margin:6px 0}
.blue-bullets a{color:var(--link); text-decoration:underline; font-style:italic}
.downloads-text a{color:var(--link)}
.black-highlight{
  margin-top:12px;
  background:#000;
  color:#fff;
  padding:12px 12px;
  border-radius:12px;
  font-size:13px;
}

/* Downloadable Documents heading (no menu + no hero image) */
.downloads-heading{background:var(--cou-red);color:#fff}
.downloads-heading-topline{
  text-align:center;font-weight:900;font-family:"Times New Roman", Georgia, serif;
  padding:4px 10px 6px;font-size:13px
}
.downloads-heading-cats{
  padding:8px 12px;display:flex;flex-wrap:wrap;gap:6px 26px;justify-content:center;
  font-weight:900;font-family:"Times New Roman", Georgia, serif
}
.downloads-heading-title{
  background:linear-gradient(180deg,#7a0000,#5e0000);
  text-align:center;font-weight:900;padding:14px 10px;font-size:26px;letter-spacing:.6px
}
.downloads-only .layout{grid-template-columns:1fr !important}
.downloads-only.page{margin-top:18px}

/* Employment page hero (from provided design) */
.hero-employment img{
  height:360px;
  object-fit:cover;
}
.hero-employment .overlay{
  background:linear-gradient(90deg, rgba(255,255,255,.55), rgba(0,0,0,.35));
}
.hero-employment h1{
  letter-spacing:.5px;
  text-transform:uppercase;
}
.blue-link{color:var(--link); text-decoration:underline}

/* Employment page fixes (no menu, full-width content, clear hero) */
.hero-employment img{
  height:420px;
  object-fit:contain;
  background:#fff;
}
.employment-only .section{
  max-width:100%;
}

/* Policies page (no hero image; red/dark-red block like template) */
.policies-page{margin-top:18px}
.pol-hero{
  border-radius:0;
  overflow:hidden;
  box-shadow:var(--shadow);
  margin:0 0 14px 0;
}
.pol-hero-top{
  background:var(--cou-red);
  color:#fff;
  text-align:center;
  font-weight:900;
  padding:6px 10px;
  font-family:"Times New Roman", Georgia, serif;
  font-size:13px;
}
.pol-cou{font-weight:900}
.pol-hero-menu{
  background:var(--cou-red);
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px 18px;
  padding:8px 12px 10px;
}
.pol-sub{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-family:"Times New Roman", Georgia, serif;
  font-size:14px;
}
.pol-sub:hover{text-decoration:underline}
.pol-hero-title{
  background:linear-gradient(180deg,#7a0000,#5e0000);
  color:#fff;
  text-align:center;
  font-weight:900;
  padding:18px 12px;
  font-size:28px;
  letter-spacing:.6px;
}
.pol-content{max-width:var(--max); margin:0 auto; padding:0 16px 4px}
.blue-link{color:var(--link); text-decoration:underline}

.policy-card{
  background:#ffffff;
  border-radius:10px;
  padding:18px 20px;
  margin:14px 0;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.accessible-link{
 color:#0b63c9;
 text-decoration:underline;
 font-weight:600;
}

/* Student Success page */
.studentsuccess-page{max-width:var(--max); margin:0 auto; padding:18px 16px}
.ss-grid{display:grid; grid-template-columns: 1.2fr 1fr; gap:22px; align-items:stretch; margin-bottom:18px}
.ss-img img{width:100%; height:auto; display:block; border-radius:8px; box-shadow:var(--shadow)}
.ss-box{background:#efefef; border-radius:10px; padding:16px 18px; box-shadow:var(--shadow)}
.ss-box h2{margin:2px 0 10px; font-size:20px}
.ss-box p{margin:0 0 10px; line-height:1.55}
.ss-quick{background:#fff; border-radius:10px; padding:14px 16px; box-shadow:var(--shadow)}
.ss-quick-title{font-size:30px; font-weight:900; color:var(--link); margin:0 0 10px; font-family:"Times New Roman", Georgia, serif}
.ss-quick-list{list-style:none; padding:0; margin:0}
.ss-quick-list li{padding:8px 0; border-top:1px solid #eee}
.ss-quick-list li:first-child{border-top:none}
.ss-list{margin:10px 0 0 18px}
.ss-list li{margin:6px 0; line-height:1.5}
.ss-wide{margin:8px 0 18px}
.ss-bottom{grid-template-columns: 1fr 1fr}
.ss-cta{margin-top:10px; text-align:center}
.ss-cta-title{font-weight:900; font-size:16px; margin-bottom:10px}
.ss-cta-links{display:flex; justify-content:center; gap:26px; flex-wrap:wrap}
@media (max-width: 900px){
  .ss-grid{grid-template-columns:1fr}
  .ss-bottom{grid-template-columns:1fr}
}

/* Student Success exact template styling */
.studentsuccess-page{max-width:var(--max); margin:0 auto; padding:0 16px 18px}
.ss-section{padding:16px 0}
.ss-photo img{width:100%; height:auto; display:block; border-radius:8px; box-shadow:var(--shadow)}
.ss-hero-banner{position:relative; margin:0 auto; max-width:var(--max); padding:0; background:#fff}
.ss-hero-img{width:100%; height:auto; display:block}
.ss-hero-title{
  position:absolute;
  left:18px;
  bottom:14px;
  font-weight:900;
  font-size:36px;
  letter-spacing:1px;
  color:#ffffff;
  text-shadow:0 2px 10px rgba(0,0,0,0.45);
}
.ss-top-grid{display:grid; grid-template-columns: 1.1fr 1fr; gap:18px; align-items:stretch}
.ss-textbox{background:#efefef; border-radius:12px; padding:18px 20px; box-shadow:var(--shadow)}
.ss-textbox h2{margin:0 0 10px; font-size:20px}
.ss-textbox p{margin:0 0 10px; line-height:1.55}
.ss-mid-grid{display:grid; grid-template-columns: 1fr 1.1fr; gap:18px; align-items:start}
.ss-quick{background:#fff; border-radius:12px; padding:14px 16px; box-shadow:var(--shadow)}
.ss-quick-title{font-size:32px; font-weight:900; color:var(--link); margin:0 0 10px; font-family:"Times New Roman", Georgia, serif}
.ss-quick-list{list-style:none; padding:0; margin:0}
.ss-quick-list li{padding:8px 0; border-top:1px solid #eee}
.ss-quick-list li:first-child{border-top:none}
.ss-list{margin:10px 0 0 18px}
.ss-list li{margin:6px 0; line-height:1.5}
.ss-bottom-grid{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
@media (max-width: 900px){
  .ss-top-grid,.ss-mid-grid,.ss-bottom-grid{grid-template-columns:1fr}
  .ss-hero-title{font-size:30px}
}

/* Teaching & Learning Plan 2025–2030 */
.tlp-page{max-width:var(--max); margin:0 auto; padding:0 16px 18px}
.tlp-header{margin:0 auto 14px}
.tlp-band{color:#fff}
.tlp-band-inner{max-width:var(--max); margin:0 auto; padding:10px 14px}
.tlp-band-top{background:#5a0000}
.tlp-band-mid{background:#b30000}
.tlp-band-bottom{background:#5a0000}
.tlp-band-title{font-weight:800; text-transform:uppercase; font-size:12px; letter-spacing:.4px}
.tlp-submenu{display:grid; grid-template-columns: repeat(3, 1fr); gap:6px 18px; align-items:center}
.tlp-sub-link{display:inline-block; color:#fff; text-decoration:none; font-weight:700; font-size:12px; white-space:nowrap}
.tlp-sub-link:hover{text-decoration:underline}
.tlp-main-title{font-weight:900; font-size:22px; text-align:center; letter-spacing:.6px}
.tlp-body{padding-top:10px}
.tlp-grid{display:grid; grid-template-columns: 300px 1fr 360px; gap:18px; align-items:start}
.tlp-quick{background:#fff; border-radius:10px; box-shadow:var(--shadow); overflow:hidden}
.tlp-quick-title{padding:12px 14px; font-weight:900; font-size:28px; color:var(--link); font-family:"Times New Roman", Georgia, serif}
.tlp-quick-list{list-style:none; margin:0; padding:0 14px 12px}
.tlp-quick-list li{padding:8px 0; border-top:1px solid #eee}
.tlp-quick-list li:first-child{border-top:none}
.tlp-photo img{width:100%; height:auto; display:block; border-radius:10px; box-shadow:var(--shadow)}
.muted-note{background:#fff7d6; border:1px solid #ffe38a; padding:10px 12px; border-radius:10px}
@media (max-width: 1024px){
  .tlp-submenu{grid-template-columns:1fr 1fr}
  .tlp-grid{grid-template-columns:1fr}
}

/* TLP content extras */
.tlp-pillars{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:10px}
.tlp-pillar{background:#fff; border-radius:10px; box-shadow:var(--shadow); padding:12px 14px}
.tlp-pillar-title{font-weight:900; margin:0 0 6px}
.tlp-pillar p{margin:0 0 8px; line-height:1.5}
.tlp-table{width:100%; border-collapse:collapse; background:#fff; border-radius:10px; overflow:hidden; box-shadow:var(--shadow)}
.tlp-table th{background:#f3f3f3; text-align:left; padding:10px 12px; font-weight:900}
.tlp-table td{padding:10px 12px; border-top:1px solid #eee; vertical-align:top}
.table-wrap{overflow:auto; border-radius:10px}
@media (max-width: 900px){ .tlp-pillars{grid-template-columns:1fr} }

/* TLP: remove global header on this page and widen content */
.tlp-grid{grid-template-columns: 300px 1fr !important;}
.tlp-inline-photo{width:100%; height:auto; display:block; border-radius:10px; box-shadow:var(--shadow); margin-bottom:14px;}
@media (max-width: 1024px){
  .tlp-grid{grid-template-columns:1fr !important;}
}


/* Updated black header (Related Links + tools) */
.heading-black-updated .inner{display:block}
.related-row{display:flex; align-items:center; gap:14px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,.12)}
.related-label{font-weight:800; font-size:12px; opacity:.9; white-space:nowrap}
.related-links{flex:1; font-size:12px; line-height:1.4; color:#fff; opacity:.92}
.related-links a{color:#fff; text-decoration:none}
.related-links a:hover{text-decoration:underline}
.top-right-tools{display:flex; gap:10px; align-items:center}
.tool-select{
  background:#111; color:#fff; border:1px solid rgba(255,255,255,.22);
  padding:6px 10px; border-radius:6px; font-size:12px;
}
.subnav-row{display:flex; align-items:center; justify-content:space-between; padding:10px 0}
.subnav-left,.subnav-right{display:flex; gap:14px; flex-wrap:wrap}
.heading-logo-large img{height:64px; width:auto}
@media (max-width: 980px){
  .top-right-tools{width:100%; justify-content:flex-start; margin-top:8px}
  .related-row{flex-wrap:wrap}
  .subnav-row{flex-wrap:wrap; justify-content:center; gap:10px}
  .subnav-left,.subnav-right{justify-content:center}
}

/* Inquiry sticky card */
.inquiry-sticky{
  position:fixed; right:18px; top:220px; z-index:60;
  width:260px;
}
.inquiry-card{
  background:#fff; border-radius:10px; overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  border:1px solid rgba(0,0,0,.08);
}
.inquiry-head{
  background:var(--cou-darkred, #7a0000);
  color:#fff; text-align:center; padding:10px 12px; font-weight:900;
}
.inquiry-actions{display:flex; gap:10px; padding:12px}
.btn{border:none; padding:10px 10px; border-radius:6px; cursor:pointer; font-weight:800; width:50%}
.btn-primary{background:var(--cou-darkred, #7a0000); color:#fff}
.btn-dark{background:#111; color:#fff}
.inquiry-small{display:grid; grid-template-columns:1fr 1fr; gap:8px; padding:0 12px 12px}
.inquiry-sub{font-size:11px; color:#444}
@media (max-width: 1200px){
  .inquiry-sticky{display:none;}
}

/* Welcome modal */
.modal-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.6);
  display:none; align-items:center; justify-content:center; z-index:80;
}
.modal-overlay.show{display:flex;}
.modal-card{
  width:min(560px, 92vw);
  background:#f2f2f2;
  border-radius:14px;
  padding:18px 18px 22px;
  position:relative;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
  border:4px solid var(--cou-darkred, #7a0000);
}
.modal-close{
  position:absolute; right:12px; top:10px;
  width:34px; height:34px; border-radius:8px;
  border:none; background:#ddd; font-size:22px; cursor:pointer;
}
.modal-title{margin:0 0 6px; text-align:center; color:var(--cou-darkred, #7a0000); font-weight:900}
.modal-sub{margin:0 0 12px; text-align:center; color:#111; font-weight:700}
.discounts{background:#fff; border-radius:10px; padding:12px; margin:0 0 14px; border:1px solid rgba(0,0,0,.08)}
.discounts div{padding:6px 0; border-top:1px solid #eee}
.discounts div:first-child{border-top:none}
.welcome-form input, .welcome-form select{
  width:100%; padding:10px 12px; border-radius:10px;
  border:1px solid rgba(0,0,0,.18); background:#fff; margin:8px 0;
  font-size:14px;
}
.phone-row{display:flex; gap:10px; align-items:center}
.phone-code{width:120px}
.welcome-submit{
  width:100%; margin-top:10px; padding:12px 14px;
  border:none; border-radius:14px; cursor:pointer;
  background:var(--cou-darkred, #7a0000); color:#fff; font-weight:900;
}


/* FORCE header sub-menus on one line */
.subnav-left,.subnav-right{flex-wrap:nowrap !important; white-space:nowrap; overflow:auto; scrollbar-width:thin}
.subnav-left::-webkit-scrollbar,.subnav-right::-webkit-scrollbar{height:8px}
.subnav-left::-webkit-scrollbar-thumb,.subnav-right::-webkit-scrollbar-thumb{background:var(--cou-darkred,#7a0000); border-radius:10px}
.subnav-left::-webkit-scrollbar-track,.subnav-right::-webkit-scrollbar-track{background:rgba(255,255,255,.08)}

/* Related links single line */
.related-links{white-space:nowrap; overflow:auto; scrollbar-width:thin}
.related-links::-webkit-scrollbar{height:8px}
.related-links::-webkit-scrollbar-thumb{background:var(--cou-darkred,#7a0000); border-radius:10px}
.related-links::-webkit-scrollbar-track{background:rgba(255,255,255,.08)}

/* Country custom dropdown */
.country-picker{position:relative}
.tool-button{display:flex; align-items:center; gap:10px}
.country-panel{
  position:absolute; right:0; top:38px;
  width:280px; max-height:360px;
  background:#111; border:1px solid rgba(255,255,255,.22);
  border-radius:10px; overflow:hidden;
  display:none; z-index:90;
}
.country-panel.show{display:block}
.country-search-wrap{padding:10px; border-bottom:1px solid rgba(255,255,255,.12); background:#0c0c0c}
.country-search{
  width:100%; padding:9px 10px; border-radius:8px;
  border:1px solid rgba(255,255,255,.18);
  background:#fff; color:#111; font-size:13px;
}
.country-list{
  max-height:300px; overflow:auto; padding:6px 0;
  scrollbar-width:thin;
}
.country-list::-webkit-scrollbar{width:10px}
.country-list::-webkit-scrollbar-thumb{background:var(--cou-darkred,#7a0000); border-radius:10px}
.country-list::-webkit-scrollbar-track{background:rgba(255,255,255,.08)}
.country-item{
  display:flex; align-items:center; gap:10px;
  padding:8px 12px; cursor:pointer; color:#fff; font-size:13px;
}
.country-item:hover{background:rgba(255,255,255,.08)}
.country-flag{width:22px; text-align:center}
.country-name{flex:1}



/* Inquiry form (match sample design) */
.inquiry-flyout{
  position:fixed;
  right:18px;
  top:200px;
  z-index:60;
}
.inquiry-tab{
  position:absolute;
  left:-95px;
  top:0;
  width:95px;
  height:46px;
  background:var(--cou-darkred,#7a0000);
  color:#fff;
  border:2px solid #000;
  border-right:none;
  border-radius:8px 0 0 8px;
  font-weight:900;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,0,0,.25);
}
.inquiry-panel{display:block;}
.inquiry-panel.hidden{display:none;}

.inquiry-card{
  width:340px;
  border:2px solid #000;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 26px rgba(0,0,0,.25);
}
.inquiry-head{
  background:var(--cou-darkred,#7a0000);
  color:#fff;
  text-align:center;
  padding:14px 10px;
  font-weight:900;
  font-size:26px;
  line-height:1.1;
}
.inquiry-body{padding:14px 16px 12px}
.inquiry-actions{
  display:flex;
  justify-content:center;
  gap:22px;
  margin:4px 0 8px;
}
.inquiry-btn{
  border:2px solid #000;
  border-radius:10px;
  padding:10px 18px;
  font-weight:900;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 3px 0 rgba(0,0,0,1);
}
.inquiry-btn-red{background:var(--cou-darkred,#7a0000); color:#fff;}
.inquiry-btn-black{background:#111; color:#fff;}
.inquiry-notes{
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-size:12px;
  font-weight:700;
  color:#333;
  margin-top:6px;
}
.inquiry-notes div{white-space:nowrap;}
@media (max-width: 420px){
  .inquiry-card{width:300px;}
  .inquiry-actions{gap:14px;}
  .inquiry-btn{font-size:18px; padding:10px 14px;}
}


/* Inquiry sizing + chat-like behavior */
.inquiry-head{font-size:18px !important; padding:10px 12px !important;}
.inquiry-actions .btn{font-size:14px !important; padding:10px 10px !important;}
.inquiry-sub{font-size:11px !important;}
.inquiry-card{border-radius:10px !important;}
.inquiry-tab{
  writing-mode:horizontal-tb !important;
  transform:none !important;
  border-radius:10px 10px 0 0 !important;
  padding:8px 14px !important;
  font-size:14px !important;
  text-decoration:underline;
}
.inquiry-flyout{
  flex-direction:column !important;
  right:18px !important;
  top:210px !important;
}
.inquiry-panel{margin-top:0 !important;}
.inquiry-panel.hidden{display:none !important;}
.inquiry-tab.hidden{display:none !important;}
.inquiry-close{
  float:right;
  border:none;
  background:transparent;
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  font-weight:900;
}


/* Flag images (reliable across devices) */
.country-flag{display:flex; align-items:center; justify-content:center; width:22px;}
.country-flag-img{width:18px; height:12px; border-radius:2px; box-shadow:0 0 0 1px rgba(255,255,255,.18);}
#countryBtnLabel .country-flag-mini{width:18px; height:12px; border-radius:2px; vertical-align:-2px; margin-right:6px; box-shadow:0 0 0 1px rgba(255,255,255,.18);}


/* --- Collaboration review fixes (imported) --- */
/* Make collaboration hero shorter so the dark-red menu remains visible without scrolling */
.collaboration-page .ss-hero-img{height:240px; object-fit:cover;}
/* Collaboration hero positioning */
.collaboration-hero{position:relative; z-index:1; margin-top:0;}
/* Collaboration page: prevent negative main offset from hiding the top dark-red menu */
.page.collaboration-page{margin-top:0 !important;}
@media (max-width:980px){
  .collaboration-page .ss-hero-img{height:240px; object-fit:cover;}
.collaboration-page .ss-hero-title{
  position:static;
  left:auto;
  bottom:auto;
  font-weight:900;
  font-size:36px;
  letter-spacing:1px;
  color:#ffffff;
  text-shadow:0 2px 10px rgba(0,0,0,0.45);
}
.hero-breadcrumb .crumb-link{color:#ffffff; text-decoration:none; font-weight:800;}
.hero-breadcrumb .crumb-link:hover{text-decoration:underline;}
.hero-breadcrumb .crumb-sep{margin:0 8px; color:#ffffff;}
.hero-breadcrumb .crumb-current{font-weight:900;}
.collaboration-hero .ss-hero-center{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  width:min(900px, 92%);
}
.hero-breadcrumb{
  position:absolute;
  left:24px;
  bottom:18px;
  color:#000;
  font-size:13px;
  font-weight:800;
  background:rgba(255,255,255,.72);
  padding:6px 10px;
  border-radius:6px;
}
.hero-breadcrumb .crumb-link{color:#000; text-decoration:none; font-weight:800;}
.hero-breadcrumb .crumb-sep{margin:0 6px; color:#000;}
.hero-breadcrumb .crumb-current{color:#000; font-weight:900;}
@media (max-width:980px){
  .collaboration-page .ss-hero-img{height:220px;}
.hero-breadcrumb{left:14px; bottom:12px; font-size:12px;}


/* --- Collaboration hero: keep title/subtitle centered (override global ss-hero-title absolute positioning) --- */
.collaboration-hero .ss-hero-title{
  position:static;
  left:auto;
  bottom:auto;
  margin:0;
  font-weight:900;
  font-size:36px;
  letter-spacing:1px;
  color:#ffffff;
  text-shadow:0 2px 10px rgba(0,0,0,0.45);
}
.collaboration-hero .ss-hero-sub{
  margin-top:10px;
  font-weight:800;
  font-size:16px;
  color:#ffffff;
  text-shadow:0 2px 10px rgba(0,0,0,0.45);
}
/* Breadcrumb inside hero must be black (including links) */
.hero-breadcrumb .crumb-link,
.hero-breadcrumb .crumb-current,
.hero-breadcrumb .crumb-sep{color:#000 !important;}


/* --- Collaboration page final lock: centered hero text (no interference with global .ss-hero-title) --- */
.collaboration-hero .collab-hero-title{
  position:static;
  margin:0;
  font-weight:900;
  font-size:36px;
  letter-spacing:1px;
  color:#ffffff;
  text-shadow:0 2px 10px rgba(0,0,0,0.45);
}
.collaboration-hero .collab-hero-sub{
  margin-top:10px;
  font-weight:800;
  font-size:16px;
  color:#ffffff;
  text-shadow:0 2px 10px rgba(0,0,0,0.45);
}

/* FINAL: force centered hero text on Collaboration page ONLY */
.collaboration-hero .ss-hero-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
