:root {
  --primary: #f05a28;
  --dark: #343a40;
  --light: #f8f9fa;
  --text: #333;
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
}

.wrapper { overflow-x: hidden; }

/* Top Bar */
.top-bar {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.top-bar .logo img {
  height: 54px;
  width: auto;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-icon {
  font-size: 1.5rem;
  color: var(--primary);
  min-width: 28px;
  text-align: center;
}
.top-bar-text h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #777;
  margin: 0 0 4px;
}
.top-bar-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
}
.top-bar a { color: #333; text-decoration: none; }
.top-bar a:hover { color: var(--primary); }

/* Nav Bar */
.nav-bar { background: var(--dark); }
.nav-bar .navbar { padding: 0.5rem 0; }
.nav-bar .navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 1rem;
  font-weight: 500;
}
.nav-bar .navbar-dark .navbar-nav .nav-link:hover { color: var(--primary); }
.nav-bar .btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
}
.nav-bar .btn:hover { background: #d94e22; color: #fff; }
.nav-bar .social-icons .nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}
.nav-bar .social-icons .nav-link:hover { color: var(--primary); }

/* Section Headers */
.section-header p {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section-header h2, .section-header h4 {
  color: #222;
  font-weight: 600;
}

/* About */
.about { padding: 4rem 0; }
.about-img { border-radius: 8px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.about-text p { line-height: 1.7; }
.about .btn { background: var(--primary); color: #fff; border: none; padding: 0.5rem 1.25rem; }
.about .btn:hover { background: #d94e22; color: #fff; }

/* Fact */
.fact { background: var(--dark); color: #fff; padding: 2.5rem 0; }
.fact .fact-icon { font-size: 2rem; color: var(--primary); }
.fact .fact-text h2 { color: #fff; font-weight: 700; }
.fact .fact-text p { margin: 0; opacity: 0.9; }

/* FAQs */
.faqs { padding: 3.5rem 0; background: var(--light); }
.faqs .card { margin-bottom: 1rem; border: 1px solid #e6e6e6; }
.faqs .card-header { background: #fff; }

/* Service */
.service { padding: 4rem 0; background: #f8f9fa; }
.service-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}
.service-img { position: relative; height: 280px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  padding: 2rem 1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.service-text { background: var(--dark); padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.service-text h3 { margin: 0; font-size: 1.1rem; }
.service-text h3 a { color: #fff; text-decoration: none; }
.service-text h3 a:hover { color: var(--primary); }
.service-text .btn { background: var(--primary); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; }

/* Portfolio */
.portfolio { padding: 4rem 0; }
.portfolio #portfolio-flters { list-style: none; padding: 0; margin: 0 0 2rem; text-align: center; }
.portfolio #portfolio-flters li { display: inline-block; margin: 0 8px; padding: 6px 14px; background: #eee; border-radius: 20px; cursor: pointer; }
.portfolio #portfolio-flters .filter-active { background: var(--primary); color: #fff; }
.portfolio-warp { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin-bottom: 1.5rem; }
.portfolio-item { transition: opacity 0.22s ease; }
.portfolio-item.is-fading { opacity: 0; }
.portfolio-img { position: relative; }
.portfolio-img img { width: 100%; height: auto; display: block; }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.7); color: #fff; opacity: 0; transition: opacity 0.2s ease-in-out; padding: 1.5rem;
}
.portfolio-warp:hover .portfolio-overlay { opacity: 1; }
.portfolio-text { background: var(--dark); color: #fff; padding: 0.8rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.portfolio-text .btn { background: var(--primary); color: #fff; border-radius: 50%; width: 36px; height: 36px; border: none; }

/* Contact form alignment */
.fcf-body { display: flex; justify-content: center; }
#fcf-form { width: 100%; max-width: 720px; }
.fcf-form-class { width: 100%; }

/* Footer */
.footer { background: var(--dark); color: #fff; padding: 3rem 0 1.5rem; }
.footer h2 { font-size: 1.1rem; margin-bottom: 1rem; color: #fff; }
.footer-contact p { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-contact a { color: rgba(255,255,255,0.9); }
.footer-contact a:hover { color: var(--primary); }
.footer-social a { display: inline-flex; width: 36px; height: 36px; background: rgba(255,255,255,0.1); color: #fff; border-radius: 50%; align-items: center; justify-content: center; margin-right: 6px; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-link a { display: block; color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-link a:hover { color: var(--primary); }
.footer-menu { padding: 1rem 0; text-align: center; }
.footer-menu .f-menu { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-menu .f-menu a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-menu .f-menu a:hover { color: var(--primary); }
.copyright { padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.back-to-top { position: fixed; bottom: 20px; right: 20px; width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 99; }
.back-to-top:hover { color: #fff; background: #d94e22; }

@media (max-width: 991px) {
  .top-bar .col-4 { margin-bottom: 0.75rem; }
  .top-bar .d-lg-block { display: none !important; }
}

/* Non-clickable service labels inside navbar dropdown */
.dropdown-menu .no-link {
    pointer-events: none;
    cursor: default;
}

/* Disable service-detail links globally */
a[data-href-disabled] {
    pointer-events: none;
    cursor: default;
}

