/* ============================================================
   Bharat Sterile Pvt. Ltd. - Main Stylesheet
   Version: 2026
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0d2d5a;
  --primary-dark: #081e3f;
  --secondary: #1565c0;
  --accent: #00acc1;
  --accent-dark: #00838f;
  --gold: #f4a623;
  --white: #ffffff;
  --light: #f0f4f8;
  --light-alt: #e8eef5;
  --text: #2c3e50;
  --text-muted: #6b7a90;
  --border: #dde4ef;
  --success: #2ecc71;
  --shadow-sm: 0 2px 12px rgba(13,45,90,0.08);
  --shadow-md: 0 8px 32px rgba(13,45,90,0.12);
  --shadow-lg: 0 20px 60px rgba(13,45,90,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font: 'Poppins', sans-serif;
  --section-pad: 90px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font); }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; color: var(--primary); font-weight: 700; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* ---------- Top Announcement Bar ---------- */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left span { margin-right: 20px; }
.top-bar-left span i { color: var(--accent); margin-right: 5px; }
.top-bar-right .social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white);
  font-size: 0.7rem; margin-left: 5px; transition: var(--transition);
}
.top-bar-right .social-icons a:hover { background: var(--accent); }
.top-bar-right .lang-btn {
  background: var(--accent); color: var(--white);
  border: none; border-radius: 4px; padding: 3px 10px;
  font-size: 0.72rem; font-family: var(--font); cursor: pointer;
  margin-left: 12px; transition: var(--transition);
}
.top-bar-right .lang-btn:hover { background: var(--gold); }

/* ---------- Navbar ---------- */
.navbar-main {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: sticky;
  top: 0; z-index: 1050;
  transition: var(--transition);
}
.navbar-main.scrolled {
  box-shadow: 0 4px 24px rgba(13,45,90,0.15);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
}
.navbar-brand img { height: 64px; width: auto; }
.nav-link {
  font-size: 0.85rem; font-weight: 600;
  color: var(--primary) !important;
  padding: 28px 12px !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 3px; background: var(--accent); border-radius: 2px 2px 0 0;
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { left: 12px; right: 12px; }
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: none; }
.hamburger { width: 24px; }
.hamburger span {
  display: block; height: 2px; background: var(--primary);
  margin: 5px 0; border-radius: 2px; transition: var(--transition);
}
/* Dropdown */
.dropdown-menu {
  border: none; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px 0;
  min-width: 230px; margin-top: 0;
  animation: dropDown 0.25s ease;
}
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  font-size: 0.82rem; font-weight: 500; color: var(--text);
  padding: 9px 20px; transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-item:hover {
  color: var(--accent); background: var(--light);
  border-left-color: var(--accent); padding-left: 24px;
}
.dropdown-toggle::after { margin-left: 6px; }
.navbar-cta {
  background: var(--accent); color: var(--white) !important;
  border-radius: 6px; padding: 10px 20px !important;
  font-size: 0.82rem !important; margin-left: 8px;
}
.navbar-cta::after { display: none; }
.navbar-cta:hover { background: var(--primary) !important; color: var(--white) !important; }

/* ---------- Page Hero Banner ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--primary);
  padding: 100px 0 70px;
  margin-top: 0;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-pharmaceutical-manufacturing.webp') center/cover no-repeat;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0;
}

/* ---------- Sections ---------- */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; margin-bottom: 12px;
  position: relative;
}
.section-subtitle {
  color: var(--text-muted); font-size: 1.0rem;
  max-width: 600px; line-height: 1.8;
}
.section-label {
  display: inline-block; background: rgba(0,172,193,0.1);
  color: var(--accent); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 14px; border-radius: 50px;
  border: 1px solid rgba(0,172,193,0.25);
  margin-bottom: 12px;
}
.divider {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.divider span {
  height: 3px; background: var(--accent); border-radius: 2px;
}
.divider span:first-child { width: 40px; }
.divider span:last-child { width: 16px; }

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: var(--primary); color: var(--white);
  border: 2px solid var(--primary); border-radius: 8px;
  padding: 12px 30px; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--accent); border-color: var(--accent);
  color: var(--white); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,172,193,0.35);
}
.btn-accent-custom {
  background: var(--accent); color: var(--white);
  border: 2px solid var(--accent); border-radius: 8px;
  padding: 12px 30px; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-accent-custom:hover {
  background: var(--primary); border-color: var(--primary);
  color: var(--white); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,45,90,0.3);
}
.btn-outline-custom {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary); border-radius: 8px;
  padding: 11px 28px; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: var(--primary); color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6); border-radius: 8px;
  padding: 11px 28px; font-size: 0.88rem; font-weight: 600;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

