:root {
  --primary: #0f172a;
  --primary-foreground: #ffffff;
  --accent: #6366f1;
  --accent-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #0f172a;
  --card: #f8fafc;
  --border: #e2e8f0;
  --muted: #64748b;

--hero-overlay: linear-gradient(
  to right,
  rgba(15, 23, 42, 0.98),
  rgba(15, 23, 42, 0.85),
  rgba(15, 23, 42, 0.7),
  rgba(15, 23, 42, 0.5)
);
}

/* ================= GLOBAL ================= */
* {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  box-shadow: none !important;   /* REMOVE ALL SHADOW */
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* ================= BACKGROUND ================= */
.pattern-bg {
  background: linear-gradient(135deg, #0b2b44 0%, #1a4a6f 100%);
  position: relative;
  overflow: hidden;
}

.pattern-bg::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  transform: rotate(10deg);
}

.fade-bottom {
  background: linear-gradient(to bottom, rgba(31,59,91,0) 0%, #ffffff 100%);
}

/* ================= COLORS ================= */
.orange { color: #ff7a1a; }
.bg-orange { background-color: #ff7a1a; }

/* ================= CARDS ================= */
.glass-card {
  background: rgba(255,255,255,0.95);
}

/* REMOVE ALL HOVER EFFECT */
.glass-card:hover,
.shadow-card:hover,
.shadow-card-hover:hover,
.service-card:hover,
.city-card:hover,
.card-hover:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-orange {
  transition: none;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.btn-orange {
  background: linear-gradient(95deg, #ff7a1a 0%, #ff9f4a 100%);
}

/* REMOVE BUTTON HOVER EFFECT */
.btn-primary:hover,
.btn-orange:hover {
  transform: none;
  box-shadow: none;
}

/* ================= TEXT ================= */
.section-title {
  background: linear-gradient(135deg, #0f2b3d, #1f4b6e);
  -webkit-background-clip: text;
  color: transparent;
}

/* ================= TABLE ================= */
.table-compare td {
  border-bottom: 1px solid #eef2f6;
  padding: 1rem 0.5rem;
}

/* ================= FOOTER ================= */
.footer-link:hover {
  color: #ff7a1a;
  transform: none;
}

/* ================= FAQ ================= */
.faq-question {
  cursor: pointer;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer.open {
  max-height: 200px;
}

/* ================= INPUT ================= */
.input {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  width: 100%;
  outline: none;
}

.input:focus {
  border-color: #ff7a1a;
  box-shadow: none;
}

/* ================= ANIMATION ================= */
.animate-fade-in-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* ================= STATS ================= */
.stat-number {
  font-size: 2.8rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3.5rem;
  }
}