/* 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;
  color: #FFFFFF !important;
  font-size: 16px;
  width: 100%;
  font-family: Arial, sans-serif!important;
}

/* Section 1 */
.section-1 {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 90px;
}

.section-1-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(159, 163, 166, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%),
    url(https://pictures.dealer.com/c/chinohillscafordfd/1234/f95aec6b7e37482296d8ccc6f047c963.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-1-content {
  position: relative;
  max-width: 700px;
  color: #FFFFFF;
  z-index: 2;
}

.section-1 h2 {
  font-size: 24px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.section-1 h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  font-style: normal;
  text-transform: uppercase;
}

.section-1 h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn {
color: #FFF;
text-align: center;
font-family: Arial, sans-serif!important;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 28px;
padding: 16px;
border-radius: 8px;
background: #003A71;
display: inline-flex;
justify-content: center;
align-items: center;
gap: 10px;
text-decoration: none!important;
text-transform: uppercase;
}

.btn:hover {
    color: #FFF!important;
}


/* Section 2 */

.section-2 {
  padding: 100px 90px;
  background-color: #fff;
}

.section-2-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-2 h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #0b2d6b;
}

.section-2 p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
}

.section-2-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-bottom: 40px;
  justify-items: start;
  max-width: 400px;
}

.stat {
  padding-left: 16px;
  border-left: 3px solid #0b2d6b;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #0b2d6b;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  color: #555;
}

.section-2-image {
  border-radius: 12px;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  min-height: 420px;
}

/* Section 3 */

.section-3{
  padding: 20px 100px 0;
  background: linear-gradient(180deg, #FFF 0%, #9FA3A6 100%);
  display: flex;
  flex-direction: column;
}

.section-3 h2 {
  font-size: 40px;
  font-weight: 900;
  color: #0b2d6b;
  text-align: center;
}
.section-3 img{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* Section 4 */

.section-4 {
  display: flex;
  padding: 100px 90px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  align-self: stretch;
  
}

.black{
   background: #000;
}

.bronze {
   background: #9fa3a6;
}

.section-4-title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.section-4-sideprofile img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-4-features {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.section-4-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-4-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 15px;
}

.section-4-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b2d6b;
  background: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-4-note {
  font-size: 13px;
  color: #eee;
  text-align: center;
}

.section-4-gallery {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section-1 h1 {
    font-size: 34px;
  }
  .section-1 h3 {
    font-size: 16px;
  }
  .section-2 {
    padding: 50px;
  }
  .section-2-container {
    grid-template-columns: 1fr;
  }
  .section-2 h2 {
    font-size: 32px;
  }
  .section-2-image {
    order: -1;
    min-height: 260px;
  }
  .section-3 {
    padding: 20px 50px 0;
}
  .section-4 {
    padding: 50px;
    gap: 30px;
  }
  .section-4-title {
    font-size: 32px;
  }
  .section-4-features {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .section-4-gallery {
    grid-template-columns: 1fr;
  }
  
}

@media (max-width: 480px) {
  .section-1 {
    min-height: 320px;
  }
  .section-1,
  .section-2 {
    padding: 30px;
  }
  .section-1 h2,
  .section-1 h3,
  .section-2 p {
    font-size: 14px;
  }
  .section-1 h1,
  .section-2 h2,
  .section-3 h2,
  .stat-value,
  .section-3 h2 {
    font-size: 28px;
    text-align: center;
  }
  .btn {
    width: 100%;
    font-size: 14px;
  }

  .section-2-container {
    gap: 30px;
  }
  .section-2 p {
    margin-bottom: 30px;
  }
  .section-2-content{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-3 {
    padding: 15px 30px 0;
   }
  .section-4 {
    padding: 30px;
   }
}

/* ---------- Override ---------- */

.container-max-md {
  padding-left: 0;
  padding-right: 0;
  max-width: 100% !important;
}

.p-4 {
    padding: 0 !important;
}

@media (min-width: 1200px) {
    .pl-xl-8, .px-xl-8 {
        padding-left: 0 !important;
    }
    .pr-xl-8, .px-xl-8 {
        padding-right: 0 !important;
    }
}
@media (min-width: 992px) {
    .pl-lg-6, .px-lg-6 {
        padding-left: 0 !important;
    }
    .pr-lg-6, .px-lg-6 {
        padding-right: 0 !important;
    }
}

@media (min-width: 768px) {
    .p-md-5 {
        padding: 0 !important;
    }
}