/* ---------- Cards ---------- */
.card-custom {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 30px; transition: var(--transition); height: 100%;
}
.card-custom:hover {
  box-shadow: var(--shadow-md); transform: translateY(-5px);
  border-color: rgba(0,172,193,0.3);
}
.card-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(0,172,193,0.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent); margin-bottom: 18px;
  transition: var(--transition);
}
.card-custom:hover .card-icon { background: var(--accent); color: var(--white); }
.card-glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius); padding: 30px;
}

/* ---------- Hero / Home Slider ---------- */
.hero-swiper { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 600px; position: relative;
  display: flex; align-items: center;
  background: var(--primary);
}
@media (min-width: 992px) { .hero-slide { min-height: 680px; } }
/* hero-slide-overlay div handles the gradient — no ::before needed */
.hero-slide-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,45,90,0.82) 0%, rgba(21,101,192,0.45) 70%, rgba(0,172,193,0.15) 100%);
}
.hero-molecule-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2; pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
}
.hero-label {
  display: inline-block; background: var(--accent);
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 20px;
}
.hero-content h1, .hero-content h2 {
  color: var(--white); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 18px;
}
.hero-content h1 span, .hero-content h2 span { color: var(--accent); }
.hero-content p {
  color: rgba(255,255,255,0.85); font-size: 1.0rem; margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-swiper-btns {
  position: absolute; bottom: 30px; right: 30px; z-index: 10;
  display: flex; gap: 10px;
}
.hero-swiper-btns button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
  color: var(--white); font-size: 0.9rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.hero-swiper-btns button:hover { background: var(--accent); border-color: var(--accent); }
.swiper-pagination-bullet { background: rgba(255,255,255,0.6) !important; width: 8px !important; height: 8px !important; }
.swiper-pagination-bullet-active { background: var(--accent) !important; width: 24px !important; border-radius: 4px !important; }

/* ---------- Stats / Footprints ---------- */
.stats-bar {
  background: var(--primary); padding: 30px 0;
}
.stat-item { text-align: center; padding: 10px 20px; }
.stat-number {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800;
  color: var(--accent); display: block; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px;
}
.stat-divider {
  width: 1px; background: rgba(255,255,255,0.15); margin: 10px 0;
}

/* ---------- About Section (Homepage) ---------- */
.about-home-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-home-img::after {
  content: ''; position: absolute;
  bottom: -15px; right: -15px; width: 70%;
  height: 70%; border: 4px solid var(--accent);
  border-radius: var(--radius-lg); z-index: -1;
}
.exp-badge {
  position: absolute; top: 20px; left: -20px;
  background: var(--gold); color: var(--primary);
  border-radius: var(--radius); padding: 16px 20px;
  text-align: center; box-shadow: var(--shadow-md);
  font-weight: 800; z-index: 2;
}
.exp-badge span { display: block; }
.exp-badge .big { font-size: 2rem; line-height: 1; }
.exp-badge .small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Feature Cards ---------- */
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; gap: 16px; align-items: flex-start;
}
.feature-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-3px);
  border-color: rgba(0,172,193,0.4);
}
.feature-card .icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: rgba(0,172,193,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--accent); transition: var(--transition);
}
.feature-card:hover .icon { background: var(--accent); color: var(--white); }
.feature-card h5 { font-size: 0.92rem; margin-bottom: 4px; }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ---------- Facility Swiper ---------- */
.facility-swiper .swiper-slide { padding-bottom: 10px; }
.facility-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); position: relative;
  height: 340px;
}
.facility-card img { width: 100%; height: 100%; object-fit: cover; }
.facility-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,45,90,0.95), transparent);
  padding: 30px 20px 20px; color: var(--white);
}
.facility-card-overlay h4 { color: var(--white); font-size: 1rem; }
.facility-card-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin: 0; }

/* ---------- Why Choose Us ---------- */
.why-item {
  display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.why-icon {
  flex-shrink: 0; width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: var(--white);
  box-shadow: 0 6px 16px rgba(0,172,193,0.35);
}
.why-item h5 { margin-bottom: 4px; font-size: 0.95rem; }
.why-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ---------- Quality / Certifications ---------- */
.cert-badge {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 20px 16px;
  text-align: center; transition: var(--transition);
  height: 100%;
}
.cert-badge:hover {
  border-color: var(--accent); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cert-badge .cert-icon {
  font-size: 2rem; color: var(--accent); margin-bottom: 10px; display: block;
}
.cert-badge h6 { font-size: 0.82rem; margin: 0; color: var(--primary); font-weight: 700; }

/* ---------- Blog Cards ---------- */
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition); height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--primary); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card-img img[src$=".svg"] { object-fit: cover; object-position: center; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block; background: rgba(0,172,193,0.1);
  color: var(--accent); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 12px; border-radius: 50px; margin-bottom: 12px;
}
.blog-card-body h5 { font-size: 1rem; margin-bottom: 10px; }
.blog-card-body p { font-size: 0.83rem; color: var(--text-muted); }
.blog-meta { font-size: 0.75rem; color: var(--text-muted); }
.blog-meta i { color: var(--accent); margin-right: 4px; }
.read-more {
  color: var(--accent); font-size: 0.83rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
  transition: var(--transition);
}
.read-more:hover { color: var(--primary); gap: 10px; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: var(--section-pad) 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/research-development-laboratory.webp') center/cover no-repeat;
  opacity: 0.06;
}

