/* ==========================================================================
   Landmark Medical Systems - Authentic Corporate Canadian (Blue & Red)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #002c5c;       /* Deep Midnight Blue - Established trust & logo color */
  --primary-light: #0a3d75; /* Medium Navy */
  --accent: #1d70b8;        /* Corporate Blue - Matches signature text */
  --accent-light: #eff6ff;  /* Light Blue 50 */
  --accent-dark: #15538a;   /* Deep Corporate Blue */
  --accent-red: #c8102e;    /* Canadian Flag Red - Matches signature maple leaf & + */
  --accent-red-light: #fdf2f2; /* Light Red 50 */
  --success: #10b981;       /* Emerald 500 */
  
  /* Neutrals */
  --bg-main: #ffffff;       /* Pure White canvas */
  --bg-alternate: #f4f6f9;  /* Cool Blue-Gray for panels */
  --bg-card: #ffffff;
  --text-main: #2d3748;     /* Slate 800 - Crisp, readable body copy */
  --text-dark: #002c5c;     /* Deep Midnight Blue - Typographic contrast */
  --text-muted: #64748b;    /* Slate 500 */
  --border: #e2e8f0;        /* Slate 200 - Clean lines */
  --border-focus: #1d70b8;  /* Corporate Blue border */
  
  /* Fonts */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Clean Professional Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* elevations */
  --shadow-sm: 0 1px 3px 0 rgba(0, 44, 92, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 44, 92, 0.05), 0 2px 4px -2px rgba(0, 44, 92, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0, 44, 92, 0.08), 0 8px 10px -6px rgba(0, 44, 92, 0.08);
  --shadow-xl: 0 20px 40px -10px rgba(0, 44, 92, 0.12);
  
  /* Outline accent glow */
  --outline-accent: 0 0 0 3px rgba(29, 112, 184, 0.15);
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.12s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: #f8fafc;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(29, 112, 184, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 44, 92, 0.03) 0%, transparent 40%),
    linear-gradient(rgba(29, 112, 184, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 112, 184, 0.012) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Navigation Bar (Header)
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--primary); /* Deep blue thick border matches signature */
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.2rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo img {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-fast);
}

/* Footer-specific logo badge for contrast */
footer .logo img {
  height: 44px;
  background-color: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

footer .logo img:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 34px;
  height: 34px;
  background-color: var(--bg-main);
  border: 4px solid var(--accent); /* Co-branded logo graphic matching signature style */
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 4px;
  background-color: var(--accent-red); /* Canadian red cross inside the blue logo square */
  border-radius: 1px;
}

.logo-icon::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 16px;
  background-color: var(--accent-red);
  border-radius: 1px;
}

.logo span {
  color: var(--accent);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.nav-menu li a {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-red); /* Red active tab highlights like the signature maple leaf */
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary);
}

.nav-menu li a.active::after,
.nav-menu li a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--accent);
}

.nav-cta:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 4px;
  transition: var(--transition-fast);
}

.mobile-menu-btn span:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background-color: var(--primary);
  color: #94a3b8;
  padding: 5rem 2rem 2.5rem;
  margin-top: 6rem;
  border-top: 4px solid var(--accent-red); /* Red maple leaf highlight border */
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-brand .logo span {
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.6;
}

.footer-contact p span {
  color: var(--accent-red);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ==========================================================================
   Hero Section (Corporate Canadian)
   ========================================================================== */
.hero {
  background-color: var(--bg-alternate);
  color: var(--text-main);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Diagonal stripe graphic overlay inspired by signature chevrons */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 112, 184, 0.06) 0%, rgba(0, 44, 92, 0.06) 100%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-red-light);
  color: var(--accent-red);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200, 16, 46, 0.2);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-tag i {
  font-size: 0.9rem;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-main);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 16px rgba(29, 112, 184, 0.2);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--bg-main);
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--bg-alternate);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--text-dark);
  font-weight: 850;
  margin-bottom: 0.1rem;
}

.stat-item h3 span {
  color: var(--accent-red); /* Matches the signature 40+ red plus sign */
}

.stat-item p {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Interactive Hero Slider */
.hero-slider-container {
  width: 100%;
  max-width: 500px;
  height: 380px;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--accent);
  border-left: 12px solid var(--primary); /* Co-branded double border sig design */
  background-color: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.prev-btn {
  left: 1rem;
}

.next-btn {
  right: 1rem;
}

/* Slide Indicator Dots */
.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot:hover,
.slider-dot.active {
  background-color: var(--accent-red);
  transform: scale(1.25);
}

/* Full-Width Hero Slideshow Section */
.hero-slideshow-section {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); /* Premium deep clinical navy background */
  padding: 5.5rem 2rem;
  border-bottom: 4px solid var(--accent-red); /* Canadian Red accent border */
  overflow: hidden;
  text-align: center;
}

