@charset "utf-8";
/* CSS Document */

		  /* =========================
   Phase 1 Performance (SAFE)
   ========================= */
section {
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}
		  
/*container adjustments
		  
		  div.SCIContent2012.grey {
		background-color: #ffffff;	  
			  
		  }	
		  
		  .SCIRight {
			  padding: 2em;
		  }	*/	
		  

/* Basic reset for the nav */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;           /* allows wrapping on small screens */
  gap: 0.75rem;              /* space between tabs */
  justify-content: center;   /* center the tabs */
  margin: 1.5rem 0;
  padding: 0;
}

/* Individual tabs */
.tab-link {
  border: 2px solid #2b5175;     /* dark blue border */
  color: #2b5175;                /* dark blue text */
  background-color: transparent; /* transparent background */
  border-radius: 5px;          /* pill/rounded corners */
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;           /* keeps text on one line on wide screens */
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

/* Hover/focus styles */
.tab-link:hover,
.tab-link:focus-visible {
  background-color: #2b5175;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobile stacking: default is stacked because of flex-wrap.
   If you want them to take full width on mobile: */
@media (max-width: 600px) {
  .tab-link {
    flex: 1 1 100%;    /* full width for each tab */
    white-space: normal;
  }
}

/* Desktop: four in one row */
@media (min-width: 601px) {
  .tabs-nav {
    justify-content: flex-start; /* or center, depending on your layout */
  }

  .tab-link {
    flex: 0 1 auto; /* only as wide as needed, stay in one row */
  }
}
		  
/*ev-banner style*/	
		  
.ev-banner {
  width: 100%;
  background-color: #2390b9;
  padding: 24px;
  box-sizing: border-box;
  color: #ffffff;
}

.ev-content {
  max-width: 1200px;
  margin: 0 auto;
}

.ev-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Logo column */
.ev-logo {
  flex: 1 1 20%; /* 1/5 width on desktop */
  display: flex;
  align-items: center;
}

.ev-logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Text column */
.ev-text {
  flex: 1 1 75%; /* 4/5 width on desktop */
}

.ev-line1 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.ev-line2 {
  margin: 0;
  font-size: 1rem;
}

/* CTA button */
.ev-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #ffffff;
  color: #2390b9;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.ev-button:hover {
  background-color: #e6f4f8;
}

/* Mobile stacking */
@media (max-width: 700px) {
  .ev-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ev-logo,
  .ev-text {
    flex: 1 1 100%;
  }

  .ev-button {
    width: 100%;
    text-align: center;
  }
}
		  
/* GRID LAYOUT */
 .accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
  padding: 20px;}
	 
 @media (max-width: 768px) {
  .accordion-grid {
    grid-template-columns: 1fr;
  }
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.vehicle-card {
	
	 padding: 20px;
  /*border: 1px solid #ddd;
  border-radius: 14px;
 
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);*/
}

.vehicle-card:hover {
  /*transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);*/
}

.vehicle-img {
  width: 100%;
  display: block;
  margin-bottom: 16px;
}

 /*vehicle card*/
div.accordion-panel.open ul {
			list-style-type: disc;
  			list-style-position: outside;
 			 padding-left: 1.25rem;
 			 margin: 0;
  			line-height: 1.4;   
		  }	  
		  

/* ACCORDION HEADER */
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: none;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.accordion-header:focus-visible {
  outline: 3px solid #2390b9;
  outline-offset: 2px;
}

.accordion-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0 !important;
}

/* SVG CHEVRON 
.accordion-chevron {
  width: 20px;
  height: 20px;
  fill: #333;
  transform-origin: center;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
    fill 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}*/

/* Hover color 
.accordion-header:hover .accordion-chevron {
  fill: #2390b9;
}*/

/* Open state 
.accordion-header[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
  fill: #2390b9;
}*/

.accordion-chevron {
  width: 20px;
  height: 20px;
  fill: #333;
  transform-origin: center;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
    fill 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Hover: title + chevron turn blue */
.accordion-header:hover .accordion-title,
.accordion-header:hover .accordion-chevron {
  color: #2390b9;
  fill: #2390b9;
}

/* Open state: title + chevron blue */
.accordion-header[aria-expanded="true"] .accordion-title {
  color: #2390b9;
}

.accordion-header[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
  fill: #2390b9;
}


/* PANEL */
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  border: none;
  border-top: none;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
  transition:
    max-height 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
    padding 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.accordion-panel.open {
  padding: 0.75rem 1rem;
  max-height: none;
}

/* Nested accordion panels expand naturally */
.nested-accordion .accordion-panel {
  max-height: none !important;
  overflow: visible !important;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  transition: none;
}


		  

/* BUTTON */
.model-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  border: 2px solid #2b5175;
  border-radius: 5px;
  background: transparent;
  color: #2b5175;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.model-btn:hover {
  background: #2b5175;
  color: #fff;
}

/* ROW LAYOUT */
.charging-row {
  display: grid;
  grid-template-columns: 20% 75%;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

/* LEFT COLUMN */
.charging-left {
  text-align: center;
}

.charging-icon {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
}

.charging-title {
  font-size: .9rem;
  font-weight: 600;
  margin: 0;
}

/* RIGHT COLUMN */
.charging-right {
  width: 100%;
}

/* Nested accordion spacing */
.nested-accordion {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .charging-row {
    grid-template-columns: 1fr;
  }
}

.winter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

@media (max-width: 1024px) {
  .winter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .winter-grid {
    grid-template-columns: 1fr;
  }
}
		  

.charging-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* Two equal columns */
  gap: 2rem; /* Space between grid items */
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
		  

.charging-grid h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.charging-grid ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.charging-grid li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
		  

@media (max-width: 768px) {
  .charging-grid {
    grid-template-columns: 1fr; /* Switch to single column on smaller screens */
  }
}
		  

/*.winter-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}*/
		  
 button.accordion-header > span.accordion-title {
	 font-size: .9rem;  }
			  

.winter-icon {
  width: 48px;
  height: auto;
  margin-bottom: 1rem;
}

.winter-title {
  margin: 0 0 0.75rem 0;
  font-size: .9rem;
  font-weight: 600;
}

.winter-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 1rem 0;
}
/*video section*/
.video-lazy {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.video-lazy .video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-lazy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 32px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-play-btn:hover {
  background: rgba(255,255,255,1);
}

		  
/*province grid*/
		  
	.province-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

@media (max-width: 768px) {
  .province-grid {
    grid-template-columns: 1fr;
  }
}

.province-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.province-list li {
  display: block;
  padding: 0.5rem 0;
}

.province-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.province-list a:hover {
  color: #2b5175;
  transform: translateX(4px);
}

.province-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: #2b5175;
  transition: fill 0.25s ease;
}

.province-list a:hover .province-icon {
  fill: #2b5175;
}

.province-list hr {
  width: 100%;
  border: none;
  border-top: 1px solid #eee;
  margin: 0.5rem 0 0 0;
  transition: opacity 0.25s ease;
}

.province-list li:hover hr {
  opacity: 0.6;
}

		  
		  .back-to-top-wrapper {
  text-align: right;
  margin-top: 2rem;
}

.back-to-top {
  display: inline-block;
  padding: 10px 18px;
  background: #002d72;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
  background: #0043a8;
  transform: translateY(-2px);
}
.smlCopy, .legal, .textSmall {
    font-size: 12px;
    line-height: 1.5;
}

		  
	

