:root {
  --primary: #D22127;
  --soft: #B3E3F4;
  --white: #ffffff;
  --dark: #111;
  --muted: #555;
}

/* ================= GLOBAL ================= */
body {
  margin: 0;
  font-family: 'PT Sans Narrow', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
}

/* ================= NAVBAR ================= */
.navbar {
  background: var(--soft);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links a {
  margin: 0 14px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ================= BUTTONS ================= */
.cta,
.btn-main {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.25s;
}

.cta:hover,
.btn-main:hover {
  background: #a8181c;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
}

/* ================= HERO ================= */
/* ================= HERO V3 ================= */

/* ================= HERO V4 CLEAN BLUE DESIGN ================= */

.hero-v4 {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: #f9fbfc;
}

/* BLUE SHAPES (modern design layer) */
.hero-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #B3E3F4;
  border-radius: 50%;
  top: -200px;
  right: -150px;
  z-index: 1;
}

.hero-shape-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(179, 227, 244, 0.6);
  border-radius: 50%;
  bottom: -150px;
  left: -120px;
  z-index: 1;
}

/* LAYOUT */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero-text h5 {
  color: #D22127;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  color: #111;
}

.hero-text p {
  margin: 15px 0 25px;
  color: #555;
  letter-spacing: 2px;
}

/* IMAGE */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* BUTTON */
.btn-main {
  background: #D22127;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-main:hover {
  background: #a8181c;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-image {
    margin-top: 20px;
  }
}

/* ================= TITLES ================= */
.title-v2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

/* ================= ABOUT ================= */

/* ================= ABOUT V4 ================= */

.about-v4 {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* ================= ABOUT V4 SHAPES (FIXED) ================= */

.about-v4 {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* SOFT BLUE WAVE SHAPE (LESS RANDOM THAN BIG CIRCLE) */
.about-v4::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center,
      rgba(179, 227, 244, 0.9) 0%,
      rgba(179, 227, 244, 0.4) 45%,
      transparent 70%);

  top: -250px;
  right: -250px;
  z-index: 1;
  transform: rotate(15deg);
}

/* SMALL ACCENT BLOB (BALANCE) */
.about-v4::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(210, 33, 39, 0.08);
  border-radius: 50%;

  bottom: -120px;
  left: -120px;
  z-index: 1;
}

/* LAYOUT */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* TEXT */
.about-text h2 {
  color: #D22127;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  margin-bottom: 15px;
  font-size: 16px;
}

/* BUTTON */
.btn-main {
  background: #D22127;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-main:hover {
  background: #a8181c;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 992px) {

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    margin: 0 auto;
  }

  .about-text h3 {
    font-size: 32px;
  }
}

/* ================= MENU ================= */
.menu-v2 {
  padding: 80px 0;
}

.menu-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.menu-scroll::-webkit-scrollbar {
  height: 6px;
}

.menu-scroll::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.menu-item-v2 {
  min-width: 260px;
  background: var(--soft);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.menu-item-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.menu-item-v2 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-item-v2 h4 {
  padding: 12px 15px 0;
}

.menu-item-v2 p {
  padding: 0 15px;
  color: var(--muted);
  font-size: 14px;
}

.menu-item-v2 button {
  margin: 15px;
  width: calc(100% - 30px);
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px;
  border-radius: 30px;
}

/* ================= TIMETABLE ================= */
.time-v2 {
  padding: 80px 0;
  background: #f9fbfc;
}

.time-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.time-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* ================= MAP ================= */
.map-v2 {
  padding: 80px 0;
}

.map-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 25px;
  align-items: center;
}

.map-info {
  font-size: 15px;
  color: var(--muted);
}

.map-box iframe {
  width: 100%;
  height: 360px;
  border-radius: 14px;
  border: none;
}

/* ================= FOOTER ================= */
.footer-v2 {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 40px 0;
}

.footer-v2 span {
  color: #fff;
}

/* ================= FLOATING CTA ================= */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right img {
    margin: 20px auto 0;
  }

  .map-box {
    grid-template-columns: 1fr;
  }

  .time-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background: white;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a{
    padding: 10px;
  }
  .hero-left h1 {
    font-size: 34px;
  }
}

/* TIMETABLE */
.timetable-area {
  background: #f5f5f5;
  padding: 80px 10%;
}

.timetable-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  text-align: center;
}

/* TABLE */
table.amrt-timetable-table th {
  background: var(--primary);
  color: white;
  padding: 10px;
}

table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
  font-size: 18px;
}

table.amrt-timetable-table td.amrt-label-td {
  font-size: 16px;
}

table.amrt-timetable-table td {
  padding: 8px;
  color: var(--text);
}

i {
  color: var(--primary);
}

footer{
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 40px 0;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}
footer a:hover{
  color: var(--soft);
}