/* ---------- Contact Form ---------- */
.form-section { background: var(--light); padding: var(--section-pad) 0; }
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-label {
  font-size: 0.83rem; font-weight: 600; color: var(--primary);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 11px 16px; font-size: 0.88rem; font-family: var(--font);
  color: var(--text); transition: var(--transition);
  background: var(--light);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,172,193,0.12);
  background: var(--white); outline: none;
}
.form-control::placeholder { color: #aab3c0; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }

/* ---------- Products Page ---------- */
.filter-tabs { margin-bottom: 30px; }
.filter-btn {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 8px; padding: 8px 20px;
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: var(--transition); font-family: var(--font);
  margin: 4px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: var(--white);
}
.filter-btn.active-status {
  background: var(--primary); border-color: var(--primary); color: var(--white);
}
.products-table { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.products-table table { margin: 0; }
.products-table thead th {
  background: var(--primary); color: var(--white);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 14px 16px; border: none;
}
.products-table tbody tr { transition: var(--transition); }
.products-table tbody tr:hover { background: rgba(0,172,193,0.06); }
.products-table tbody td { font-size: 0.83rem; padding: 12px 16px; vertical-align: middle; border-color: var(--border); }
.status-badge {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
.status-current { background: rgba(46,204,113,0.12); color: #1a7a42; }
.status-dev { background: rgba(244,166,35,0.15); color: #a0700a; }
.status-plan { background: rgba(21,101,192,0.12); color: var(--secondary); }
.cat-badge {
  display: inline-block; padding: 2px 10px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; background: rgba(13,45,90,0.08); color: var(--primary);
}

/* ---------- Facility Page ---------- */
.facility-overview-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); height: 100%;
  transition: var(--transition); border: 1px solid var(--border);
}
.facility-overview-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.facility-overview-card .card-img { height: 200px; overflow: hidden; }
.facility-overview-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.facility-overview-card:hover .card-img img { transform: scale(1.06); }
.facility-overview-card .card-body { padding: 24px; }
.facility-overview-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.facility-overview-card p { font-size: 0.83rem; color: var(--text-muted); }
.facility-story-image { width: 100%; min-height: 430px; object-fit: cover; }
.facility-detail-card {
  height: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.facility-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.facility-detail-card > img { width: 100%; height: 280px; object-fit: cover; }
.facility-detail-body { position: relative; padding: 32px; }
.facility-detail-icon {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px;
  background: var(--accent); color: #fff; font-size: 1.2rem; margin-top: -60px; margin-bottom: 22px;
  border: 5px solid #fff; box-sizing: content-box;
}
.facility-detail-body h3 { font-size: 1.15rem; }
.facility-detail-body p { color: var(--text-muted); font-size: .86rem; }
.facility-detail-body a { color: var(--accent-dark); font-size: .82rem; font-weight: 700; }
.facility-focus-panel {
  height: 100%; position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 38px;
  background: linear-gradient(135deg, #eaf4fb, #fff); border: 1px solid #cfe3f1; box-shadow: var(--shadow-sm);
}
.facility-focus-panel--green { background: linear-gradient(135deg, #e9f7f0, #fff); border-color: #cce9d9; }
.facility-focus-icon {
  position: absolute; right: 26px; top: 24px; color: rgba(0,172,193,.13); font-size: 5rem;
}
.facility-focus-panel h2 { font-size: 1.4rem; max-width: 430px; }
.facility-focus-panel p { position: relative; color: var(--text-muted); font-size: .87rem; }
.facility-compliance-section { position: relative; overflow: hidden; }
.compliance-panel {
  height: 100%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); padding: 34px; backdrop-filter: blur(5px);
}
.compliance-panel > i { color: var(--accent); font-size: 2rem; margin-bottom: 18px; }
.compliance-panel h3 { color: #fff; font-size: 1.2rem; }
.compliance-panel p { color: rgba(255,255,255,.72); font-size: .86rem; }
.facility-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 16px; }
.facility-gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.facility-gallery-item--wide { grid-column: span 2; }
.facility-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.facility-gallery-item span {
  position: absolute; inset: auto 0 0; padding: 35px 18px 16px; color: #fff; font-size: .85rem; font-weight: 700;
  background: linear-gradient(transparent, rgba(8,30,63,.9));
}
.facility-gallery-item:hover img { transform: scale(1.06); }

/* ---------- Checklist Items ---------- */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; margin-bottom: 12px; color: var(--text);
}
.check-list li i { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.check-list.white li { color: rgba(255,255,255,0.9); }
.check-list.white li i { color: var(--accent); }

/* ---------- Team ---------- */
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
  text-align: center; padding: 0 0 24px;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.team-img-wrap {
  height: 220px; overflow: hidden; background: var(--light-alt);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-img-placeholder {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center;
  justify-content: center; font-size: 2rem; color: var(--white);
}
.team-card h5 { font-size: 1rem; margin: 18px 0 5px; padding: 0 20px; }
.team-card .role { font-size: 0.8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.team-social { margin-top: 14px; display: flex; gap: 8px; justify-content: center; }
.team-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--light); display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; color: var(--primary);
  transition: var(--transition);
}
.team-social a:hover { background: var(--accent); color: var(--white); }

/* ---------- Info Card ---------- */
.info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); height: 100%;
}
.info-card .info-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(0,172,193,0.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent); margin-bottom: 16px;
}
.info-card h5 { font-size: 0.95rem; margin-bottom: 8px; }
.info-card p, .info-card a { font-size: 0.85rem; color: var(--text-muted); }
.info-card a:hover { color: var(--accent); }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3; gap: 14px; }
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }
.gallery-item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,45,90,0.6); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- Map Embed ---------- */
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 300px; border: none; display: block; }

