:root{
  --black:#050404;
  --red:#EC1F25;
  --white:#FFFFFF;
  --soft:#f5f5f5;
  --gray:#9c9c9c;
}

/* =========================
GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'PT Sans Narrow',sans-serif;
  background:var(--white);
  color:var(--black);
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

section{
  padding:110px 0;
}

.container{
  width:min(1240px,92%);
  margin:auto;
}

.section-tag{
  color:var(--red);
  font-size:14px;
  font-weight:700;
  letter-spacing:3px;
  margin-bottom:16px;
  display:inline-block;
}

.section-heading{
  font-size:64px;
  line-height:.95;
  font-weight:700;
  margin-bottom:20px;
}

.section-text{
  font-size:20px;
  color:#555;
}

/* =========================
NAVBAR
========================= */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background: var(--white);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar .container{
  min-height:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:60px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:42px;
}

.nav-links a{
  color:var(--black);
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--red);
  transition:.35s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:12px;
}

.menu-toggle{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  color: var(--black);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* =========================
BUTTONS
========================= */

.cta-btn{
  border:none;
  background:var(--red);
  color:#fff;
  padding:15px 28px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
  transition:.3s;
}

.cta-btn:hover{
  transform:translateY(-3px);
  background:#ff2e35;
}

.btn-outline-modern{
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  padding:15px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.btn-outline-modern:hover{
  background:#fff;
  color:#111;
}

/* =========================
HERO
========================= */

.hero-modern{
  min-height:80vh;
  background:
  linear-gradient(rgba(5,4,4,.78),rgba(5,4,4,.78)),
  url("../img/hero1.jpg") center/cover;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
}

.hero-modern::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  background:rgba(236,31,37,.12);
  border-radius:50%;
  top:-250px;
  right:-150px;
  filter:blur(30px);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  margin-bottom:28px;
  font-size:14px;
  letter-spacing:2px;
}

.hero-content h1{
  font-size:108px;
  line-height:.88;
  color:#fff;
  margin-bottom:26px;
  font-weight:700;
  letter-spacing:-5px;
}

.hero-content h1 span{
  color:var(--red);
}

.hero-content p{
  font-size:22px;
  color:rgba(255,255,255,.78);
  max-width:620px;
  line-height:1.7;
  margin-bottom:40px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.hero-card{
  position:relative;
}

.hero-image{
  border-radius:36px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 70px rgba(0,0,0,.45);
}

.hero-floating{
  position:absolute;
  right:-20px;
  bottom:30px;
  background:#fff;
  color:#111;
  padding:18px 22px;
  border-radius:24px;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.hero-floating h4{
  font-size:28px;
  margin-bottom:4px;
}

.hero-floating p{
  font-size:14px;
  color:#666;
}

/* =========================
ABOUT
========================= */
/* =========================
ABOUT REDESIGN
========================= */

.about-modern{
  background:#fff;
  overflow:hidden;
}

.about-wrapper{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:90px;
  align-items:center;
}

.about-images{
  position:relative;
}

.about-main-image{
  position:relative;
  border-radius:38px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.about-main-image img{
  width:100%;
  height:760px;
  object-fit:cover;
}

.about-main-image::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.22), transparent);
  z-index:1;
}

.about-floating-card{
  position:absolute;
  right:-30px;
  bottom:40px;
  background:var(--red);
  color:#fff;
  padding:30px;
  border-radius:30px;
  box-shadow:0 20px 50px rgba(236,31,37,.28);
}

.about-floating-card h3{
  font-size:52px;
  line-height:1;
  margin-bottom:10px;
}

.about-floating-card p{
  font-size:16px;
  line-height:1.6;
  margin:0;
}

.about-content .section-heading{
  margin-bottom:28px;
}

.about-content .section-text{
  max-width:100%;
}

.about-features-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.about-feature{
  padding:24px;
  border:1px solid #eee;
  border-radius:26px;
  display:flex;
  align-items:flex-start;
  gap:18px;
  transition:.35s;
  background:#fff;
}

.about-feature:hover{
  transform:translateY(-5px);
  border-color:var(--red);
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}

.feature-icon{
  min-width:58px;
  height:58px;
  border-radius:18px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.about-feature h4{
  font-size:22px;
  margin-bottom:8px;
}

.about-feature p{
  color:#666;
  line-height:1.7;
  margin:0;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  .about-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .about-main-image{
    max-width:760px;
    margin:auto;
  }

  .about-main-image img{
    height:auto;
  }

  .about-features-grid{
    grid-template-columns:1fr;
  }

  .about-floating-card{
    right:20px;
    bottom:20px;
  }
}

@media(max-width:768px){

  .about-content{
    text-align:center;
  }

  .about-feature{
    text-align:left;
  }

  .about-floating-card{
    padding:22px;
  }

  .about-floating-card h3{
    font-size:40px;
  }
}

@media(max-width:480px){

  .about-main-image{
    border-radius:28px;
  }

  .about-feature{
    flex-direction:column;
  }

  .about-floating-card{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
    width:100%;
  }
}

/* =========================
MENU
========================= */

.menu-modern{
  background:#0d0d0d;
  color:#fff;
}

.menu-top{
  text-align:center;
  margin-bottom:60px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
}

.menu-card{
  background:#171717;
  border-radius:34px;
  overflow:hidden;
  transition:.4s;
  border:1px solid rgba(255,255,255,.06);
}

.menu-card:hover{
  transform:translateY(-8px);
}

.menu-card img{
  height:270px;
  object-fit:cover;
}

.menu-content{
  padding:28px;
  background-color: var(--red);
}

.menu-content h3{
  font-size:32px;
  margin-bottom:14px;
}

.menu-content p{
  color:#aaa;
  margin-bottom:22px;
  line-height:1.7;
}

.menu-btn{
  width:100%;
  border:none;
  background:var(--black);
  color:#fff;
  padding:16px;
  border-radius:16px;
  font-weight:700;
  letter-spacing:1px;
}

/* =========================
TIMETABLE
========================= */

.timetable-modern{
  background:#fff;
}

.timetable-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.timetable-card{
  background:#fff;
  border-radius:32px;
  padding:30px;
  border:1px solid #eee;
  box-shadow:0 10px 40px rgba(0,0,0,.05);
}

/* =========================
MAP
========================= */

.map-modern{
  background:#0d0d0d;
  color:#fff;
}

.map-layout{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:30px;
}

.map-sidebar{
  background:linear-gradient(180deg,#1a1a1a,#111);
  border-radius:36px;
  padding:45px;
}

.map-sidebar h2{
  font-size:44px;
  margin-bottom:30px;
}

.contact-row{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:28px;
}

.contact-row i{
  width:52px;
  height:52px;
  border-radius:16px;
  background:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
}

.map-frame{
  border-radius:36px;
  overflow:hidden;
  min-height:520px;
}

.map-frame iframe{
  width:100%;
  height:100%;
  border:none;
}

/* =========================
FOOTER
========================= */

.footer-modern{
  background:#050404;
  border-top:1px solid rgba(255,255,255,.08);
  padding:40px 0;
  text-align:center;
  color:#999;
}

.footer-modern a{
  color: var(--red);
  text-decoration:none;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  section{
    padding:90px 0;
  }

  .hero-grid,
  .about-grid,
  .map-layout,
  .timetable-wrapper{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:78px;
  }

  .section-heading{
    font-size:52px;
  }

  .about-image{
    max-width:760px;
    margin:auto;
  }

  .about-image img{
    min-height:auto;
  }
}

@media(max-width:768px){

  .menu-toggle{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:#0f0f0f;
    flex-direction:column;
    padding:30px;
    gap:24px;
    display:none;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .nav-links.active{
    display:flex;
  }

  .hero-modern{
    padding-top:130px;
    text-align:center;
  }

  .hero-content h1{
    font-size:58px;
    letter-spacing:-2px;
  }

  .hero-content p{
    font-size:18px;
    margin-inline:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .section-heading{
    font-size:42px;
  }

  .map-sidebar{
    padding:32px;
  }

  .cta-btn{
    padding:14px 20px;
  }
}

@media(max-width:480px){

  .hero-content h1{
    font-size:44px;
  }

  .section-heading{
    font-size:34px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .cta-btn,
  .btn-outline-modern{
    width:100%;
    text-align:center;
  }

  .menu-card img{
    height:230px;
  }
}
/* 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(--red);
  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);
}

