/* ===== Topbar ===== */
.topbar {
  font-size: 16px;
}
.topbar a {
  transition: color 0.3s ease;
}
.topbar a:hover {
  color: #ff6600 !important; /* orange hover */
}

/* ===== Navbar ===== */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 200;
  min-height: auto;
  line-height: 1;
}
.navbar-brand .logo {
  height: 40px;
  width: auto;
  display: block;
}
.company-name {
  font-weight: bold;
  font-size: 18px;
  color: #ff6600;
  margin-left: 6px;
  white-space: nowrap;
  line-height: 1;
}
.navbar-nav .nav-link {
  padding: 6px 12px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #ff6600 !important;
}
.navbar-nav .nav-link.active {
  color: #ff6600 !important;
  font-weight: 600;
}
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background-color: #fff;
}
.dropdown-item {
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background-color: #ff6600 !important;
  color: #fff !important;
}
.sticky-top {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===== Contact Form ===== */
.contact-header {
  position: relative;
  height: 45vh;
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216") center/cover no-repeat;
  overflow: hidden;
}
.contact-header .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(227, 144, 89, 0.85), rgba(255,102,0,0.85));
}
.contact-header .content {
  z-index: 2;
}
.contact-header h2 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.contact-header p {
  font-size: 1.5rem;
  opacity: 0.8;
}
.custom-shape-divider-bottom-169 {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-bottom-169 svg {
  position: relative;
  display: block;
  width: calc(132% + 1.3px);
  height: 80px;
}
.custom-shape-divider-bottom-169 .shape-fill {
  fill: #fff;
}
.contact-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 15px 150px rgba(14, 1, 1, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}
.contact-card.show {
  opacity: 1;
  transform: translateY(0);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.contact-form {
  border-radius: 20px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(50px);
}
.contact-form.show {
  opacity: 1;
  transform: translateY(0);
}
.contact-form .form-control {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  transition: all 0.3s ease;
}
.contact-form .form-control:focus {
  border-color: #ff6600;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}
.btn-custom {
  background: linear-gradient(90deg, #ff6600, #ff8800);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-custom:hover {
  background: linear-gradient(90deg, #e65c00, #ff7700);
  transform: scale(1.05);
}

/* Map Section */
.map-section {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 0; /* full width feel */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-section .map-overlay {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,102,0,0.9);
  padding: 10px 30px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer Section */
.footer {
  background: url('../images/about.webp') no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: -1;
}
.footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.footer h5::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6600; 
  margin-top: 8px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #ff6600; 
}
.btn-orange {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 6px 15px;
  font-weight: 600;
}
.btn-orange:hover {
  background: #e65c00;
  color: #fff;
}
.text-orange {
  color: #ff6600;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer p i {
  color: #ff6600;
  margin-right: 8px;
}
