/* hero section */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 130%; /* 🔥 more height for safe crop */
  top: 0%; /* 🔥 move image UP */

  background: url("images/hero.jpg") no-repeat;
  background-size: cover;

  /* 🔥 FINAL POSITION */
  background-position: 65% 35%;

  z-index: -1;
}
/* smooth zoom */
.hero-title,
.hero-subtitle,
.hero-tag,
.hero-buttons {
  transition: transform 0.2s linear;
  will-change: transform;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2)
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* TITLE */
.hero-title {
  font-size: 40px;
  font-weight: bold;
  animation: fadeUp 1s ease;
}

/* SUBTITLE */
.hero-subtitle {
  margin: 15px 0;
  font-size: 18px;
  animation: fadeUp 1.5s ease;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 20px;
  animation: fadeUp 2s ease;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  margin: 5px;
  text-decoration: none;
  color: white;
  display: inline-block;
}

.primary {
  background: #ff5722;
}

.secondary {
  background: #25D366;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px){
  .hero-title {
    font-size: 28px;
  }
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('images/slide3.png') center/cover no-repeat;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(58, 41, 244, 0.8),
    rgba(173, 186, 211, 0.6)
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

/* TITLE */
.hero-title {
  font-size: 32px;
  max-width: 90%;
}

/* BUTTONS */
.hero-btns {
  margin-top: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  margin: 5px;
  text-decoration: none;
  color: white;
}

.call {
  background: #ff5722;
}

.whatsapp {
  background: #25D366;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8fafc;
  color: #111;
}


/* Hero Animation Section */

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6); /* 🔥 depth */
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

/* GRADIENT OVERLAY IMPROVE */
.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7) 20%,
    rgba(0,0,0,0.3) 50%,
    transparent 100%
  );
}
/* BUTTON PREMIUM STYLE */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: linear-gradient(45deg, #ff5722, #ff9800);
}

.secondary {
  background: linear-gradient(45deg, #00c853, #25D366);
}

/* hover */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
/* TEXT ANIMATION */

.hero-content {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* POSITIONING IMPROVE */
.hero-content {
  align-items: flex-start;
  text-align: left;
  max-width: 600px;
  margin-left: 5%;
}



/* Last point */
.hero-tag {
  background: rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}
/* Navbar Section */
/* NAVBAR */
.navbar {
  width: 100%;
  background: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* CONTAINER */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 50px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px; /* spacing between items */
}

/* LINKS */
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
}

/* BOOK BUTTON */
.book-btn {
  background: #16a34a;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 20px;
  margin-left: 10px;
  transition: 0.3s;
}

.book-btn:hover {
  background: #15803d;
}

/* MENU ICON (HIDE DESKTOP) */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #fff;
    width: 220px;
    padding: 20px;
    gap: 15px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}
/* about section */

/* ABOUT */
.about {
  padding: 80px 20px;
  background: #fff;
}

/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  color: #ff5722;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
}

/* POINTS */
.about-points div {
  margin-bottom: 8px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff5722;
  color: white;
  border-radius: 20px;
  text-decoration: none;
}

/* IMAGE */
.about-img {
  flex: 1;
  text-align: center;
}

.about-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
}

/* STATS */
.about-stats {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.stat h3 {
  color: #ff5722;
  font-size: 28px;
}

/* MOBILE */
@media(max-width:768px){
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    flex-direction: column;
  }
}
/* ================= SERVICES ================= */
/* SERVICES */
.services {
  padding: 70px 20px;
  background: #f8fafc;
  text-align: center;
}

.services h2 {
  color: #ff5722;
  margin-bottom: 30px;
}

/* GRID */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

/* CARD */
.service-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
}

/* ICON */
.icon {
  font-size: 35px;
  margin-bottom: 10px;
}

/* TEXT */
.service-top h3 {
  margin-bottom: 5px;
}

.service-top p {
  color: #666;
  font-size: 14px;
}

