/* ==========================================================================
   Best Car Trainers — Header & Hero Slider
   Mobile-first responsive styles
   ========================================================================== */

/* --- Design tokens (match uploaded design) --- */
:root {
  --hdr-color-text: #1a1a1a;
  --hdr-color-bg: #ffffff;
  --hdr-color-accent: #f28120;
  --hdr-max-width: 1248px;
  --hdr-height-mobile: 64px;
  --hdr-height-desktop: 55px;
  --hero-color-dot-active: #f26522;
  --hero-color-dot-inactive: #4a4a4a;
  --hero-color-arrow: #ffffff;
  --hero-color-arrow-bg: rgba(0, 0, 0, 0.35);
  --hero-aspect-ratio: 720 / 1920;
  --hero-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --menu-width-mobile: 280px;
  --menu-bg: #1a1a1a;
  --menu-text: #ffffff;
  --menu-accent: #f28120;
  --menu-overlay: rgba(0, 0, 0, 0.55);
  --menu-transition: 0.3s ease;
  --menu-z-overlay: 200;
  --menu-z-sidebar: 300;
  --menu-z-whatsapp: 150;
  --menu-bg: #1a1a1a;
  --menu-overlay: rgba(0, 0, 0, 0.55);
}

/* --- Reset (scoped essentials) --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {

  color: var(--hdr-color-text);
  background: var(--hdr-color-bg);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Asap", sans-serif;
  font-weight: 600 !important;
}

span {
  font-family: "Asap", sans-serif;

}

p {
  font-family: "Noto Sans";
  font-weight: normal;
  font-size: 15px;
  line-height: 28px;
  color: #000000;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/*Sidebar*/

body.menu-is-open {
  overflow: hidden;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--menu-z-overlay);
  background: rgb(0 0 0 / 93%);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--menu-transition), visibility var(--menu-transition);
  pointer-events: none;
}

.menu-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--menu-z-sidebar);
  width: var(--menu-width-mobile);
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: transparent;
  color: var(--menu-text);
  transform: translateX(100%);
  transition: transform var(--menu-transition);
  overflow-y: auto;
}

.menu-overlay.menu-overlay--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-sidebar.menu-sidebar--open {
  transform: translateX(0);
}

.menu-sidebar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 160px 28px 40px;
  gap: 15px 0;
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--menu-text);
  font-size: 32px;
  line-height: 1;
  z-index: 2;
}

.menu-logo__img {
  width: 110px;
  margin: 0 auto;
}

.menu-divider {
  display: block;
  width: 42px;
  height: 2px;
  background: rgb(255 255 255 / 74%);
  margin: 18px 0;
}

.menu-nav__link i {
  font-size: 17px;
}

.menu-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 30px;
}

.menu-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  text-decoration: none;
  color: var(--menu-text);
  font-size: 20px;
  font-weight: 400;
}

.menu-nav__link--active,
.menu-nav__link:hover {
  color: var(--menu-accent);
}

.frm-submit:disabled {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.frm-submit:disabled::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #5480a1;
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: var(--menu-text);
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  width: max-content;
  border-radius: 5px;
  transition: all .14s ease-out;
}

.menu-cta:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
  background-color: #f28120;
}

.menu-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: var(--menu-z-whatsapp);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.hdr-header {
  position: relative;
  z-index: 100;
  background: var(--hdr-color-bg);
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0px 4px 4px -2px rgb(0 0 0 / 9%);
  border-top: 1px solid #f28120;
}

.hdr-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--hdr-max-width);
  margin: 0 auto;
  padding: 12px 16px;
  min-height: var(--hdr-height-mobile);
}

/* Location (left) */
.hdr-location {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.hdr-location-icon {
  display: flex;
  align-items: center;
  color: var(--hdr-color-text);
  flex-shrink: 0;
}

.hdr-location-icon svg {
  width: 12px;
  height: 16px;
}

.hdr-location-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--hdr-color-text);
  white-space: nowrap;
}

/* Logo (center) */
.hdr-logo {
  justify-self: center;
  grid-column: 2;
}

