
/***************************/
/*** BROWSER STYLE RESET ***/
/***************************/
.tk *:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
.tk *,
.tk *::before,
.tk *::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
.tk a, button {
  cursor: revert;
}

/* For images to not be able to exceed their container */
.tk img {
  max-inline-size: 100%;
  max-block-size: 100%;
  user-select: none;
  pointer-events: none;
}

/* Remove spacing between cells in tables */
.tk table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
.tk input, textarea {
  -webkit-user-select: auto;
}

/* Revert the 'white-space' property for textarea elements on Safari */
.tk textarea {
  white-space: revert;
}

/* Minimum style to allow to style meter element */
.tk meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* Preformatted text - use only for this feature */
.tk :where(pre) {
  all: revert;
}

/* Reset default text opacity of input placeholder */
.tk ::placeholder {
  color: unset;
}

/* Remove default dot (•) sign */
.tk ::marker {
  content: initial;
}

/* Fix the feature of 'hidden' attribute */
.tk :where([hidden]) {
  display: none;
}

/* Revert for bug in Chromium browsers */
.tk :where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* Apply back the draggable feature - exists only in Chromium and Safari */
.tk :where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
.tk :where(dialog:modal) {
  all: revert;
}

/***************/
/*** GENERAL ***/
/***************/

html {
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  margin: 0;
  padding: 0;
}

.tk {
  font-family: "Genesis Sans Text", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: normal;
  font-size: 14px !important;
}

/*****************/
/*** SECTION 1 ***/
/*****************/

.section-1 {
  position: relative;
  width: 100%;
  padding-top: 31.5%; 
  background-image: url('https://di-uploads-pod47.dealerinspire.com/genesisofvannuys/uploads/2025/07/Go-Electric_Electric-Genesis_L-16_9.jpg');
  background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.section-1::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0 20px;
  width: 100%;
}
.hero-content h1,
.hero-content h2 {
 color: white !important;
  letter-spacing: normal;
  font-weight: 300!important;
  font-family: "Genesis Sans Head", sans-serif;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn {
  background: #141414;
  color: #fff !important;
  border-color: #141414 !important;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 0px;
  box-shadow: none;
  padding: 1.38rem 2.75rem;
  font-weight: 400;
  font-size: 1rem!important;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  margin: 0 auto 0.625rem auto;
  transition: all 0.5s ease;
  letter-spacing: .13rem;
}

.btn:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
  font-weight: 400 !important;
}

/*****************/
/*** SECTION 2 ***/
/*****************/

.section-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}

.section-2 .card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-2 .card i {
  font-size: 60px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-2 h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
}

/*****************/
/*** SECTION 4 ***/
/*****************/

.section-4 {
  width: 100%;
  padding: 50px 20px;
  font-family: "Genesis Sans Text", sans-serif;
  background-color: #f0f0f070;
}

.section-4 .section-4-inner {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #fff;
  padding: 100px;
  border: 1px solid #d1d1d1;
}

.section-4 h2 {
  font-size: 28px;
  margin-bottom: 1rem;
  font-family: "Genesis Sans Head", sans-serif;
}

.section-4 p {
  font-size: 14px;
  margin-bottom: 2rem;
  color: #333;
}

.faq-list a {
  color: #0071dc;
  text-decoration: none;
  font-weight: 500;
}

.faq-list details {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.faq-list summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 20px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  color: #333;
  font-weight: 600;
}

.faq-list details[open] summary::after {
  content: "−";
  color: #0071dc;
}

.faq-list p {
  margin: 10px 0 0 0;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  transition: all 0.3s ease;
}


/*************************/
/*** RESPONSIVE STYLES ***/
/*************************/


@media (max-width: 1024px) {
   .section-2 {
    padding: 50px 0 20px;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 720px;
  }

  .section-2 .row {
    flex-wrap: nowrap;
    max-width: 400px;
  }
.section-2 .card {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .tk .section-1 {
    padding-top: 55.3%; 
    background-image: url('https://di-uploads-pod47.dealerinspire.com/genesisofvannuys/uploads/2025/07/Go-Electric_Electric-Genesis-mobile.jpg');
  }

  .tk .section-1 .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem ;
  }

  .tk .section-1 .hero-content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .tk .section-1 .hero-content .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }
   .section-4 .section-4-inner {
    padding: 40px 20px;
  }
}




/*****************/
/*** OVERRIDE ***/
/*****************/

.entry-title{
  display: none;
}
.post-content {
  margin-bottom: 0!important;
  padding-top: 0!important;
}