/* ---------- Alert / Success ---------- */
.alert-success-custom {
  background: rgba(46,204,113,0.1); border: 1.5px solid rgba(46,204,113,0.4);
  color: #1a7a42; border-radius: var(--radius); padding: 14px 20px;
  font-size: 0.88rem; display: flex; align-items: center; gap: 10px;
}
.alert-error-custom {
  background: rgba(220,53,69,0.08); border: 1.5px solid rgba(220,53,69,0.35);
  color: #a52834; border-radius: var(--radius); padding: 14px 20px;
  font-size: 0.88rem; display: flex; align-items: center; gap: 10px;
}
.website-field {
  position: absolute !important; left: -10000px !important; top: auto !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}

/* ---------- Legal Pages ---------- */
.legal-hero::before { background-image: url('../images/gmp-compliance-audit.webp'); }
.legal-section { background: linear-gradient(180deg, #fff, var(--light)); }
.legal-nav {
  position: sticky; top: 110px; background: var(--primary); color: rgba(255,255,255,.78);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md);
}
.legal-nav h2 { color: #fff; font-size: 1.3rem; margin: 8px 0 12px; }
.legal-nav p { font-size: .84rem; }
.legal-nav nav { display: grid; gap: 4px; margin-top: 22px; }
.legal-nav nav a {
  color: rgba(255,255,255,.78); font-size: .8rem; padding: 9px 12px;
  border-left: 2px solid rgba(255,255,255,.15);
}
.legal-nav nav a:hover { color: #fff; border-left-color: var(--accent); background: rgba(255,255,255,.06); }
.legal-content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow-sm); }
.legal-content section { scroll-margin-top: 110px; padding: 0 0 26px; margin: 0 0 28px; border-bottom: 1px solid var(--border); }
.legal-content section:last-of-type { border-bottom: 0; margin-bottom: 0; }
.legal-content h2 { font-size: 1.18rem; margin-bottom: 12px; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: .9rem; line-height: 1.85; }
.legal-content a { color: var(--accent-dark); font-weight: 600; }
.legal-intro {
  display: flex; gap: 18px; background: rgba(0,172,193,.08); border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 20px; margin-bottom: 34px;
}
.legal-intro i { color: var(--accent); font-size: 1.5rem; margin-top: 3px; }
.legal-intro p { margin: 0; color: var(--text); }
.legal-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius);
  padding: 26px; margin-top: 34px;
}
.legal-cta h3 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.legal-cta p { color: rgba(255,255,255,.75); margin: 0; font-size: .82rem; }

@media (max-width: 991px) {
  .legal-nav { position: static; }
}
@media (max-width: 576px) {
  .legal-content { padding: 24px 20px; }
  .legal-cta { align-items: flex-start; flex-direction: column; }
}

/* ---------- Capabilities Cards ---------- */
.cap-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
}
.cap-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cap-card .cap-num {
  font-size: 2.5rem; font-weight: 800; color: rgba(0,172,193,0.15);
  line-height: 1; margin-bottom: 12px; display: block;
}
.cap-card h4 { font-size: 1rem; margin-bottom: 10px; }
.cap-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ---------- Number List ---------- */
.numbered-list { padding: 0; }
.numbered-list li {
  display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
}
.numbered-list li .num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
}
.numbered-list li p { font-size: 0.88rem; color: var(--text); margin: 0; }

