/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  padding-bottom: 70px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.logo img {
  height: 42px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}

.call-btn a {
  background: #0077cc;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
}

.cta {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* Popular Brand Shortcuts */
.brand-shortcuts {
  margin: 70px auto;
  text-align: center;
}

.brand-shortcuts h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #222;
}

.brand-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  max-width: 950px;
  margin: auto;
}

.brand-grid a {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 18px 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.brand-grid a:hover {
  background: #0077cc;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Quick Links */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 25px 15px;
  background: #f7f7f7;
}

.quick-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 30px 15px;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* Sticky Call Bar */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0077cc;
  text-align: center;
  padding: 14px;
  z-index: 999;
}

.sticky-call-bar a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
  }

  .logo img {
    height: 34px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 30px;
  }
}
