@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

:root {
  --primary-orange: #FB7A38;
  --dark-blue: #001659;
  --text-grey: #555555;
  --light-grey: #e9e9e9;
  --accent-yellow: #E1980F;
  --border-orange: rgba(245, 94, 26, 0.35);
}

*, body, button, input, select, textarea {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

body {
  font-family: 'Poppins', sans-serif !important;
  color: var(--text-grey);
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .antonio {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.text-white { color: #ffffff !important; }
.text-orange { color: #FB7A38 !important; }
.text-blue { color: #001659 !important; }
.text-yellow { color: #E1980F !important; }
.bg-orange { background-color: #FB7A38 !important; }
.bg-blue { background-color: #001659 !important; }
.bg-yellow { background-color: #E1980F !important; }
.border-orange { border: 1px solid var(--border-orange) !important; }

/* Buildland Button Style with Poppins */
.btn-buildland {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #FB7A38;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 122, 56, 0.3);
  font-size: 15px;
  letter-spacing: 0.5px;
}

.btn-buildland:hover {
  background-color: #001659;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 22, 89, 0.4);
}

.btn-buildland-blue {
  background-color: #001659;
  color: #ffffff !important;
}
.btn-buildland-blue:hover {
  background-color: #FB7A38;
  color: #ffffff !important;
}

/* Service Box Hover */
.buildland-service-box {
  background: #ffffff;
  border: 1px solid var(--border-orange);
  padding: 32px 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.buildland-service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 22, 89, 0.08);
  border-color: #FB7A38 !important;
}

.buildland-service-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #FB7A38;
  transition: width 0.35s ease;
}

.buildland-service-box:hover::after {
  width: 100%;
}

/* Radar ping & pulse animations */
.pulse-orange-btn {
  animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 122, 56, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(251, 122, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 122, 56, 0);
  }
}

.radar-dot::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: radarWave 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes radarWave {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Subtle architectural patterns */
.pattern-bg {
  background-color: #001659;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Fixed Mobile Bottom CTA Bar */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #001659;
  border-top: 2px solid #FB7A38;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.35);
}