/* ---------- Quote Form ---------- */
.quote-card {
  background: var(--primary); border-radius: var(--radius-lg);
  padding: 40px; color: var(--white);
}
.quote-card h3 { color: var(--white); margin-bottom: 8px; }
.quote-card p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.quote-card .form-control, .quote-card .form-select {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.quote-card .form-control::placeholder { color: rgba(255,255,255,0.5); }
.quote-card .form-control:focus { background: rgba(255,255,255,0.14); border-color: var(--accent); }
.quote-card .form-label { color: rgba(255,255,255,0.85); }

/* ---------- Blog ---------- */
.blog-hero { background: var(--primary); padding: 80px 0 60px; position: relative; overflow: hidden; }
.blog-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/quality-control-hplc-laboratory.webp') center/cover no-repeat;
  opacity: 0.1;
}
.blog-sidebar-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  margin-bottom: 24px;
}
.blog-sidebar-card h5 { font-size: 0.95rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }

/* ---------- Careers ---------- */
.job-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  margin-bottom: 16px;
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.job-badge { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.job-type-ft { background: rgba(46,204,113,0.12); color: #1a7a42; }
.job-type-pt { background: rgba(244,166,35,0.12); color: #a0700a; }

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}
.footer-logo img { height: 60px; filter: brightness(0) invert(1); }
.footer-about { font-size: 0.83rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin: 16px 0; }
.footer h5 {
  color: var(--white); font-size: 0.92rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--accent); border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 7px; transition: var(--transition);
}
.footer-links a i { font-size: 0.7rem; color: var(--accent); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px;
}
.footer-contact-item .fi {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center; font-size: 0.85rem; color: var(--accent);
}
.footer-contact-item p { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.6; }
.footer-newsletter input {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px 0 0 8px; padding: 10px 14px; font-size: 0.82rem;
  color: var(--white); outline: none; flex: 1; font-family: var(--font);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  background: var(--accent); border: none; border-radius: 0 8px 8px 0;
  color: var(--white); padding: 10px 16px; cursor: pointer; font-size: 0.85rem;
  transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--gold); }
.footer-newsletter { display: flex; margin-top: 12px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  background: rgba(0,0,0,0.2); margin-top: 50px;
  padding: 18px 0;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 0; }
.footer-bottom a { color: var(--accent); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 16px rgba(0,172,193,0.4);
  opacity: 0; pointer-events: none; transition: var(--transition);
  border: none; cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ---------- Loading overlay ---------- */
.page-loader {
  display: none;
}
.page-loader.done { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 50px; height: 50px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Misc Helpers ---------- */
.text-accent { color: var(--accent) !important; }
.text-primary-custom { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-accent { background: var(--accent) !important; }
.rounded-custom { border-radius: var(--radius) !important; }
.shadow-custom { box-shadow: var(--shadow-md) !important; }
.img-cover { object-fit: cover; width: 100%; height: 100%; }
.gap-section { padding: 40px 0; }
.pb-0 { padding-bottom: 0 !important; }
.overflow-hidden { overflow: hidden !important; }
.z-1 { z-index: 1; position: relative; }
.overlay-dark {
  position: absolute; inset: 0;
  background: rgba(13,45,90,0.7);
}
.pattern-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, var(--white) 1px, transparent 0);
  background-size: 30px 30px;
}
.separator {
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 20px 0;
}

/* ---------- Animations ---------- */
[data-aos] { transition-duration: 600ms !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  :root { --section-pad: 70px; }
}
@media (max-width: 991px) {
  :root { --section-pad: 60px; }
  .navbar-toggler { display: block !important; margin-left: auto; }
  .nav-link { padding: 12px 16px !important; }
  .nav-link::after { display: none; }
  .navbar-collapse { background: var(--white); border-radius: 0 0 12px 12px; padding: 10px 0; box-shadow: var(--shadow-md); }
  .dropdown-menu { box-shadow: none; background: var(--light); border-radius: 8px; }
  .gallery-grid { columns: 2; }
  .hero-slide { min-height: 500px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 50px; }
  .top-bar .d-flex { flex-direction: column; gap: 4px; text-align: center; }
  .gallery-grid { columns: 1; }
  .hero-content h1, .hero-content h2 { font-size: 1.6rem; }
  .stats-bar { padding: 20px 0; }
  .stat-divider { display: none; }
  .filter-tabs { text-align: center; }
  .form-card { padding: 24px; }
  .quote-card { padding: 24px; }
  .footer { padding: 50px 0 0; }
  .exp-badge { left: 0; top: 10px; }
}
@media (max-width: 576px) {
  .top-bar { padding: 5px 0; }
  .top-bar .container > .d-flex { flex-direction: row; justify-content: center !important; }
  .top-bar-left span { margin: 0; }
  .top-bar-left span:not(:first-child), .top-bar-right { display: none !important; }
  .section-title, .contact-hero-title, .page-hero h1 { font-size: 1.45rem; overflow-wrap: anywhere; }
  .contact-hero-sub, .page-hero p, .legal-nav, .legal-content { overflow-wrap: anywhere; }
  .contact-cards-strip .col-6 { width: 100%; }
  .ccard-value { overflow-wrap: anywhere; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-primary-custom, .btn-accent-custom, .btn-outline-custom { width: 100%; justify-content: center; }
  .navbar-brand img { height: 50px; }
  .page-hero h1 { font-size: 1.6rem; }
  .products-table { overflow-x: auto; }
}

/* ---------- Print ---------- */
@media print {
  .top-bar, .navbar-main, .footer, .back-to-top, .page-loader { display: none !important; }
  .page-hero { padding: 30px 0 !important; }
}

/* ============================================================
   CONTACT PAGE — Premium Redesign
   ============================================================ */

/* ----- Hero ----- */
.contact-hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: 120px 0 100px;
}
.contact-hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.contact-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.9;
}