.hdr-logo-link {
  display: block;
  line-height: 0;
}

.hdr-logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

/* Hamburger menu (right) */
.hdr-menu-btn {
  justify-self: end;
  grid-column: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.hdr-menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hdr-color-text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hdr-menu-btn:hover .hdr-menu-bar {
  background: #c9a227;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e8e8e8;
}

.hero-slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Maintain slide aspect ratio from design (~16:6) */
  aspect-ratio: 1920 / 720;
  max-height: 85vh;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.hero-slider-viewport:active {
  cursor: grabbing;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--hero-transition);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Navigation arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--hero-color-arrow);
  background: var(--hero-color-arrow-bg);
  border-radius: 50%;
  transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  opacity: 1;
  background: rgba(0, 0, 0, 0.55);
  outline: none;
}

.hero-arrow--prev {
  left: 12px;
}

.hero-arrow--next {
  right: 12px;
}

.hero-arrow svg {
  width: 10px;
  height: 16px;
}

/* Pagination dots */
.hero-pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hero-color-dot-inactive);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-dot:hover {
  transform: scale(1.15);
}

.hero-dot--active {
  background: var(--hero-color-dot-active);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--hero-color-dot-active);
  outline-offset: 2px;
}

/* ==========================================================================
   2nd Section
   ========================================================================== */

/* ── Learn to Drive Section ── */
.ltd-section {
  background: #fff;
  padding: 70px 20px;
}

.ltd-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px 60px;
}

/* Left Image */


.ltd-image {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}



.ltd-heading {

  font-size: 32px;
  font-weight: 600;
  color: var(--hdr-color-text);
  margin-bottom: 16px;
}



/* Feature Items */
.ltd-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.ltd-feature-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: #c9a227;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ltd-feature-icon i {
  color: #fff;
  font-size: 18px;
}

.ltd-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--hdr-color-text);
  margin-bottom: 6px;
}

.ltd-feature-desc {
  font-size: 14px;
  color: #000000;
  line-height: 1.75;
}

/*Footer*/

.footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 12px 30px;

  white-space: nowrap;
  font-size: 13px;
  min-height: 45px;
}

.footer-inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--hdr-max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-copyright {
  color: #ffffff;
  flex-shrink: 0;
}

.footer-copyright span {
  color: rgba(255, 255, 255, .79);
}

.footer-contact {
  color: #bbb;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #444;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
}

.footer-social a:hover {
  background-color: #666;
  color: #fff;
}

footer p {
  font-size: 14px;
}


/* ==========================================================================
   About Section
   ========================================================================== */

.abt-section {
  position: relative;
  width: 100%;
  background-image: url('assets/images/car-driving-road-car-parked.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 60px 16px;
}

/* dark overlay */
.abt-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.abt-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}

.abt-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

/* Heading box */
.abt-heading-wrap {
  background: rgba(15, 25, 40, 0.82);
  padding: 18px 24px;
  display: inline-block;
}

.abt-heading {
  font-size: 28px;
  font-weight: 500 !important;
  line-height: 1.2;
  margin: 0;
}

.abt-heading-plain {
  color: #ffffff;
}

.abt-heading-accent {
  color: var(--hdr-color-accent);
}