.showcase-header {
  margin-bottom: 3.5rem;
  background-color: var(--primary); /* Deep Midnight Blue background banner */
  border-left: 5px solid var(--accent-red); /* Canadian Red accent border */
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.showcase-header p {
  color: var(--accent-red);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.3rem;
}

.showcase-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.hero-slideshow-section .hero-slider-container {
  max-width: 100%;
  width: 100%;
  height: 720px; /* Super-sized 720px depth matching your original carousel height */
  margin: 0;
  border-radius: 0; /* Full bleed layout with no rounded corners */
  border: none;
  background-color: #f9f9f9;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-md);
}

.hero-slideshow-section .hero-slide {
  padding: 0; /* Full cover container */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: #f9f9f9; /* Blend seamlessly with the light background of your banners */
}

.hero-slideshow-section .hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Slick un-cropped slide image fade transition */
.hero-slideshow-section .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures entire banner image fits perfectly without cropping */
  transition: opacity 0.8s ease;
  transform: none !important; /* Disable all zoom scaling that clips edges/text */
}

.hero-slideshow-section .hero-slide.active img {
  transform: none !important; /* Disable Ken Burns transform to prevent clipping text */
}

/* Rich interactive glassmorphism captions overlay */
.slide-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  max-width: 420px;
  background: rgba(0, 44, 92, 0.85); /* Premium semi-transparent deep navy */
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  color: #fff;
  text-align: left;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.8s ease 0.2s;
}

.hero-slide.active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.slide-badge {
  display: inline-block;
  background-color: var(--accent-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.slide-caption h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.slide-caption p {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Slick minimal slider control buttons */
.hero-slideshow-section .slider-btn {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: var(--transition-fast);
}

.hero-slideshow-section .slider-btn:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.hero-slideshow-section .prev-btn {
  left: 1.5rem;
}

.hero-slideshow-section .next-btn {
  right: 1.5rem;
}

.hero-slideshow-section .slider-dots {
  bottom: 1.5rem;
  background-color: rgba(0, 44, 92, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.hero-slideshow-section .slider-dot {
  width: 9px;
  height: 9px;
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-slideshow-section .slider-dot:hover,
.hero-slideshow-section .slider-dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Corporate Introduction Section */
.hero-intro-section {
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  padding: 5.5rem 2rem;
  border-bottom: 1px solid var(--border); /* Clean, standard light dividing line */
  position: relative;
}

.hero-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 4.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Credentials card style with MKO chevron signature border */
.hero-credentials-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-left: 8px solid var(--accent); /* Landmark primary corporate blue */
  border-top: 4px solid var(--accent-red);  /* Canadian Red border */
}

.credentials-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.credentials-icon {
  font-size: 1.3rem;
  color: var(--accent);
}

.credentials-header h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.hero-stats-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-stats-list .stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-stats-list .stat-item h3 {
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 850;
  width: 110px;
  flex-shrink: 0;
  margin-bottom: 0;
  line-height: 1;
}

.hero-stats-list .stat-item h3 span {
  color: var(--accent-red);
}

.hero-stats-list .stat-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.hero-stats-list .stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
}

/* Corporate Value Propositions Section */
.value-props-section {
  background-color: var(--bg-main);
  padding: 5.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.value-prop-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 3rem 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border-top: 4px solid var(--accent); /* Landmark Blue primary accent border */
}

.value-prop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-red); /* Highlights to Canadian Red on hover! */
}

.value-prop-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: var(--bg-alternate);
  color: var(--primary); /* Deep corporate navy */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-size: 2rem;
  border: 2px solid var(--border);
  transition: var(--transition-fast);
}

.value-prop-card:hover .value-prop-icon-wrapper {
  background-color: var(--accent-red-light);
  color: var(--accent-red); /* Swaps to Canadian red on hover! */
  border-color: rgba(200, 16, 46, 0.2);
}

.value-prop-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-prop-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 0;
}

/* ==========================================================================
   Interactive Product Catalog
   ========================================================================== */
.catalog-section {
  max-width: 1400px;
  margin: 6rem auto 0;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
}