/* Floating animated particles */
.contact-particles { position: absolute; inset: 0; pointer-events: none; }
.cp {
  position: absolute;
  border-radius: 50%;
  animation: cpFloat 8s ease-in-out infinite;
  opacity: 0.18;
}
.cp1 { width:120px;height:120px;background:var(--accent);top:10%;left:5%;animation-delay:0s;}
.cp2 { width:60px;height:60px;background:var(--gold);top:60%;left:15%;animation-delay:1.5s;}
.cp3 { width:90px;height:90px;background:#fff;top:20%;right:8%;animation-delay:3s;}
.cp4 { width:50px;height:50px;background:var(--accent);top:70%;right:12%;animation-delay:4.5s;}
.cp5 { width:80px;height:80px;background:var(--gold);bottom:5%;left:40%;animation-delay:2s;}
.cp6 { width:40px;height:40px;background:#fff;top:40%;left:48%;animation-delay:6s;}
@keyframes cpFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.08); }
}

.contact-hero-inner { position: relative; z-index: 2; }

.contact-breadcrumb { padding: 0; background: none; margin-bottom: 8px; }
.contact-breadcrumb .breadcrumb-item,
.contact-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.contact-breadcrumb .breadcrumb-item.active { color: var(--accent); }
.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.contact-hero-label {
  display: inline-flex; align-items: center;
  background: rgba(0,172,193,0.18);
  border: 1px solid rgba(0,172,193,0.4);
  color: #7de8f4;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 18px;
}
.contact-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 18px;
}
.contact-hero-title span {
  background: linear-gradient(135deg, var(--accent), #7de8f4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem; line-height: 1.8; max-width: 480px;
}
.chero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem; font-weight: 600;
  padding: 7px 16px; border-radius: 50px;
  transition: var(--transition);
}
.chero-badge:hover { background: rgba(255,255,255,0.18); }
.chero-badge i { color: var(--accent); }

.contact-hero-illustration {
  max-width: 460px; width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.contact-hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  line-height: 0; z-index: 2;
}
.contact-hero-wave svg { width: 100%; height: 80px; }

/* ----- Quick Contact Cards Strip ----- */
.contact-cards-strip {
  background: #f0f4f8;
  padding: 0 0 0;
  margin-top: -1px;
}
.contact-cards-strip .container { padding-top: 40px; padding-bottom: 50px; }

.ccard {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  height: 100%;
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ccard--blue  { border-bottom-color: var(--secondary); }
.ccard--teal  { border-bottom-color: var(--accent); }
.ccard--gold  { border-bottom-color: var(--gold); }
.ccard--dark  { border-bottom-color: var(--primary); }

.ccard-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ccard--blue  .ccard-icon { background: rgba(21,101,192,0.1); color: var(--secondary); }
.ccard--teal  .ccard-icon { background: rgba(0,172,193,0.1); color: var(--accent); }
.ccard--gold  .ccard-icon { background: rgba(244,166,35,0.1); color: var(--gold); }
.ccard--dark  .ccard-icon { background: rgba(13,45,90,0.08); color: var(--primary); }

.ccard-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ccard-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.ccard-value { font-size: 0.88rem; font-weight: 700; color: var(--primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccard-value:hover { color: var(--accent); }
.ccard-note { font-size: 0.7rem; color: var(--text-muted); }

/* ----- Contact Form Wrap ----- */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(13,45,90,0.1);
  overflow: hidden;
}
.cfwrap-header {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 28px 32px;
}
.cfwrap-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
}
.cfwrap-title { font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0 0 4px; }
.cfwrap-sub { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin: 0; }

.cform { padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .cform-row { grid-template-columns: 1fr; } }

.cfield { display: flex; flex-direction: column; gap: 6px; }
.cfield--full { grid-column: 1 / -1; }
.cfield-label { font-size: 0.78rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }
.req { color: var(--accent); }

.cfield-input-wrap { position: relative; }
.cfield-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 0.82rem;
  pointer-events: none; transition: var(--transition);
  z-index: 1;
}
.cfield-icon--top { top: 16px; transform: none; }
.cfield-input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
  outline: none;
}
.cfield-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,172,193,0.12);
}
.cfield-input:focus + .cfield-icon,
.cfield-input-wrap:focus-within .cfield-icon { color: var(--accent); }
.cfield-textarea { min-height: 130px; resize: vertical; padding-top: 14px; }

