/* ================= BASE ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#fafafa;
  color:#222;
}

/* ================= HEADER ================= */
.header{
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(12px);
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  width:60px;
}

.logo h1{
  font-size:20px;
  color:#111;
}

/* NAV */
nav ul{
  display:flex;
  list-style:none;
  gap:18px;
}

nav a{
  text-decoration:none;
  color:#333;
  transition:0.3s;
}

nav a:hover{
  color:#800000;
}

/* ACTIVE CONTACT */
.active-contact{
  background:linear-gradient(135deg,#800000,#b30000);
  color:#fff !important;
  padding:8px 14px;
  border-radius:25px;
}

/* ================= HERO ================= */
.contact-hero{
  position:relative;
  height:78vh;
  overflow:hidden;
}

/* SLIDER */
.hero-slider{
  position:absolute;
  width:100%;
  height:100%;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  animation:fade 18s infinite;
}

.slide:nth-child(1){animation-delay:0s;}
.slide:nth-child(2){animation-delay:6s;}
.slide:nth-child(3){animation-delay:12s;}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.9);
  transform:scale(1.1);
}

@keyframes fade{
  0%{opacity:0;}
  10%{opacity:1;}
  40%{opacity:1;}
  50%{opacity:0;}
  100%{opacity:0;}
}

/* OVERLAY */
.contact-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(255,255,255,0.2),rgba(128,0,0,0.1));
}

/* HERO TEXT */
.hero-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  z-index:2;
}

.hero-text h1{
  font-size:44px;
  color:#800000;
}

/* MARQUEE BOX */
.marquee{
  margin-top:15px;
  overflow:hidden;
  display:flex;
  justify-content:center;
}

.marquee-text{
  background:rgba(255,255,255,0.8);
  padding:12px 25px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  color:#111;
  white-space:nowrap;
  animation:move 18s linear infinite;
}

@keyframes move{
  0%{transform:translateX(120%);}
  100%{transform:translateX(-120%);}
}


/* ================= COLOR SYSTEM ================= */
:root{
  --maroon:#800000;
  --black:#0b0b0b;
  --white:#ffffff;
  --soft:#f6f6f6;
}