/* Filter and Search Bar */
.catalog-filter-bar {
  background-color: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-alternate);
  transition: var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  background-color: #fff;
  box-shadow: var(--outline-accent);
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 1rem;
}

.filter-categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  background-color: var(--bg-alternate);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  background-color: var(--border);
  color: var(--primary);
}

.filter-btn.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  min-height: 400px;
}

.product-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-img-wrapper {
  background-color: var(--bg-alternate);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.product-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--bg-main);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Category Specific Badges matched to Print Cover palettes */
.product-category-badge.cat-arm-shoulder {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.product-category-badge.cat-back {
  background-color: #faf5ff;
  border-color: #e9d5ff;
  color: #86198f;
}

.product-category-badge.cat-foot-ankle {
  background-color: #f0f9ff;
  border-color: #e0f2fe;
  color: #0369a1;
}

.product-category-badge.cat-leg-knee {
  background-color: #fef2f2;
  border-color: #fee2e2;
  color: #991b1b;
}

.product-category-badge.cat-pediatric {
  background-color: #eff6ff;
  border-color: #dbeafe;
  color: #1e40af;
}

.product-category-badge.cat-speciality {
  background-color: #fefce8;
  border-color: #fef08a;
  color: #854d0e;
}

.product-category-badge.cat-wrist-elbow {
  background-color: #fffbeb;
  border-color: #fef3c7;
  color: #9a3412;
}

.product-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: var(--text-dark);
}

