/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

section { padding: 4rem 0; }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  background: #1a56db;
  color: #fff;
  border: 2px solid #1a56db;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: #1e40af; border-color: #1e40af; }

.btn-outline {
  background: transparent;
  color: #1a56db;
}
.btn-outline:hover {
  background: #1a56db;
  color: #fff;
}

/* ── Header ───────────────────────────────────────────────────────── */
.site-header {
  background: #111827;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo span { color: #3b82f6; }

.nav-menu {
  display: flex;
  gap: 1.5rem;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover { color: #3b82f6; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* ── Brands ───────────────────────────────────────────────────────── */
.brands { background: #f9fafb; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  text-align: center;
}
.brand-item {
  background: #fff;
  padding: 1.25rem 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #374151;
  border: 1px solid #e5e7eb;
}

/* ── Card Grid (Offers) ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.card-img { height: 180px; }
.card-body { padding: 1.25rem; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.card-body .price {
  color: #1a56db;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card-body p { font-size: 0.9rem; color: #4b5563; margin-bottom: 1rem; }

/* ── Services ─────────────────────────────────────────────────────── */
.services { background: #f9fafb; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-item {
  text-align: center;
  padding: 1.5rem;
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.service-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.service-item p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* ── About ────────────────────────────────────────────────────────── */
.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-content p {
  margin-bottom: 1rem;
}
.about-content h2,
.about-content p {
  color: #f9fafb;
}

/* ── News ─────────────────────────────────────────────────────────── */
.news { background: #f9fafb; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.news-date {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.news-item h3 {
  font-size: 1.05rem;
  margin: 0.5rem 0;
}
.news-item p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}
.news-item a {
  color: #1a56db;
  font-weight: 600;
  font-size: 0.9rem;
}
.news-item a:hover { text-decoration: underline; }

/* ── CTA Banner ───────────────────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  color: #fff;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p {
  max-width: 540px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}
.cta .btn {
  background: #fff;
  color: #1a56db;
  border-color: #fff;
}
.cta .btn:hover {
  background: #e0e7ff;
  border-color: #e0e7ff;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  background: #111827;
  color: #d1d5db;
  padding-top: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-nav a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #3b82f6; }

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #111827;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
  .nav-menu.open { display: flex; }
  .hero h1 { font-size: 1.75rem; }
  .hero { padding: 4rem 0; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  section { padding: 3rem 0; }
}
