@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0f172a;
  --accent: #ff6b00;
  --accent-hover: #e65c00;
  --blue: #2563eb;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.call-btn {
  background: var(--primary);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.call-btn:hover {
  transform: translateY(-2px);
  background: #1e293b;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

/* HERO */
.hero {
  background: #0d1117;
  color: var(--white);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.15), transparent 70%);
  pointer-events: none;
}

.hero h2 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: slideUp 0.8s ease-out forwards;
}

.hero p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.4s forwards;
}

.hero-buttons {
  opacity: 0;
  animation: fadeIn 1s ease-out 0.8s forwards;
}

/* BUTTONS */
.btn {
  padding: 1rem 2.5rem;
  margin: 8px;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
}

.primary {
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
}

.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.25);
}

.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* TRUST BAR */
.trust {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--bg-light);
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: var(--bg-light);
}

.services h2 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlight {
  background: var(--primary);
  color: var(--white);
}

.highlight h3 {
  color: var(--white);
}

.highlight p {
  color: rgba(255, 255, 255, 0.8);
}

/* WHY US */
.why {
  padding: 100px 0;
  text-align: center;
}

.why h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.why ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.why li {
  background: var(--bg-light);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.why li:hover {
  background: var(--white);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* EMERGENCY CTA */
.emergency {
  background: var(--bg-light);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.emergency h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.emergency p {
  margin-bottom: 24px;
  color: var(--text-muted);
  font-weight: 500;
}

/* CONTACT */
.contact {
  padding: 100px 0;
}

.contact h2 {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.contact-grid > div:first-child {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-grid strong {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.contact-grid a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-grid a:hover {
  color: var(--accent);
}

/* FORM */
form {
  padding: 0;
  box-shadow: none;
}

form input, form textarea {
  width: 100%;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--bg-light);
  transition: all 0.3s ease;
  outline: none;
}

form input:focus, form textarea:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

form button {
  width: 100%;
  padding: 1.25rem;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ANIMATIONS */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* MOBILE */
@media(max-width: 768px) {
  .hero h2 { font-size: 2.2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav { 
    flex-direction: row !important; 
    flex-wrap: nowrap !important;
    justify-content: space-between; 
    padding: 0 1rem;
    gap: 8px;
  }
  .logo { 
    font-size: 0.95rem;
    gap: 6px;
    min-width: 0;
  }
  .logo-img {
    height: 24px;
    flex-shrink: 0;
  }
  .call-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* TOAST WIDGET */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transform: translateY(2rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast.error {
  background: #ef4444;
}