/* ================= CONTACT SECTION ================= */
.contact-main{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:80px 8%;
  background:linear-gradient(135deg,#ffffff,#f8f8f8);
  animation:pageFade 1s ease-in-out;
}

/* PAGE ENTER ANIMATION */
@keyframes pageFade{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= CONTACT INFO ================= */
.contact-info{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

/* INFO CARD (CINEMATIC GLASS) */
.info-card{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(15px);
  border:1px solid rgba(128,0,0,0.08);
  border-radius:16px;
  padding:25px;

  box-shadow:0 10px 25px rgba(0,0,0,0.05);

  transition:0.4s ease;
  transform:translateY(0);

  animation:cardEntrance 0.8s ease forwards;
}

/* stagger effect */
.info-card:nth-child(1){animation-delay:0.1s;}
.info-card:nth-child(2){animation-delay:0.2s;}
.info-card:nth-child(3){animation-delay:0.3s;}
.info-card:nth-child(4){animation-delay:0.4s;}

@keyframes cardEntrance{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* HOVER EFFECT */
.info-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 15px 35px rgba(128,0,0,0.12);
  border:1px solid rgba(128,0,0,0.2);
}

/* TITLES */
.info-card h3{
  color:var(--maroon);
  font-size:18px;
  margin-bottom:10px;
}

/* LINKS */
.info-card a{
  display:inline-block;
  margin-top:10px;
  padding:10px 18px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;

  background:linear-gradient(135deg,var(--maroon),#a00000);
  color:white;

  transition:0.3s ease;
}

/* BUTTON HOVER */
.info-card a:hover{
  transform:scale(1.05);
  box-shadow:0 10px 20px rgba(128,0,0,0.25);
}

/* ================= CONTACT FORM ================= */
.contact-form{
  background:linear-gradient(135deg,#ffffff,#fafafa);
  border:1px solid rgba(0,0,0,0.05);
  border-radius:18px;
  padding:35px;

  box-shadow:0 10px 30px rgba(0,0,0,0.05);

  animation:formSlide 1s ease;
}

@keyframes formSlide{
  from{
    opacity:0;
    transform:translateX(30px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

.contact-form h2{
  color:var(--maroon);
  margin-bottom:20px;
}

/* INPUTS */
input,textarea{
  width:100%;
  padding:12px 14px;
  margin-bottom:12px;

  border:1px solid #eee;
  border-radius:10px;
  outline:none;

  transition:0.3s;
}

/* FOCUS EFFECT */
input:focus,textarea:focus{
  border-color:var(--maroon);
  box-shadow:0 0 10px rgba(128,0,0,0.1);
}

/* BUTTON */
button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;

  background:linear-gradient(135deg,var(--maroon),#b30000);
  color:white;
  font-weight:700;

  cursor:pointer;
  transition:0.3s ease;
}

/* BUTTON HOVER */
button:hover{
  transform:scale(1.03);
  box-shadow:0 12px 25px rgba(128,0,0,0.25);
}

/* ================= CTA ================= */
.contact-cta{
  text-align:center;
  padding:70px 20px;

  background:linear-gradient(135deg,var(--maroon),#5a0000);
  color:white;

  position:relative;
  overflow:hidden;
}

/* cinematic glow overlay */
.contact-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle,rgba(255,255,255,0.15),transparent);
}

/* CTA TEXT */
.contact-cta h2{
  font-size:28px;
  margin-bottom:15px;
}

/* CTA BUTTON */
.contact-cta a{
  display:inline-block;
  padding:12px 25px;
  background:white;
  color:var(--maroon);
  border-radius:30px;
  font-weight:700;
  text-decoration:none;

  transition:0.3s;
}

.contact-cta a:hover{
  transform:scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

  .contact-main{
    grid-template-columns:1fr;
  }

  .contact-info{
    grid-template-columns:1fr;
  }

}

/* ================= DIRECTION SECTION ================= */
.direction-section{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:30px;
  padding:80px 8%;
  background:linear-gradient(135deg,#fafafa,#ffffff);
}


/* ================= SMART MAP SECTION ================= */
.smart-map-section{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:30px;
  padding:80px 8%;
  background:linear-gradient(135deg,#fafafa,#ffffff);
}

/* ================= MAP BOX ================= */
.smart-map-box{
  background:white;
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  animation:fadeUp 0.8s ease;
}

.smart-map-box h2{
  color:#800000;
  margin-bottom:8px;
}

.smart-map-box p{
  margin-bottom:15px;
  color:#555;
}

/* MAP */
.smart-map-box iframe{
  width:100%;
  height:330px;
  border:0;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ================= SMART BUTTON ================= */
.map-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 20px;
  border-radius:30px;

  background:linear-gradient(135deg,#800000,#b30000);
  color:white;
  text-decoration:none;
  font-weight:700;

  transition:0.3s;
}

.map-btn:hover{
  transform:scale(1.05);
  box-shadow:0 12px 25px rgba(128,0,0,0.25);
}

/* ================= INFO BOX ================= */
.smart-info-box{
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(12px);
  border:1px solid rgba(128,0,0,0.08);
  border-radius:18px;
  padding:25px;

  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  animation:fadeUp 1s ease;
}

.smart-info-box h3{
  color:#800000;
  margin-bottom:15px;
}

/* INFO ITEMS */
.info-item{
  margin-bottom:15px;
  padding:12px;
  border-radius:12px;
  background:#fff;
  border:1px solid #f0f0f0;

  transition:0.3s;
}

.info-item:hover{
  transform:translateX(5px);
  border-left:4px solid #800000;
}

.info-item span{
  font-weight:700;
  color:#333;
}

.info-item p{
  margin-top:5px;
  color:#666;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .smart-map-section{
    grid-template-columns:1fr;
  }
}

/* ================= TRANSPORT BOX ================= */
.transport-box{
  background:linear-gradient(135deg,#fff,#fff5f5);
  border:1px solid rgba(128,0,0,0.1);
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  animation:fadeUp 1s ease;
}

.transport-box h2{
  color:#800000;
  margin-bottom:10px;
}

/* DRIVER CARD */
.driver-card{
  display:flex;
  gap:15px;
  margin-top:15px;
  background:white;
  padding:15px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

/* HOVER EFFECT */
.driver-card:hover{
  transform:translateY(-6px);
}

/* DRIVER IMAGE */
.driver-card img{
  width:80px;
  height:80px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #800000;
}

/* DRIVER INFO */
.driver-info h3{
  color:#111;
  margin-bottom:5px;
}

.driver-info p{
  font-size:13px;
  color:#555;
}

/* CALL BUTTON */
.call-btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 18px;
  background:linear-gradient(135deg,#800000,#b30000);
  color:white;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.call-btn:hover{
  transform:scale(1.05);
  box-shadow:0 10px 20px rgba(128,0,0,0.25);
}

/* ================= ANIMATION ================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .direction-section{
    grid-template-columns:1fr;
  }

  .driver-card{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}

/* ================= FOOTER ================= */
.footer{
    background:#0f0f0f;
    color:white;
    padding-top:70px;
    margin-top:80px;
    position:relative;
}

/* CONTAINER */
.footer-container{
    width:90%;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;

    padding-bottom:50px;
}

/* FOOTER BOX */
.footer-box h3{
    font-size:22px;
    margin-bottom:20px;
    color:#fff;
    position:relative;
}

/* UNDERLINE */
.footer-box h3::after{
    content:'';
    width:50px;
    height:3px;
    background:#800000;
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:10px;
}

/* LOGO */
.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.footer-logo img{
    width:55px;
}

.footer-logo h2{
    font-size:22px;
    margin:0;
}

.footer-logo span{
    color:#ccc;
    font-size:13px;
}

/* PARAGRAPH */
.footer-box p{
    color:#bbb;
    line-height:1.8;
    font-size:15px;
}

/* LINKS */
.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#fff;
    padding-left:6px;
}

/* SOCIALS */
.footer-socials{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.footer-socials a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#1b1b1b;

    color:white;
    text-decoration:none;

    transition:0.3s;
}

.footer-socials a:hover{
    background:#800000;
    transform:translateY(-5px);
}

/* BUTTON */
.footer-btn{
    display:inline-block;
    margin-top:20px;

    background:linear-gradient(135deg,#800000,#5c0000);
    color:white;

    padding:12px 22px;
    border-radius:30px;

    text-decoration:none;
    font-weight:600;

    transition:0.3s;
}

.footer-btn:hover{
    transform:scale(1.05);
}

/* HOURS */
.footer-hours{
    margin-top:20px;
    color:#eee;
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);

    padding:25px 10%;
    text-align:center;

    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#aaa;
    font-size:14px;
}

/* CREDIT */
.footer-credit{
    color:#800000;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .footer{
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-bottom{
        flex-direction:column;
    }

}
