:root {
  --navy: #0a192f;
  --navy-light: #112240;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --gold: #d4af37;
  --text: #0f172a;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.3);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* === UTILITIES === */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.text-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === PREMIUM BUTTONS === */
.btn-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
  transition: transform 0.6s ease;
  transform: translateX(-100%);
}

.btn-premium:hover::before {
  transform: translateX(0);
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

/* === CUSTOM FORM STYLES === */
.form-input-group {
  position: relative;
}

.form-input-group > i {
  position: absolute;
  left: 14px;
  top: 42px;
  color: var(--text-muted);
}

.form-input-group input, 
.form-input-group select, 
.form-input-group textarea {
  padding-left: 40px !important;
}

/* === AUTOCOMPLETE SUGGESTIONS === */
.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 999;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 4px;
}

.autocomplete-suggestion {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s;
  text-align: left;
}

.autocomplete-suggestion:hover {
  background-color: var(--bg-soft);
}

.autocomplete-suggestion i {
  color: var(--text-muted);
  font-size: 14px;
  width: 16px;
  text-align: center;
  position: static !important;
}

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem !important;
    line-height: 1.1;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}