:root {
  --primary-red: #8e0000;
  --dark-red: #8e0000;
  --light-red: #ffebee;
  --dark-grey: #2b2b2b;
  --medium-grey: #666;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --black: #111111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-grey);
  line-height: 1.6;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Header */

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background: var(--dark-red);
  color: var(--white);
  font-size: 0.9rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-red);
}

.logo span {
  color: var(--dark-grey);
}

.logo1 {
    height: 120px ;
    width: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-red);
}

.call-btn {
  background: var(--primary-red);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 5px;
}

.call-btn:hover {
  background: var(--dark-red);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary-red);
}

/* Hero */

.hero {
  min-height: 85vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff5252;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, fit-content(300px));
  gap: 12px;
  margin-bottom: 30px;
}

.hero-badges div {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 15px;
  border-left: 4px solid var(--primary-red);
  border-radius: 4px;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-red);
}

.btn-secondary:hover {
  background: var(--light-red);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* General Sections */

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--medium-grey);
  max-width: 720px;
  margin: auto;
}

.red-line {
  width: 70px;
  height: 4px;
  background: var(--primary-red);
  margin: 15px auto 0;
  border-radius: 3px;
}

.page-header {
  background: var(--light-grey);
  text-align: center;
  padding: 70px 0;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--dark-grey);
}

.page-header p {
  color: var(--medium-grey);
  font-size: 1.1rem;
}

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

.red-page p,
.red-page h1 {
  color: var(--white);
}

/* Cards */

.feature-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card,
.service-card,
.alert-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-red);
}

.feature-card h3,
.service-card h3 {
  color: var(--primary-red);
  margin-bottom: 12px;
}

.feature-card a {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  color: var(--primary-red);
}

.service-icon {
  width: 55px;
  height: 55px;
  background: var(--light-red);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

/* About */

.about-grid,
.split-section,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: start;
}

.about-text h2,
.split-section h2,
.contact-info h2 {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.tick-list {
  margin-top: 20px;
  list-style: none;
}

.tick-list li {
  margin-bottom: 10px;
  font-weight: 600;
}

.tick-list li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: bold;
  margin-right: 10px;
}

.team-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 6px solid var(--primary-red);
}

.team-card .number {
  font-size: 4rem;
  font-weight: bold;
  color: var(--primary-red);
}

/* Emergency */

.alert-card {
  border-top: 6px solid var(--primary-red);
  background: var(--light-red);
}

/* Areas */

.areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.areas-list div {
  background: var(--white);
  padding: 20px;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  border-left: 5px solid var(--primary-red);
}

.local-message {
  margin-top: 45px;
  background: var(--light-grey);
  padding: 35px;
  border-radius: 10px;
  text-align: center;
}

.local-message h2 {
  color: var(--primary-red);
  margin-bottom: 10px;
}

.local-message p {
  margin-bottom: 20px;
}

/* Contact */

.contact-section {
  background: var(--dark-grey);
  color: var(--white);
}

.contact-info p,
.contact-detail {
  color: #ddd;
  margin-bottom: 15px;
}

.contact-detail strong {
  color: #ff5252;
}

form {
  background: var(--white);
  color: var(--dark-grey);
  padding: 30px;
  border-radius: 10px;
}

form h3 {
  margin-bottom: 20px;
  color: var(--primary-red);
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  margin-top: 15px;
  font-weight: bold;
  color: var(--primary-red);
  display: none;
}

/* Footer */

footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 22px 0;
}

/* Floating Button */

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--primary-red);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.floating-call:hover {
  background: var(--dark-red);
}

/* Responsive */

@media (max-width: 992px) {
  .feature-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .about-grid,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .services-grid,
  .areas-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 75vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .floating-call {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
}

.area-card:hover {
    transform: translateY(-8px);
    background: #c62828;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
  
}