/* MORE BUTTON */
.more-btn {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  background: #ff5722;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

/* HIDDEN CONTENT */
/* HIDE DEFAULT */
.service-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

/* SHOW WHEN ACTIVE */
.service-card.active .service-content {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

/* CONTENT BOX */
.service-content {
  background: #f9fafb;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #ff6b00;
}

/* TEXT */
.service-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* STRONG TEXT */
.service-content strong {
  color: #000;
}

/* BOOK BUTTON INSIDE */
.service-content .book-btn {
  display: inline-block;
  margin-top: 10px;
  background: #16a34a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

/* HOVER EFFECT */
.service-content .book-btn:hover {
  background: #15803d;
}
/* ================= STATES ================= */

.states {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.states h2 {
  color: #ff5722;
  margin-bottom: 30px;
}

/* CARD */

/* CARD */
.state-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* HOVER */
.state-card:hover {
  transform: translateY(-3px);
}

/* HEADER */
.state-header {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* IMAGE */
.state-header img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

/* TITLE */
.state-header h3 {
  flex: 1;
  font-size: 18px;
  margin: 0;
}

/* ARROW */
.state-header .arrow {
  font-size: 18px;
  transition: 0.3s;
}

/* CONTENT (HIDE) */
.state-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

/* ACTIVE SHOW */
.state-card.active .state-content {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

/* ROTATE ARROW */
.state-card.active .arrow {
  transform: rotate(180deg);
}

/* CONTENT TEXT */
.state-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* HIGHLIGHT */
.state-content strong {
  color: #000;
}
.state-card.active {
  border-left: 4px solid #ff6b00;
}
/* card */

/* IMAGE FIX */
.icon {
  width: 100%;
  height: 160px;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width:768px){
  .icon {
    height: auto;
  }

  .icon img {
    height: auto;
    object-fit: contain;
  }
}
/* HOVER ZOOM EFFECT 🔥 */
.service-card:hover .icon img {
  transform: scale(1.05);
}
.icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  top: 0;
  left: 0;
}
.icon {
  position: relative;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* car section */
/* teriff section */

.tariff {
  padding: 50px 20px;
  background: #f9f9f9;
}

.tariff h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #ff5722;
}

/* TABS */
.tabs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.tab-btn {
  padding: 10px 15px;
  border: none;
  background: #eee;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

.tab-btn.active {
  background: #ff5722;
  color: white;
}

/* CONTENT */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


/* ================= FLEET ================= */

.tariff {
  padding: 40px 20px;
  background: #f8f8f8;
}

.tariff-title {
  text-align: center;
  color: #ff5722;
  margin-bottom: 30px;
}

.tariff-item {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* HEADER */
.tariff-header {
  padding: 15px;
  background: #eee;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

/* SUB MENU */
.tariff-submenu {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.tariff-item.active .tariff-submenu {
  max-height: 1000px;
}

/* SUB HEADER */
.tariff-sub-header {
  padding: 12px;
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

/* CONTENT */
.tariff-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  padding: 0 15px;
}

.tariff-item.active > .tariff-content {
  max-height: 2000px;
  padding: 15px;
}


/* TABLE */
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.tariff-table th {
  background: #ff5722;
  color: #fff;
  padding: 10px;
}

.tariff-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* BUTTON */
.book-btn {
  background: green;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
}

/* NOTES */
.notes {
  margin-top: 10px;
}

/* why chose us */

/* ================= WHY ================= */

.why {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #fff5f0);
  text-align: center;
}

.why h2 {
  color: #ff5722;
  margin-bottom: 40px;
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
}

/* CARD */
.why-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* 🔥 HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255,87,34,0.3);
}

/* ICON */
.why-icon {
  font-size: 35px;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  color: #666;
  font-size: 14px;
}

/* 🔥 GLOW BORDER ANIMATION */
.why-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,#ff5722,#ff9800);
  bottom: 0;
  left: -100%;
  transition: 0.4s;
}

.why-card:hover::before {
  left: 0;
}
.why-card {
  opacity: 0;
  transform: translateY(40px);
}


/* google review section */
.reviews {
  padding: 70px 20px;
  text-align: center;
  background: #f8fafc;
}

.review-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.review-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stars {
  color: #ff9800;
  margin-bottom: 10px;
}

.review-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 20px;
  background: #ff5722;
  color: white;
  border-radius: 20px;
  text-decoration: none;
}

/* GALLERY */

/* GALLERY */
.gallery {
  padding: 70px 20px;
  text-align: center;
  background: #fff;
}

.gallery h2 {
  color: #ff5722;
  margin-bottom: 30px;
}

/* GRID */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 10px;
}

/* IMAGES */
.gallery-container img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* POPUP */
.img-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

.img-popup img {
  width: 90%;
  max-width: 500px;
}

.img-popup span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 25px;
  color: white;
  cursor: pointer;
}

/* contact section */
.booking {
  padding: 70px 20px;
  text-align: center;
  background: #f8fafc;
}

.booking h2 {
  color: #ff5722;
  margin-bottom: 20px;
}

.booking input {
  display: block;
  margin: 10px auto;
  padding: 12px;
  width: 80%;
  max-width: 350px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.booking button {
  padding: 12px 25px;
  background: #ff5722;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/* footer */
/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* BOX */
.footer-box h3 {
  margin-bottom: 10px;
  color: #ff5722;
}

.footer-box p,
.footer-box li {
  font-size: 14px;
  color: #ccc;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box li {
  margin-bottom: 6px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

.footer-bottom a {
  color: #ff5722;
  text-decoration: none;
}

/* floatting section */

/* FLOAT COMMON */
.float-call,
.float-whatsapp {
  position: fixed;
  right: 20px;
  width: 55px;   /* 🔥 button size control */
  height: 55px;  /* 🔥 button size control */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* CALL */
.float-call {
  bottom: 90px;
  background: #ff5722;
}

/* WHATSAPP */
.float-whatsapp {
  bottom: 20px;
  background: #25D366;
}

/* 🔥 IMAGE SIZE CONTROL */
.float-call img,
.float-whatsapp img {
  width: 25px;  /* 👈 icon size change pannalaam */
  height: 25px;
  object-fit: contain;
}

/* HOVER EFFECT */
.float-call:hover,
.float-whatsapp:hover {
  transform: scale(1.1);
}

/* MOBILE */
@media(max-width:768px){
  .float-call,
  .float-whatsapp {
    width: 50px;
    height: 50px;
  }

  .float-call img,
  .float-whatsapp img {
    width: 22px; /* 👈 mobile size */
    height: 22px;
  }
}

/* floating button */

.vws-float-clean {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* COMMON */
.vws-float-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🔥 WHATSAPP BIG */
.vws-float-item:first-child img {
  width: 70px;   /* 👈 increase pannalaam */
  height: 70px;
}

/* 🔥 CALL SMALL */
.vws-float-item:last-child img {
  width: 45px;   /* 👈 decrease pannalaam */
  height: 45px;
}

/* Hover */
.vws-float-item:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/* scroll animation */
/* INITIAL STATE */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* SHOW ANIMATION */
.show {
  opacity: 1;
  transform: translateY(0);
}
/* DELAY CLASSES */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}
.hidden {
  opacity: 0;
  transform: translateY(40px);
}

.show {

  opacity: 1;
  transform: translateY(0);
}

/* teriff option */
/* container */
.tariff-item {
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* header */
.tariff-header {
  background: #fff;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  border-left: 4px solid #ff5722;
}

/* icon */
.tariff-header .icon {
  font-size: 20px;
  transition: 0.3s;
}

/* content hidden */
.tariff-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fafafa;
  padding: 0 15px;
}


/* rotate icon */
.tariff-item.active .icon {
  transform: rotate(45deg); /* + → × */
}
/* 🔴 DEFAULT CLOSED */
.tariff-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 15px;
}

/* 🟢 ONLY WHEN ACTIVE */
.tariff-sub-item.active .tariff-content {
  max-height: 2000px;
  padding: 15px;
}
/* CONTACT BOX */
.contact-highlight {
  background: linear-gradient(135deg, #ff6a00, #ff3c00);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin: 15px 0;
  animation: pulseBox 2s infinite;
}

.contact-highlight a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

/* PULSE ANIMATION */
@keyframes pulseBox {
  0% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(255, 106, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

/* NOTES STYLE */
.one-way-notes {
  background: #fff5f0;
  border-left: 5px solid #ff6a00;
  padding: 15px;
  border-radius: 8px;
  animation: fadeUp 1s ease;
}

/* FADE ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CORPORATE BOX */
.corporate-box {
  margin-top: 20px;
}

/* CONTACT CARD */
.corporate-contact {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  animation: fadeInUp 1s ease;
}

/* LINKS */
.corporate-contact a {
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
}

.corporate-contact a:hover {
  text-decoration: underline;
}

/* BUTTON */
.corp-btn {
  display: inline-block;
  margin-top: 12px;
  background: #ff6a00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.corp-btn:hover {
  background: #ff3c00;
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* footer about */
.footer-address {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-address h4 {
  color: #fff;
  margin-bottom: 8px;
}

.footer-address p {
  margin: 0;
}
/* FOOTER MAIN */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 50px 20px 20px;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* BOX */
.footer-box h3 {
  margin-bottom: 15px;
  color: #ff6b00;
}

.footer-box p,
.footer-box li {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

/* LINKS */
.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #ff6b00;
}

/* CTA BUTTON */
.footer-cta {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 16px;
  background: #25D366;
  border-radius: 25px;
  font-size: 14px;
}

/* MAP BUTTON */
.map-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #ff6b00;
  border-radius: 20px;
  font-size: 13px;
}

/* MAP */
.footer iframe {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: 10px;
}

/* ADDRESS */
.footer-address {
  margin-top: 10px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}