/* Enquiry type chips */
.cenquiry-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.chip-radio { cursor: pointer; }
.chip-radio input { display: none; }
.chip-radio span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted);
  background: var(--light);
  transition: var(--transition);
}
.chip-radio input:checked + span {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,172,193,0.3);
}
.chip-radio:hover span { border-color: var(--accent); color: var(--accent); }

/* Consent checkbox */
.cform-consent {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
}
.cform-consent input { display: none; }
.cchk-box {
  width: 18px; height: 18px; min-width: 18px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  transition: var(--transition);
  position: relative;
}
.cchk-box::after {
  content: '✓';
  font-size: 11px; font-weight: 800;
  color: #fff;
  opacity: 0;
  transition: var(--transition);
}
.cform-consent input:checked ~ .cchk-box {
  background: var(--accent);
  border-color: var(--accent);
}
.cform-consent input:checked ~ .cchk-box::after { opacity: 1; }
.cchk-text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.cchk-text a { color: var(--accent); font-weight: 600; }

/* Submit button */
.cform-submit {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(13,45,90,0.25);
}
.cform-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13,45,90,0.35);
}
.csubmit-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  flex: 1;
}
.csubmit-arrow {
  background: rgba(255,255,255,0.15);
  padding: 16px 20px;
  display: flex; align-items: center;
  transition: var(--transition);
}
.cform-submit:hover .csubmit-arrow { background: var(--accent); }

/* Success message */
.contact-success-msg {
  display: flex; align-items: flex-start; gap: 16px;
  background: linear-gradient(135deg, #e8fdf4, #d0f5e8);
  border: 1.5px solid #2ecc71;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 32px 0;
}
.csm-icon { font-size: 1.8rem; color: #2ecc71; }
.contact-success-msg strong { display: block; font-size: 1rem; color: #166534; margin-bottom: 4px; }
.contact-success-msg p { font-size: 0.85rem; color: #166534; margin: 0; }

/* ----- Right Info Panels ----- */
.cinfo-panel {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.cinfo-panel--gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.cpanel-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--border);
}
.cpanel-header i { font-size: 1.2rem; color: var(--accent); }
.cpanel-header h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 0; }

/* Person card */
.cpanel-person { display: flex; align-items: flex-start; gap: 16px; }
.cperson-avatar {
  width: 58px; height: 58px; min-width: 58px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
}
.cperson-info h5 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 0 0 2px; }
.cperson-info > span { font-size: 0.78rem; color: var(--text-muted); display: block; margin-bottom: 10px; }
.cperson-links { display: flex; flex-direction: column; gap: 6px; }
.cperson-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.cperson-links a i { color: var(--accent); width: 14px; }
.cperson-links a:hover { color: var(--accent); }

/* Hours table */
.chours-list { display: flex; flex-direction: column; gap: 0; }
.chours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
}
.chours-row:last-child { border-bottom: none; }
.chours-day { color: var(--text); font-weight: 500; }
.chours-time.open { color: #16a34a; font-weight: 600; }
.chours-time.closed { color: #dc2626; font-weight: 600; }

/* Why list */
.cwhy-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.cwhy-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.88);
}
.cwhy-list li i { color: #7de8f4; margin-top: 3px; min-width: 14px; }
.cwhy-cta {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff !important;
  font-size: 0.82rem; font-weight: 600;
  padding: 10px 20px; border-radius: 50px;
  transition: var(--transition);
}
.cwhy-cta:hover { background: var(--accent); border-color: var(--accent); }

/* ----- Location Cards ----- */
.clocation-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.clocation-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cloc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 10px 20px;
  color: #fff;
}
.cloc-badge--blue  { background: var(--secondary); }
.cloc-badge--teal  { background: var(--accent); }

