/* -----------------------
   Global Styles
------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* -----------------------
   Header & Navigation
------------------------ */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 40px;
}

header .logo span {
  font-size: 35px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #232323;
  margin-left: 10px;
  line-height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #0084ff;
}

/* -----------------------
   Hero Section
------------------------ */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #2563EB, #10B981);
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero span {
  color: #ffeb3b;
}

.hero p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.search-bar {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: auto;
}

.search-bar input {
  padding: 0.8rem;
  width: 80%;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.search-bar button {
  padding: 0.8rem 1.5rem;
  border: none;
  background: #ffeb3b;
  color: #333;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* -----------------------
   Sections
------------------------ */
section {
  padding: 3rem 2rem;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #222;
}

/* Shops & Services Grid */
.shop-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.shop-card,
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s;
}

.shop-card:hover,
.service-card:hover {
  transform: translateY(-5px);
}

.shop-card img,
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.shop-card h3,
.service-card h3 {
  margin: 1rem 0 0.5rem;
  color: #0084ff;
}

.shop-card p,
.service-card p {
  font-size: 0.95rem;
  color: #666;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #0084ff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #006edc;
}

/* -----------------------
   Offers Slider
------------------------ */
#offers {
  background: #f0f8ff;
}

.offer-item {
  background: #0084ff;
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

/* -----------------------
   About & FAQs
------------------------ */
#about {
  background: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

#faq details {
  margin: 1rem 0;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

#faq summary {
  font-weight: bold;
  color: #0084ff;
}

/* -----------------------
   Contact
------------------------ */
.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 0.8rem;
  background: #0084ff;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #006edc;
}

/* -----------------------
   Footer
------------------------ */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
}

footer nav a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
}

section.error-page {
  text-align: center;
}