/* styles.css - 14.6kb */
:root {
  --primary: #2d3847;    /* Charcoal */
  --secondary: #6b5b4d;  /* Bronze */
  --accent: #d94a2f;     /* Vibrant Orange-Red */
  --text: #2a2e33;
  --light: #f8f9fa;
}

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}

/* Header Styles */
.main-header {
  background: var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.phone {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0 2rem;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
              url('data:image/svg+xml;utf8,<svg/>');
}

.responsive-img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.responsive-img:hover {
  transform: translateY(-3px);
}

.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.trust-badges span {
  background: var(--secondary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CTAs */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  margin: 1.5rem 0;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.cta-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 15px rgba(217,74,47,0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,74,47,0.4);
}

.cta-secondary {
  background: var(--primary);
  color: white;
  border-color: var(--accent);
}

.cta-secondary:hover {
  background: var(--accent);
  transform: scale(1.02);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

article {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--accent);
  transition: transform 0.3s ease;
}

article:hover {
  transform: translateY(-5px);
}

/* Emergency Section */
.emergency-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.emergency-section li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.emergency-section li::before {
  content: "•";
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

/* Mobile CTA */
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .main-header .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
  }

  .cta-sticky {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
  }

  article {
    padding: 1.5rem;
  }
}

/* Footer */
.main-footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0;
  margin-top: 4rem;
  text-align: center;
}

.main-footer p {
  margin: 0.5rem 0;
  opacity: 0.9;
}