.product-snippet {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.product-options-summary {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-view-btn {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card:hover .product-view-btn {
  color: var(--accent-dark);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  background-color: var(--bg-alternate);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.no-results-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Details Modal (Corporate Technical Overlay)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 44, 92, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: #fff;
  width: 95%;
  max-width: 1150px;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  position: relative;
  transform: translateY(15px);
  transition: transform 0.25s ease;
  border-top: 6px solid var(--accent-red); /* Thick red border on modal header */
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background-color: var(--bg-alternate);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1.1rem;
  color: var(--text-dark);
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 500px;
}

.modal-gallery-pane {
  background-color: var(--bg-alternate);
  padding: 3rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.modal-main-image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 100%;
}

.modal-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: #fff;
  padding: 0.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition-fast);
}

.modal-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-thumb.active {
  border-color: var(--accent);
  box-shadow: var(--outline-accent);
}

.modal-info-pane {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-product-cat {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modal Category Specific Colors matched to Print Cover themes */
.modal-product-cat.cat-arm-shoulder { color: #166534; }
.modal-product-cat.cat-back { color: #86198f; }
.modal-product-cat.cat-foot-ankle { color: #0369a1; }
.modal-product-cat.cat-leg-knee { color: #991b1b; }
.modal-product-cat.cat-pediatric { color: #1e40af; }
.modal-product-cat.cat-speciality { color: #854d0e; }
.modal-product-cat.cat-wrist-elbow { color: #9a3412; }

.modal-product-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

.modal-product-sku {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: monospace;
}

.modal-divider {
  height: 1px;
  background-color: var(--border);
}

.modal-description {
  font-size: 0.9rem;
  line-height: 1.6;
}

.modal-description p {
  margin-bottom: 0.8rem;
}

.modal-description,
.modal-description div,
.modal-description p,
.modal-description span,
.modal-description ul,
.modal-description li {
  text-align: left !important;
}

.modal-description th,
.modal-description td {
  text-align: center !important;
}

/* Sizing tables parsed from descriptions */
.modal-description table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.8rem;
}

.modal-description th,
.modal-description td {
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--border);
  text-align: center;
}

.modal-description th {
  background-color: var(--bg-alternate);
  font-weight: 700;
  color: var(--text-dark);
}

.modal-description a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  display: inline-block;
  margin-top: 0.4rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.modal-options-pane {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.option-group h5 {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.option-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.option-swatch {
  border: 1px solid var(--border);
  background-color: var(--bg-alternate);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: default;
}

.modal-actions {
  margin-top: 0.8rem;
}

.modal-actions .btn {
  width: 100%;
}

/* ==========================================================================
   Pages: About Us
   ========================================================================== */
.page-hero {
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  background-color: var(--primary); /* Float translucent PNG softly on top of branding blue! */
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--accent-red); /* Accent border in sub-hero page headers */
}

.page-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff !important; /* Force high contrast white overriding dark h1 styles */
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.about-intro-section {
  max-width: 960px;
  margin: 6rem auto 0;
  padding: 0 2rem;
  text-align: center;
}

.about-intro-title {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.about-intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
}

.about-grid-section {
  max-width: 1400px;
  margin: 5rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  border: 2px solid var(--accent);
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Pages: Clinical Education (Scientific Literature Hub)
   ========================================================================== */
.education-section {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

.edu-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.edu-menu {
  list-style: none;
  background-color: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.edu-menu-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-main);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.edu-menu-item:last-child button {
  border-bottom: none;
}

.edu-menu-item button:hover {
  background-color: var(--bg-alternate);
  color: var(--accent);
}

.edu-menu-item.active button {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.edu-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.edu-topic-section {
  background-color: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: none;
  box-shadow: var(--shadow-sm);
}

.edu-topic-section.active {
  display: block;
}

.edu-topic-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 0.6rem;
  text-transform: uppercase;
}

.study-card {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.8rem;
  margin-bottom: 1.8rem;
}

.study-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.study-journal {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.study-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.study-authors {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.study-institution {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   Pages: Contact Us & B2B Quote Form
   ========================================================================== */
.contact-grid {
  max-width: 1400px;
  margin: 5rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-pane {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.contact-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
  background-color: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--accent);
}

.contact-card-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-card-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.contact-map-mockup {
  height: 240px;
  background-color: var(--bg-alternate);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.85;
}

.map-dot {
  width: 14px;
  height: 14px;
  background-color: var(--accent-red); /* Canadian Red map locator pin matches logo accents */
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 6px rgba(200, 16, 46, 0.25);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0px rgba(200, 16, 46, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(200, 16, 46, 0); }
  100% { box-shadow: 0 0 0 0px rgba(200, 16, 46, 0); }
}

.map-label {
  position: absolute;
  top: calc(50% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.contact-form-pane {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent-red); /* Canadian red header border for forms */
}

.form-title {
  font-size: 1.4rem;
  font-weight: 850;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--text-main);
  background-color: var(--bg-alternate);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: #fff;
  box-shadow: var(--outline-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  width: 100%;
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-submit-btn:hover {
  background-color: var(--primary);
  box-shadow: 0 8px 16px rgba(0, 44, 92, 0.2);
}

/* Toast Message */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-left: 4px solid var(--success);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toast-msg.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--success);
  font-size: 1.1rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-slideshow-section .hero-slider-container {
    height: 440px;
  }
  
  .about-grid-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-slideshow-section .hero-slider-container {
    height: 380px;
  }
  
  .slide-caption {
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 320px;
    padding: 1.2rem;
  }
  
  .slide-caption h4 {
    font-size: 1.1rem;
  }
  
  .slide-caption p {
    font-size: 0.75rem;
  }
  
  .value-props-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .catalog-filter-bar {
    flex-direction: column;
  }
  
  .modal-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-gallery-pane {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem;
  }
  
  .modal-info-pane {
    padding: 2rem;
  }
  
  .education-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .edu-sidebar {
    position: static;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 42px !important;
  }
  .nav-container {
    padding: 0.7rem 1.5rem !important;
  }
  .page-hero {
    padding: 3.5rem 1rem !important;
  }
  .page-hero-title {
    font-size: 1.9rem !important;
  }
  .page-hero-subtitle {
    font-size: 0.95rem !important;
  }
  .hero-slideshow-section {
    padding: 3rem 1rem;
  }
  .hero-slideshow-section .hero-slider-container {
    height: 280px;
  }
  .slide-caption {
    display: none;
  }
  .hero-slideshow-section .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .hero-slideshow-section .prev-btn {
    left: 0.5rem;
  }
  .hero-slideshow-section .next-btn {
    right: 0.5rem;
  }
  .hero-credentials-card {
    padding: 1.5rem;
  }
  .hero-stats-list .stat-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .hero-stats-list .stat-item h3 {
    width: auto;
  }

  .nav-menu, .nav-cta, .nav-mko-logo {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .edu-topic-section {
    padding: 1.5rem;
  }
  
  .edu-topic-title {
    font-size: 1.4rem;
  }
  
  .contact-form-pane {
    padding: 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* Premium Location Map Container */
.contact-map-container {
  height: 240px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  background-color: var(--bg-alternate);
}

.contact-map-container:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Premium Header MKO Logo Link */
.nav-mko-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.nav-mko-logo img {
  height: 68px;
  width: auto;
  transition: var(--transition-fast);
}

.nav-mko-logo:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 2px 5px rgba(29, 112, 184, 0.25));
}
