* {
  margin: 0;
  padding: 0;
}

.header {
  min-height: 60vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("../images/bg.png");
  background-position: center;
  background-size: cover;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #c62828;
}

.navbar nav {
  display: flex;
  gap: 28px;
}

.navbar nav a {
  font-size: 15px;
  font-weight: 500;
}

.navbar nav a:hover {
  color: #c62828;
}

.nav-btn {
  padding: 10px 20px;
  background: #c62828;
  color: white;
  border-radius: 30px;
  font-weight: 600;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158") center/cover;
  color: white;
}

.hero-content {
  max-width: 680px;
}

.tagline {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(198, 40, 40, 0.9);
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  color: #f3f4f6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-block;
}

.primary {
  background: #c62828;
  color: white;
}

.secondary {
  background: white;
  color: #c62828;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1);
  padding: 40px 8%;
  background: #c62828;
  color: white;
  text-align: center;
}

.stats h2 {
  font-size: 36px;
}

.stats p {
  font-size: 15px;
}

/* Sections */
.section {
  padding: 90px 8%;
}

.light {
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-title h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.section-title p {
  color: #6b7280;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1);
  gap: 24px;
}

.card {
  background: white;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 22px;
  color: #c62828;
  margin-bottom: 12px;
}

.card p {
  color: #6b7280;
  margin-bottom: 20px;
}

.card a {
  color: #c62828;
  font-weight: bold;
}

/* Why Choose */
.why {
  padding: 90px 8%;
  background: #1f2937;
  color: white;
  display: grid;
  grid-template-columns: 1 1.2;
  gap: 50px;
  align-items: center;
}

.why h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.why p {
  color: #d1d5db;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1);
  gap: 20px;
}

.why-list div {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 14px;
}

/* Brands */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1);
  gap: 20px;
}

.brand-grid div {
  background: white;
  padding: 30px;
  text-align: center;
  font-weight: 800;
  color: #c62828;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}

.brand-grid div:hover {
  transform: scale(1.05);
}

/* Finder */
.finder {
  padding: 90px 8%;
  text-align: center;
  background: white;
}

.finder h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.finder p {
  color: #6b7280;
  margin-bottom: 35px;
}

.finder-box {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1);
  gap: 16px;
  background: #f8f9fa;
  padding: 24px;
  border-radius: 20px;
}

.finder-box select,
.finder-box button {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.finder-box button {
  background: #c62828;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* CTA */
.cta {
  padding: 80px 8%;
  background: linear-gradient(135deg, #c62828, #8b0000);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.cta p {
  margin-bottom: 28px;
}

/* Footer */
footer {
  padding: 60px 8%;
  background: #111827;
  color: white;
  display: grid;
  grid-template-columns: 2 1 1;
  gap: 40px;
}

footer h3,
footer h4 {
  margin-bottom: 16px;
}

footer p,
footer a {
  color: #d1d5db;
  display: block;
  margin-bottom: 8px;
}

.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../images/handshake.jpg") center/cover;
  color: white;
}

.about-hero-content {
  max-width: 720px;
}

.about-hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 20px;
  color: #f3f4f6;
}

.about-intro {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1.5 1;
  gap: 50px;
  align-items: center;
}

.about-text h2,
.values-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-text p {
  color: #6b7280;
  margin-bottom: 18px;
}

.about-card {
  background: #c62828;
  color: white;
  padding: 50px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-card h3 {
  font-size: 64px;
}

.mission-section {
  padding: 90px 8%;
  background: #f8f9fa;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1);
  gap: 25px;
}

.mission-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.mission-card:hover {
  transform: translateY(-8px);
}

.mission-card h3 {
  color: #c62828;
  margin-bottom: 12px;
}

.mission-card p {
  color: #6b7280;
}

.quote-section {
  padding: 80px 8%;
  background: #1f2937;
  color: white;
  text-align: center;
}

.quote-section h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.quote-section p {
  color: #d1d5db;
}

.values-section {
  padding: 90px 8%;
  background: white;
}

.values-content {
  max-width: 900px;
  margin: auto;
}

.value-item {
  padding: 28px;
  margin-bottom: 22px;
  border-left: 6px solid #c62828;
  background: #f8f9fa;
  border-radius: 14px;
}

.value-item h3 {
  color: #c62828;
  margin-bottom: 10px;
}

.value-item p {
  color: #6b7280;
}

@media (max-width: 900px) {
  .about-hero h1 {
    font-size: 42px;
  }

  .about-intro,
  .mission-grid {
    grid-template-columns: 1;
  }
}



/* Responsive */
@media (max-width: 900px) {

  .navbar nav,
  .nav-btn {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .stats,
  .card-grid,
  .brand-grid,
  .why,
  .finder-box,
  footer {
    grid-template-columns: 1;
  }

  .why-list {
    grid-template-columns: 1;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .brands-container {
    padding: 12px;
  }

  .card-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

.header-contact {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("../images/bg.png");
  background-position: center;
  background-size: cover;
  position: relative;
}