.cloc-map { width: 100%; }
.cloc-map iframe { display: block; }

.cloc-details { padding: 24px; }
.cloc-name { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.cloc-info-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.cloc-info-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.84rem; color: var(--text);
}
.cloc-info-row i { color: var(--accent); min-width: 16px; margin-top: 2px; }
.cloc-info-row a { color: var(--text); transition: var(--transition); }
.cloc-info-row a:hover { color: var(--accent); }

.cloc-directions {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-size: 0.82rem; font-weight: 600;
  padding: 10px 20px; border-radius: 8px;
  transition: var(--transition);
}
.cloc-directions--teal { background: var(--accent); }
.cloc-directions:hover { background: var(--secondary); color: #fff !important; }
.cloc-directions--teal:hover { background: var(--accent-dark); }

/* ----- Connect Strip ----- */
.contact-connect-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 70px 0;
}
.ccs-title { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.ccs-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 28px; }
.ccs-socials { display: flex; flex-wrap: wrap; gap: 12px; }
.ccs-social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  color: #fff;
  transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}
.ccs-social:hover { transform: translateY(-2px); color: #fff; }
.ccs-social--linkedin:hover { background: #0077b5; border-color: #0077b5; }
.ccs-social--twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.ccs-social--youtube:hover { background: #ff0000; border-color: #ff0000; }
.ccs-social--facebook:hover { background: #1877f2; border-color: #1877f2; }

.ccs-cta-box {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.ccs-cta-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.ccs-cta-box h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ccs-cta-box p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin: 0; }

/* ----- Contact Responsive ----- */
@media (max-width: 768px) {
  .contact-hero { padding: 80px 0 70px; }
  .contact-hero-title { font-size: 1.9rem; }
  .cform { padding: 20px; }
  .cfwrap-header { padding: 20px; }
  .cinfo-panel { padding: 18px; }
  .cloc-details { padding: 18px; }
  .ccs-cta-box { padding: 24px; }
  .contact-connect-strip { padding: 50px 0; }
}
@media (max-width: 576px) {
  .chero-badge { font-size: 0.7rem; padding: 6px 12px; }
  .contact-hero-badges { gap: 8px; }
  .ccard { flex-direction: column; gap: 10px; }
  .ccard-value { white-space: normal; }
}

/* ============================================================
   SEO & UX ENHANCEMENTS
   ============================================================ */

/* --- Skip to content (accessibility) --- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff;
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  font-size: 0.85rem; font-weight: 600; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; color: #fff; }

/* --- Breadcrumb --- */
.breadcrumb-wrap {
  padding: 10px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumb-wrap a { color: rgba(255,255,255,0.75); }
.breadcrumb-wrap a:hover { color: var(--accent); }
.breadcrumb-wrap span.sep { margin: 0 6px; opacity: 0.5; }

/* --- Quality section image container --- */
.quality-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4f8, #ddeef7);
  padding: 12px;
  box-shadow: var(--shadow-md);
}
.quality-img-wrap img { border-radius: calc(var(--radius) - 4px); }

/* --- Why-choose-us SVG image --- */
.why-svg-wrap {
  background: linear-gradient(135deg, #f0f6ff, #e8f4f8);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

/* --- Blog card SVG images --- */
.blog-card-img img[src$=".svg"] {
  object-fit: cover;
  background: linear-gradient(135deg, #0d2d5a, #1565c0);
}

/* --- Structured data visible label (for products) --- */
.product-schema-hidden { display: none; }

/* --- Image lazy-load placeholder --- */
img[loading="lazy"] { min-height: 40px; }

/* --- Core Web Vitals: reduce layout shift --- */
.facility-card img, .blog-card-img img, .team-img-wrap img {
  aspect-ratio: auto;
}

/* --- 404 page --- */
.error-page {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 20px;
}
.error-page .error-num {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900; color: var(--accent);
  line-height: 1; display: block; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.error-page h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.error-page p { color: var(--text-muted); max-width: 440px; margin: 0 auto 28px; }

/* --- Structured FAQ/Accordion --- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 16px 20px; font-size: 0.92rem; font-weight: 600;
  color: var(--primary); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question i { font-size: 0.75rem; color: var(--accent); transition: transform 0.3s; }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 16px; font-size: 0.85rem; color: var(--text-muted); display: none; }
.faq-answer.show { display: block; }

/* --- Page speed: font display --- */
@font-face {
  font-display: swap;
}

/* --- Accessibility: focus styles --- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 991px) {
  .facility-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .facility-gallery-grid { display: block; }
  .facility-gallery-item { display: block; height: 220px; margin-bottom: 14px; }
  .facility-detail-card > img { height: 220px; }
  .facility-focus-panel, .compliance-panel { padding: 26px; }
}
