/* Reset defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', 'Signika', sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #333;
}

/* Header stays white */
.site-header {
  background: #fff;
  position: relative;
  z-index: 10;
  padding: 0px 0px;
}

.hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 7px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Keep text above overlays */
.hero * {
  position: relative;
  z-index: 3;
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 35px;
  flex-wrap: nowrap;
  box-sizing: border-box;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 88%;
}

/* Group logo + menu on the left */
.nav-left {
  display: flex;
  align-items: center;
  gap: 20px; /* space between logo and menu */
}

.logo img {
  max-height: 100px;
  height: auto;
  width: auto;
  margin-right: 15px;
  margin-left: 10px;
}

/* --------------------------
   Navigation links 
--------------------------- */
.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  margin-bottom: 50px;
}

.main-nav ul li {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  color: #fff;
}

.main-nav ul li::before {
  content: "•";
  color: yellow;
  margin-right: 12px;
  font-size: 12px;
}

.main-nav ul li:first-child::before {
  content: "•";
  margin-right: 12px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar ul li a.active {
  font-weight: bold;
  color: #f6cd44;
}

.navbar ul li a:hover {
  color: #d3a304;
}

/* --------------------------
   Right section 
--------------------------- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px; /* space between call, search, button */
  padding-bottom: 35px;
}

/* Call us */
.call-us {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #ffffff;
  gap: 10px;
}

.call-us img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

/* --------------------------
   Search 
--------------------------- */
.search-container {
  position: relative;
  display: inline-block;
  margin: 0 10px -5px 10px;
}

.search-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon img {
  width: 18px;
  height: 18px;
}

.search-box {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 20px;
  border: 1px solid #0096ff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 150, 255, 0.25);
  z-index: 1000;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.search-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
}

.search-box::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 12px solid #0096ff;
  z-index: -1;
}

.search-box.active {
  max-height: 200px;
  opacity: 1;
  overflow: visible;
}

.search-box form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-box input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #0096ff;
  border-radius: 4px;
  font-size: 14px;
}

.search-box button {
  padding: 6px 14px;
  background: #0096ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: #007bff;
}

/* ✅ GET IN TOUCH BUTTON IN HEADER */
.get-in-touch-header {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #0382fa;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  z-index: 3;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.get-in-touch-header img {
  width: 16px;
  filter: brightness(0) invert(1);
}

.get-in-touch-header:hover {
  background: #142b17;
}

/* --------------------------
   Responsive tweaks
--------------------------- */

/* Big screens (1920px+) */
@media (min-width: 1800px) {
  .get-in-touch-wrapper {
    margin-right: -25px;
  }
}

/* Normal desktops (~1440px) */
@media (max-width: 1600px) {
  .get-in-touch-wrapper {
    margin-right: -15px;
  }
}

/* Small laptops (~1280px) */
@media (max-width: 1366px) {
  .get-in-touch-wrapper {
    margin-right: -10px;
  }
}