/* Body box */
.abt-body-wrap {
  background: rgba(15, 25, 40, 0.82);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt-desc {
  font-size: 14px;
  line-height: 1.85;
  color: #ffffff;
  margin: 0;
}

/* Button */
.abt-btn {
  display: inline-block;
  padding: 8px 26px;
  background: var(--hdr-color-accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  font-family: "Noto Sans";
  transition: background 0.2s ease, color 0.2s ease;
  align-self: flex-start;
  border-radius: 3px;
}

.abt-btn:hover {
  background: #ffffff;
  color: #0f1928;

}

/* ==========================================================================
   Testimonial With COntact
   ========================================================================== */

/* Section shell */
.tst-section {
  background: #f4f4f4;
  padding: 14px 10px;
  color: #1e1e1e;
}

.tst-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  background: #ececec;
}

/* Left column (testimonial) */
.tst-carousel {
  background: url(assets/images/testimonial-bg.png);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  border-right: 1px solid #e0e0e0;
  min-height: 470px;
  display: flex;
  flex-direction: column;

}

.tst-slider {
  position: relative;
  min-height: 245px;
  padding: 26px 26px 10px;
  overflow: hidden;
}

.tst-slide {
  position: absolute;
  inset: 0;
  padding: 26px 26px 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.tst-slide.tst-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.tst-quote {
  font-size: 16px;
  line-height: 1.72;
  color: #202020;
  font-style: italic;
  text-align: center;
  margin: 0 auto;

}

.tst-name {
  margin-top: 10px;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  color: #2a2a2a;
  font-family: 'Caveat', handwriting;
}

.tst-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 4px 0 8px;
}

.tst-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 0;
  background: #c8c8c8;
  cursor: pointer;
  padding: 0;
}

.tst-dot.tst-dot-active {
  background: #3f3f3f;
}

.tst-car-image-wrap {
  margin-top: auto;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.tst-car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right column (form) */
.frm-panel {
  background: #e6e7eb;
  padding: 30px 24px 24px;
}

.frm-title {
  margin: 0 0 4px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #121212;
  font-weight: 700;
}

.frm-subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  color: #222;
}

.frm-form {
  width: 100%;
}

.frm-group {
  margin-bottom: 12px;
}

.frm-label {
  display: block;
  font-size: 16px;
  color: #222;
  margin-bottom: 6px;
  font-family: 'Asap', sans-serif;
}

.frm-input {
  width: 100%;
  height: 40px;
  border: 1px solid #b9b9b9;
  background: #f0f0f0;
  padding: 6px 10px;
  font-size: 13px;
  color: #1b1b1b;
  outline: none;
}

.frm-input:focus {
  border-color: #6f6f6f;
}

.frm-gender-group {
  border: 0;
  padding: 0;
  margin: 0 0 12px;
}

.frm-gender-options {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: 20px;
  margin-top: 10px;
}

.frm-radio-label {
  font-size: 14px;
  color: #222;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Asap', sans-serif;
}

.frm-radio-label input {
  accent-color: #1f6ca8;
}

.frm-submit {
  margin-top: 2px;
  width: 130px;
  height: 34px;
  background: #2f668f;
  color: #fff;
  border: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Asap', sans-serif;
}

.frm-submit:hover {
  background: #28597e;
}

.frm-error {
  min-height: 16px;
  margin: 4px 0 0;
  font-size: 13px;
  color: #c62828;
}

.frm-invalid {
  border-color: #c62828 !important;
  background: #fff5f5;
}

.frm-success {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 12px;
  color: #1f7a1f;
  font-weight: 600;
}


/* ==========================================================================
   FAQ Section
   ========================================================================== */

.section-faq {
  background: url(assets/images/faq-bg.png);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  background-position: 77% 68% !important;
}


.section-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Left */
.section-faq-left {
  flex: .5;
}

.section-faq-heading {
  font-size: 28px;
  font-weight: 700 !important;
  color: var(--hdr-color-text);
  margin-bottom: 24px;
}

/* FAQ List */
.section-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ Item */
.section-faq-item {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}

/* Question button */
.section-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Asap", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--hdr-color-text);
  gap: 12px;
  transition: background 0.2s ease;
}

.section-faq-question:hover {
  background: #fafafa;
}

.section-faq-icon {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--hdr-color-accent);
  transition: transform 0.3s ease;
}

/* Answer */
.section-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.section-faq-answer p {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  padding-bottom: 18px;
}

/* Active / Open state */
.section-faq-item--active .section-faq-answer {
  max-height: 300px;
  padding: 4px 20px 0;
}

