/* CSS 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;
}

/* Remove list styles (bullets/numbers) */
.tk ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
.tk img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes 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 - exist only in Chromium and Safari */
.tk :where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
.tk :where(dialog:modal) {
  all: revert;
}

/* GENERAL */
.tk {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.6!important;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
}

.secondary-bg{
  background-color: #F3F3F3;
}

.dark-bg{
  background-color: #151515;
}

/* Buttons */
.btn-yellow {
  background-color: #f7b500;
  color: black!important;
  padding: 0.75rem 1.5rem;
  font-size: 16px!important;
  font-weight: 700!important;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-yellow:hover {
  background-color: #e6a700;
}

.btn-outline {
  background: #fff;
  color: #e6a700;;
  padding: 0.75rem 1.5rem;
  font-size: 16px!important;
  font-weight: 700!important;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: #fff;
  color: #000;;
}

/* Hero Section */
.hero {
  background: url('https://di-uploads-pod31.dealerinspire.com/sanleandrochryslerdodgejeepram/uploads/2025/06/hero.jpg') center/cover no-repeat;
  color: white;
  text-align: left;
  padding: 100px;
  position: relative;
  max-height: 650px;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(18, 18, 18, 0.5); 
  z-index: -1;
}

.hero .badge {
  background-color: #f7b500;
  color: black;
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 36px!important;
  font-weight: 700!important;
  max-width: 600px;
}

.hero p {
  font-size: 16px!important;
  margin: 1rem 0 2rem;
  max-width: 800px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Section Titles */
.section-title {
  font-size: 36px!important;
  font-weight: 700!important;
  margin-bottom: 1rem;
}

.light {
  color: #fff;
}

.center {
  text-align: center;
}


/* Grid layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Features Section */
.feature-box {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
  border-top: 5px solid #FFBA00;
}

.feature-box h3 {
  font-size: 16px!important;
  margin-bottom: 0.5rem;
}

/* Requirements Section */
.icon-img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.requirements {
  padding: 60px 20px;
}

.requirements-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  max-width: 600px;
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 16px!important;
  line-height: 1.5;
}

.requirements-list li h4{
  font-weight: bold!important;
} 

.requirements-list img {
  width: 28px;
  height: 28px;
  margin-top: 4px;
  flex-shrink: 0;
}

.requirements-list strong {
  display: block;
  font-size: 18px!important;
  margin-bottom: 4px;
}

.requirements-image img {
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}


/* Locations */
.locations {
  background: #F3F3F3;
  padding: 60px 20px;
  text-align: center;
}

.locations .section-title {
  font-size: 36px!important;
  font-weight: 700;
  margin-bottom: 10px;
}

.locations .section-subtitle {
  font-size: 18px!important;;
  color: #333;
  margin-bottom: 40px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.city-list h3 {
  font-size: 28px!important;
  text-align: left;
  margin-bottom: 20px;
}

.city-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 10px 40px;
  text-align: left;
}

.city-list li {
  display: flex;
  align-items: center;
  font-size: 16px!important;
  color: #000;
}

.city-list li img {
  width: 20px;
  margin-right: 10px;
}

.showroom-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  border-top: 6px solid #ffcc00;
}

.showroom-icon {
  width: 40px;
  margin-bottom: 15px;
}

.showroom-box h4 {
  font-size: 18px!important;;
  font-weight: 700;
  margin-bottom: 10px;
}

.showroom-box p {
  font-size: 14px!important;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.directions-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ffcc00;
  border-radius: 6px;
  background: #fff;
  color: #ffcc00;
  font-weight: 500;
  font-size: 14px!important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background: #ffcc00;
  color: white;
}


/* Inventory Section */
.inventory .card {
  background: #fff;
  border: 1px solid #eee;
  border-top: 5px solid #ffcc00;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1rem;
}

.inventory .card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.inventory .card p {
  font-weight: 600;
  margin-top: 0.5rem;
}

.inventory .card small {
  color: #666;
}

/* Container */
.application.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid Layout */
.application .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

/* Contact Info */
.application .contact-info .section-title {
  font-size: 36px!important;
  font-weight: bold;
  margin-bottom: 1rem;
}

.application .contact-info p {
  line-height: 1.6;
}

.contact-item i {
  color: #ffc107;
  margin-right: 0.5rem;
}

/* Form Styles */
.application .form {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  color: #000;
  position: relative;
  border-top: 5px solid #ffc107;
}

.application .form .form-header {
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.application .form h3 {
  font-size: 28px!important;
  font-weight: bold!important;
  margin: 0;
}

.application .form p {
  font-size: 12px!important;
  color: #555;
}

/* Input Fields */
.application .form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px!important;
}




@media (max-width: 768px) {
  .btn-outline {
    display: block;
    margin: 1rem 0 0;
  }

  .hero {
    padding: 3rem 1.5rem;
    text-align: center;
    height: auto;
  }

.hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero-buttons .btn-yellow,
  .hero-buttons .btn-outline {
    width: 100%;
    text-align: center;
  }

  .locations-list {
    flex-direction: column;
    align-items: center;
  }

  .container {
  padding: 50px;
 }

.requirements-image img {
  width: 100%;
}
 .locations-grid {
    grid-template-columns: 1fr; 
    gap: 20px;
  }
.locations {
    padding: 50px; 
  }

  .locations .section-title {
    font-size: 1.8rem!important;
  }

  .locations .section-subtitle {
    font-size: 16px!important; 
    margin-bottom: 30px;
  }

  .showroom-box {
    padding: 30px 20px; 
    margin-top: 20px;
  }

  .directions-btn {
    padding: 6px 12px; 
    font-size: 0.9rem!important;
  }
}
@media (max-width: 480px) {

   .container {
  padding: 25px;
 }
 .hero h1 {
  font-size: 36px!important;
}
  .locations-grid {
    gap: 0;
  }
.showroom-box {
    padding: 20px 15px; 
  }

    .showroom-icon {
  width: 30px;
  margin-bottom: 10px;
}

  .city-list li {
    font-size: 14px!important; 
  }

  .showroom-box {
    border-top-width: 4px; 
  }

  .directions-btn {
    font-size: 12px!important;
  }

   .locations .section-title,
   .application .contact-info .section-title,
   .section-title {
    font-size: 28px!important;
    margin-bottom: 0.5rem;
}

}

.entry-title,
.gfield_label {
  display: none!important;
}

.post-content {
    margin-bottom: 0!important;
    padding-top: 0!important;
}

.button--primary{
  background-color: #f7b500!important;
  color: black!important;
  padding: 0.75rem 1.5rem!important;
  font-size: 16px!important;
  font-weight: 700!important;
  border: none!important;
  border-radius: 5px!important;
  cursor: pointer!important;
  transition: background-color 0.3s ease!important;
  margin-top: 10px!important;
}

a {
  text-decoration: none!important;
  font-weight: bold!important;
}