* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f39c12;
}

.phone-number {
  background: #e74c3c;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Products Section */
.products {
  padding: 4rem 0;
  background: #ecf0f1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.product-content {
  padding: 1.5rem;
}

.product-price {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Blog Section */
.blog {
  padding: 4rem 0;
  background: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-title {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.read-more {
  color: #e74c3c;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.read-more:hover {
  color: #c0392b;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background: #34495e;
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid #f39c12;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: bold;
  color: #f39c12;
}

.testimonial-rating {
  color: #f39c12;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
  background: #e74c3c;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: #f39c12;
  margin-bottom: 1rem;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: #2c3e50;
  color: white;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.contact-item h3 {
  color: #f39c12;
  margin-bottom: 0.5rem;
}

/* Emergency Banner */
.emergency-banner {
  background: #e74c3c;
  color: white;
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.close-banner {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
  margin-bottom: 2rem;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-sm-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.footer-about {
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-about p {
  line-height: 1.6;
  color: #bdc3c7;
}

.footer-about a {
  color: #f39c12;
  text-decoration: none;
}

.footer-about a:hover {
  color: #e67e22;
}

.helpful-links h4,
.contact-us h4 {
  color: #f39c12;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.helpful-links ul {
  list-style: none;
  padding: 0;
}

.helpful-links li {
  margin-bottom: 0.8rem;
}

.helpful-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.helpful-links a:hover {
  color: #f39c12;
}

.contact-us p {
  color: #bdc3c7;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-us a {
  color: #f39c12;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.contact-us a:hover {
  color: #e67e22;
}

.sub-footer {
  border-top: 1px solid #34495e;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.sub-footer p {
  color: #95a5a6;
  margin: 0;
  line-height: 1.6;
}

.sub-footer a {
  color: #f39c12;
  text-decoration: none;
}

.sub-footer a:hover {
  color: #e67e22;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .phone-number {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
  }

  /* Responsive footer */
  .col-lg-4,
  .col-lg-6,
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row {
    margin: 0;
  }

  .col-lg-4,
  .col-lg-6,
  .col-lg-12 {
    padding: 0;
  }
}