/* Right Image */
.section-faq-right {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-faq-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


.section-faq-item--active .section-faq-question {
  padding-bottom: 8px;
}


/*Learn Car Driving US page*/

.sec-main {
  background: var(--sec-bg);
  color: var(--sec-text);
  font-family: "Noto Sans";
}

.sec-container {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 0 14px;
}

/* Inner hero */
.sec-inner-hero {
  background: #ddd;
}

.sec-inner-hero__bg {
  min-height: 150px;
  background: linear-gradient(rgba(25, 25, 25, 0.45), rgba(25, 25, 25, 0.45)),
    url("assets/images/bread.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.crd-course__content .abt-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.sec-inner-hero__content {
  padding-top: 14px;
  padding-bottom: 14px;
}

.sec-inner-hero__title {
  margin: 0 0 8px;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}

.sec-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.sec-breadcrumb a,
.sec-breadcrumb span {
  text-decoration: none;
  font-size: 16px;
  font-family: "Noto Sans";
}

.sec-breadcrumb span {
  color: #f1f1f1;
}

.sec-breadcrumb a {
  color: #f2c91c;
  position: relative;
  padding-right: 15px;
  font-family: "Asap", sans-serif;
}

.sec-breadcrumb a:after {
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  transform: rotate(135deg);
  left: 8px;
  position: relative;
  top: -2px;
  color: #f1f1f1 !important;
}


/* Course sections */
.sec-course {
  padding: 26px 0;
}

.sec-course--light {
  background: #fff;
}

.sec-course--alt {
  background: #efefef;
}

.sec-course__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;

}

.crd-course__image-wrap {
  border-radius: 8px;
  overflow: hidden;
}

.crd-course__image {
  width: 100%;
  height: auto;
  display: block;
}

.crd-course__title {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.2;
}

.crd-course__list {
  margin: 0 0 18px;
  padding-left: 40px;
  margin-bottom: 40px !important;
}

.crd-course__list li {
  margin-bottom: 15px;
  font-size: 17px;
  list-style: none;
  position: relative;
}

.crd-course__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 20px;
  left: -32px;
  top: -2px;
  color: #f28120;
}

.crd-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.crd-stat {
  background: #ffffff;
  border-style: dashed;
  border-width: 2px 2px 2px 2px;
  border-color: rgba(116, 88, 4, 1);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.16);
  padding: 15px;
  display: flex;
  gap: 20px;
  align-items: start;
}

.crd-stat__label {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.crd-stat__value {
  margin: 0;
  font-size: 14px;
}

.crd-course__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--sec-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  line-height: 1;
}

.crd-course__note {
  margin: 0;
  font-size: 14px;
  color: #3b3b3b;
  margin-top: 10px;
}

.icon-box i {
  color: #745804;
  margin-top: 5px;
  font-size: 23px;
}

.sec-inner-hero__bg .sec-container {
  width: 1200px;
  padding: 0 15px;
}


/* ==========================================================================
   About Page Section
   ========================================================================== */

.section-aboutpage {
  background: #ffffff;
}

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

