:root {
  --primary-color: #0d6efd;
  --bg-soft: #f1f6ff;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-primary-soft { background-color: var(--bg-soft); }

/* Hero */
#hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-control, .form-select {
  padding: 12px;
  border: 1px solid #dee2e6;
}

/* Landio Style Features */
.feature-item {
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.feature-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.heading-line {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto;
}

/* Services */
.icon-box {
  width: 60px;
  height: 60px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Contact */
.rounded-4 { border-radius: 1.5rem !important; }

@media (max-width: 991px) {
  #hero { text-align: center; }
  .icon-box { margin-bottom: 10px; }
}
/* Contact Form Enhancements */
.form-control:focus, .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.invalid-feedback {
  font-size: 0.8rem;
}

/* Captcha Styling */
.captcha-box {
  background-image: linear-gradient(45deg, #f8f9fa 25%, transparent 25%, transparent 75%, #f8f9fa 75%, #f8f9fa), 
                    linear-gradient(45deg, #f8f9fa 25%, transparent 25%, transparent 75%, #f8f9fa 75%, #f8f9fa);
  background-size: 10px 10px;
}
/* Footer Custom Styles */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #0d6efd;
  padding-left: 5px;
}

.btn-outline-primary.rounded-circle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

footer hr {
  opacity: 0.1;
}

footer .opacity-50 {
  filter: grayscale(100%);
  transition: 0.3s;
}

footer .opacity-50:hover {
  filter: grayscale(0%);
  opacity: 1 !important;
}

/* Destination Cards */
.destination-card {
  position: relative;
  height: 400px;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
  transition: background 0.4s ease;
}

/* Hover Effects */
.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(0, 102, 255, 0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.view-deal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.destination-card:hover .view-deal {
  opacity: 1;
  transform: translateY(0);
}

.destination-card .badge {
  font-size: 0.85rem;
  font-weight: 500;
}
/* Floating Card Effect */
.kpi-card {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}

.kpi-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12);
  border-color: #0d6efd !important;
}

/* Number Glow & Pulse */
.kpi-number {
  font-variant-numeric: tabular-nums; /* Prevents jumping during count-up */
  transition: all 0.4s ease;
  display: inline-block;
}

.kpi-card:hover .kpi-number {
  color: #004dc0 !important;
  text-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Glassmorphism subtle background */
.kpi-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(13, 110, 253, 0.02);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kpi-card:hover::before {
  opacity: 1;
}

/* Newsletter Input */
#newsletter .form-control {
  background-color: rgba(255, 255, 255, 0.9);
}

#newsletter .form-control:focus {
  background-color: #ffffff;
  box-shadow: none;
}