/* ── Left Images ── */
.section-aboutpage-images {

  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-aboutpage-img-top {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.section-aboutpage-img-bottom {
  display: flex;
  gap: 6px;
}

.section-aboutpage-img-bottom .section-aboutpage-img {
  width: 50%;
  object-fit: cover;
  border-radius: 6px;
}

.section-aboutpage-img-top .section-aboutpage-img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  display: block;
}

/* ── Right Content ── */
.section-aboutpage-content {
  flex: 1;
}

.section-aboutpage-heading {
  font-size: 28px;
  font-weight: 600 !important;
  color: var(--hdr-color-text);
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-aboutpage-desc {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  text-align: justify;
}

/* ==========================================================================
   Contact Info Section
   ========================================================================== */

.section-contactinfo {
  background: #ffffff;
}

.section-contactinfo-container {
  max-width: var(--hdr-max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Card */
.section-contactinfo-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 40px;
}

/* Vertical Divider */
.section-contactinfo-divider {
  width: 1px;
  background-color: #e0e0e0;
  align-self: stretch;
  flex-shrink: 0;
}

/* Icon */
.section-contactinfo-icon {
  font-size: 36px;
  color: var(--hdr-color-accent);
  margin-bottom: 16px;
}

/* Title */
.section-contactinfo-title {
  font-family: "Asap", sans-serif;
  font-size: 17px;
  font-weight: 600 !important;
  color: var(--hdr-color-text);
  margin-bottom: 16px;
}

/* Body */
.section-contactinfo-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-contactinfo-name {
  font-family: "Asap", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--hdr-color-text);
}

.section-contactinfo-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}



/* ==========================================================================
   TABLET (768px+)
   ========================================================================== */

@media (min-width: 768px) {
  .section {
    padding: 40px 20px;
  }

  .hdr-inner {
    padding: 14px 32px;
    min-height: var(--hdr-height-desktop);
  }

  .hdr-location-icon svg {
    width: 14px;
    height: 18px;
  }

  .hdr-location-text {
    font-size: 13px;
  }

  .hdr-logo-img {
    width: 160px;
  }

  .hdr-menu-bar {
    width: 26px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow--prev {
    left: 24px;
  }

  .hero-arrow--next {
    right: 24px;
  }

  .hero-arrow svg {
    width: 12px;
    height: 20px;
  }

  .hero-pagination {
    bottom: 24px;
    gap: 12px;
  }

  .hero-dot {
    width: 12px;
    height: 12px;
  }


  .ltd-heading {
    font-size: 28px;
  }

  .ltd-intro {
    font-size: 14.5px;
    margin-bottom: 32px;
  }

  .ltd-feature-title {
    font-size: 15px;
  }

  .ltd-feature-desc {
    font-size: 14px;
  }

  .abt-section {
    padding: 70px 32px;
  }

  .abt-heading {
    font-size: 32px;
  }

  .abt-heading-wrap {
    padding: 20px 28px;
  }

  .abt-body-wrap {
    padding: 28px;
  }

  .abt-desc {
    font-size: 16px;
  }

  .abt-content {
    max-width: 560px;
  }

  .tst-section {
    padding: 22px 18px;
  }

  .tst-quote {
    font-size: 15px;

  }

  .tst-name {
    font-size: 36px;
  }

  .tst-car-image-wrap {
    height: 255px;
  }

  .frm-title {
    font-size: 46px;
  }

  .section-faq-heading {
    font-size: 30px;
  }

  .section-faq-question {
    font-size: 15px;
    padding: 18px 22px;
  }

  .section-faq-right {
    flex: 0 0 42%;
  }



  .sec-inner-hero__title {
    font-size: 36px;
  }

  .sec-course__grid {
    grid-template-columns: .75fr 1fr;
    gap: 40px;
  }

  .sec-container.sec-course__grid.sec-course__grid--reverse {
    grid-template-columns: 1fr .75fr !important;
    gap: 40px;
  }

  .sec-container.sec-course__grid.sec-course__grid--reverse ul {
    margin-bottom: 25px !important;
  }

  .sec-course__grid--reverse> :first-child {
    order: 1;
  }

  .sec-course__grid--reverse> :last-child {
    order: 2;
  }

  .section-aboutpage-container {
    gap: 36px;
  }

  .section-aboutpage-images {
    flex: 0 0 340px;
  }

  .section-aboutpage-img-bottom .section-aboutpage-img {
    height: 140px;
  }

  .section-aboutpage-heading {
    font-size: 27px;
  }

  .section-aboutpage-desc {
    font-size: 14.5px;
  }

  .section-contactinfo-card {
    padding: 20px 30px;
  }

  .section-contactinfo-icon {
    font-size: 32px;
  }

  .section-contactinfo-title {
    font-size: 21px;
    margin-bottom: 5px;
  }

  .menu-sidebar {
    width: 600px;
    max-width: 600px;
  }
}


/* ==========================================================================
   DESKTOP (1200px+)
   ========================================================================== */

@media (min-width: 1200px) {

  .section {
    padding: 40px 20px;
  }

  .hdr-inner {
    padding: 0px 32px;
  }

  .hdr-location-text {
    font-size: 16px;
  }

  .hdr-logo-img {
    width: 140px;
    margin-bottom: -36px;
    background: #fff;
    padding: 5px;
    border-bottom: 2px solid var(--hdr-color-accent);
    box-shadow: 0px 7px 27px rgb(0 0 0 / 9%);
  }

  .hero-arrow {
    width: 48px;
    height: 48px;
  }

  .hero-arrow--prev {
    left: 40px;
  }

  .hero-arrow--next {
    right: 40px;
  }

  .hero-pagination {
    bottom: 28px;
  }

  .ltd-container {
    gap: 45px;
  }

  .ltd-image-wrap {
    flex: 0 0 420px;
  }

  .ltd-heading {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .ltd-intro {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .ltd-feature {
    gap: 16px;
    margin-bottom: 28px;
  }

  .ltd-feature-icon {
    width: 30px;
    height: 30px;
  }

  .ltd-feature-icon i {
    font-size: 14px;
  }

  .ltd-feature-title {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 500;
  }

  .ltd-feature-desc {
    font-size: 14px;
  }

  .abt-section {
    padding: 80px 48px;
  }

  .abt-heading {
    font-size: 42px;
  }

  .abt-heading-wrap {
    padding: 22px 32px;
  }

  .abt-body-wrap {
    padding: 32px;
    gap: 28px;
  }

  .abt-desc {
    font-size: 15px;
    line-height: 2.1;
  }


  .abt-content {
    max-width: 620px;
  }

  .tst-wrap {
    grid-template-columns: 60% 40%;
  }

  .tst-slider,
  .tst-slide {
    min-height: 260px;
  }

  .tst-car-image-wrap {
    height: 270px;
  }

  .frm-panel {
    padding: 28px 28px 24px;
  }

  .frm-title {
    font-size: 30px;
  }

  .section-faq-container {
    gap: 60px;
    align-items: center;
  }

  .section-faq-heading {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .section-faq-question {
    font-size: 16px;
    padding: 20px 24px;
  }

  .section-faq-answer p {
    font-size: 15px;
  }

  .section-faq-right {
    flex: 0 0 44%;
  }

  .section-faq-container {

    gap: 30px;
  }

  .section-faq-heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .section-faq-question {
    font-size: 18px;
    padding: 16px 16px;
  }

  .section-faq-answer p {
    font-size: 15px;
  }

  .sec-container {
    padding: 0 20px;
  }

  .sec-course {
    padding: 34px 0;
  }

  .crd-course__title {
    font-size: 32px;
  }

  .section-aboutpage-container {
    gap: 55px;
  }

  .section-aboutpage-images {
    flex: 0 0 420px;
  }

  .section-aboutpage-img-bottom .section-aboutpage-img {
    height: 170px;
  }

  .section-aboutpage-heading {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .section-aboutpage-desc {
    font-size: 16px;
    line-height: 2;
  }

  .section-contactinfo-card {
    padding: 24px 50px;
  }

  .section-contactinfo-icon {
    font-size: 38px;
    margin-bottom: 18px;
  }

  .section-contactinfo-title {
    font-size: 23px;
    margin-bottom: 5px;
  }

  .section-contactinfo-name {
    font-size: 17px;
  }

  .section-contactinfo-text {
    font-size: 16px;
  }

  .menu-sidebar {
    width: 600px;
    max-width: 600px;
  }

}

/* ==========================================================================
   Max-width: 767px
   ========================================================================== */

@media (max-width: 767px) {

  .crd-stats {
    grid-template-columns: repeat(1, 1fr);
  }

  .icon-box i {
    margin-bottom: 15px;
  }

  .crd-stat {
    flex-direction: column !important;
    gap: 0 20px;
    text-align: center;
    justify-content: center;

    align-items: center;
  }

  .ltd-intro {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .section {
    padding: 40px 20px;
  }


  .section-faq-left {
    flex: 1;
  }

  .section-faq {
    background: #ededed !important;

  }


  .frm-title {
    font-size: 30px;
  }

  .abt-btn {
    font-size: 14px;
  }

  .hero-slider-viewport {
    aspect-ratio: 1700 / 747;
    max-height: 93vh;
  }

  .ltd-container {
    flex-direction: column !important;
  }

  .section-aboutpage-container {
    flex-direction: column;
    gap: 24px;
  }

  .section-aboutpage-images {
    flex: none;
    width: 100%;
  }

  .section-aboutpage-img-bottom .section-aboutpage-img {
    height: 120px;
  }

  .section-aboutpage-heading {
    font-size: 27px;
    margin-bottom: 14px;
  }

  .section-aboutpage-desc {
    font-size: 15px;
    line-height: 1.8;
  }

  .section-contactinfo-container {
    flex-direction: column;
    align-items: center;
  }

  .section-contactinfo-divider {
    width: 80%;
    height: 1px;
    align-self: center;
  }

  .section-contactinfo-card {
    padding: 24px 20px;
    width: 100%;
  }

  .section-contactinfo-icon {
    font-size: 30px;
  }

  .section-contactinfo-title {
    font-size: 21px;
    margin-bottom: 5px;
  }

  .section-contactinfo-text {
    font-size: 15px;
  }

  .section-contactinfo-name {
    font-size: 17px;
  }


}

@media (min-width: 922px) and (max-width: 1200px) {

  /* Right Content */
  .ltd-content {
    flex: 1;
    padding-top: 10px;

  }
}

@media (max-width: 992px) {

  .hero-arrow {
    display: none;
  }

  .sec-inner-hero__bg {
    min-height: 150px;
  }

  .sec-inner-hero__bg .sec-container {
    padding: 0 20px;

  }

  /* Right Content */
  .ltd-container {
    flex-direction: column !important;
    align-items: center;
    gap: 40px;
  }

  .ltd-image-wrap {
    width: 100%;
  }

  .tst-slider,
  .tst-slide {
    min-height: 335px
  }

  .tst-quote {
    font-size: 14px;
  }

  .tst-carousel {
    height: 700px;
  }

  .footer-inner-container {
    justify-content: center;
    gap: 10px 20px;
  }

  .crd-course__list li {
    font-size: 16px;
  }

  .crd-course__title {
    font-size: 27px;
  }

  .crd-course__content .abt-btn {
    font-size: 15px;
  }

  .section-aboutpage-container {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    max-width: 100%;
    width: 100%;
  }

  /*Mobile Menu*/

  .hdr-logo {
    justify-self: left;
    grid-column: 1;
  }

  .hdr-logo-img {
    margin-bottom: -36px;
    background: #fff;
    padding: 5px;
    border-bottom: 2px solid #f28120;
    box-shadow: 0px 7px 27px rgb(0 0 0 / 9%);
    width: 140px;
  }

  .hdr-inner {
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
  }

  .hdr-location {
    display: none;
  }
}

@media(min-width:992px) {

  .tst-wrap {
    grid-template-columns: 58% 42%;
  }

}

/* ==========================================================================
   SMALL MOBILE — hide location to preserve logo centering
   ========================================================================== */

@media (max-width: 768px) {
  .hdr-location-text {
    display: none;
  }

  .hdr-location-icon {
    display: none;
  }

  /* Keep grid balanced: empty left column, logo center, menu right */
  .hdr-location {
    visibility: hidden;
    width: 40px;
  }

  .ltd-heading {
    font-size: 27px;
    margin-bottom: 10px;
  }

  .ltd-intro {
    font-size: 14px;
  }

  .ltd-feature {
    gap: 12px;
    margin-bottom: 20px;
  }

  .ltd-feature-icon {
    width: 30px;
    height: 30px;
  }

  .ltd-feature-title {
    font-size: 18px;
  }

  .ltd-feature-desc {
    font-size: 14px;
  }

  .abt-section {
    padding: 40px 16px;
  }

  .abt-heading {
    font-size: 31px;
  }

  .abt-heading-wrap {
    padding: 14px 18px;
  }

  .abt-body-wrap {
    padding: 18px;
    gap: 18px;
  }

  .abt-desc {
    font-size: 15px;
    line-height: 2.1;
  }


  .abt-content {
    max-width: 100%;
  }
}