:root {
  --primary-color: #e6c31f;
  --secondary-color: #1173cb;
  --text-color: #03081f;
  --black-color: #000000;
  --white-color: #ffffff;
}

body {
  font-family: "Poppins";
  margin: 0;
  background: #f9f9f9;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

header {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav-links {
  display: flex;
}

a {
  font-size: 18px;
  text-decoration: none;
  color: var(--black-color);
  font-weight: 500;
}

a.active {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 2px 15px;
  border-radius: 15px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  height: auto;
  width: 62px;
}

nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-btns a {
  margin-left: 18px;
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 8px 20px;
  text-decoration: none;
  color: var(--white-color);
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  align-items: center;
}


/* ===== Hamburger Menu (Hidden by default) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--text-color);
  border-radius: 3px;
}

.signup-btn {
  background: var(--secondary-color);
  color: #fff;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 0;
}

.hero {
  background: #fbfbfb;
  border: 1px solid #00000026;
  border-radius: 5px;
}
.hero-content {
  width: 40%;
}

.hero-img {
  width: 60%;
}
.hero-content h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--text-color);
}
.hero-content h1 span {
  color: var(--primary-color);
}
.hero-content p {
  font-size: 1.1rem;
  margin: 1rem 0;
  color: #555;
}
.hero-btns {
  display: flex;
  gap: 1rem;
}
.primary-btn {
  background: var(--secondary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
.secondary-btn {
  background: #fff;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
.hero-img img {
  width: 100%;
  object-fit: contain;
}

.postcode-container {
  text-align: left;
}

.postcode-container label {
  display: block;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--text-color);
}

.search-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 1px #ddd;
  overflow: hidden;
  width: 320px;
}

.search-box input {
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  flex: 1;
  outline: none;
  color: #333;
}

.search-box input::placeholder {
  color: #aaa;
}

.search-box button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-box button:hover {
  background-color: var(--secondary-color);
}

p.small-text {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 400;
  margin: 40px 0px 0;
}

.about {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.about-content {
  flex: 1;
  display: flex;
}

.about-content .content {
  width: 50%;
  padding-right: 80px;
}
.about-content .image {
  width: 50%;
}
.about-content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.about-content .content a {
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 500;
}

.about-content img {
  margin-left: 2rem;
  border-radius: 12px;
  width: 90%;
}

.features {
  background: #eece3d;
  padding: 2rem 0;
}
.features-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.features-icons img {
  height: 48px;
  margin-right: 1rem;
}
.features-text {
  max-width: 400px;
}
.features-text h2 {
  margin-bottom: 0.75rem;
  color: #222;
}
.app-links img {
  height: 28px;
  margin-right: 0.5rem;
}

/* info */

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 30px 40px;
  flex-wrap: wrap;
}

.promo-banner .banner-left img {
  max-width: 400px;
  width: 100%;
}

.promo-banner .banner-left {
  width: 50%;
}
.promo-banner .banner-right {
  width: 50%;
  text-align: center;
}

.promo-banner .banner-right h2 {
  font-size: 68px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.promo-banner .banner-right button.cta-btn {
  background: var(--secondary-color);
  padding: 10px 20px;
  color: var(--white-color);
  width: fit-content;
  font-size: 33px;
  border: 1px solid var(--secondary-color);
  cursor: pointer;
  border-radius: 60px;
}

.promo-banner .banner-right p {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-color);
}

.info {
  background: #fff;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(170, 170, 170, 0.08);
}
.info-cards {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.card {
  background: #fffde4;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(170, 170, 170, 0.06);
  flex: 1;
}

.reviews {
  margin-top: 2rem;
}
.reviews-list {
  display: flex;
  gap: 1rem;
}
.review {
  flex: 1;
  background: #fffde4;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(170, 170, 170, 0.06);
}
.review-rating {
  margin-top: 1rem;
  font-size: 2rem;
  color: var(--secondary-color);
}

.stats {
  display: flex;
  justify-content: space-between;
  background: #eece3d;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-radius: 12px;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-item h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: var(--secondary-color);
}

/* --- Footer Wrapper --- */
.footer {
  background-color: #fffbea;
  color: #111;
  width: 100%;
}

/* --- Top Stats --- */
.footer-stats {
  display: flex;
  justify-content: space-around;
  background-color: #f6c100;
  text-align: center;
  flex-wrap: wrap;
  padding: 20px 10px;
  border-radius: 10px;
}

.stat-box {
  flex: 1 1 200px;
  padding: 10px;
}

.stat-box h3 {
  font-size: 50px;
  font-weight: 500;
  margin: 0;
  color: var(--white-color);
}

.stat-box p {
  font-size: 24px;
  margin-top: 6px;
  font-weight: 600;
  color: var(--white-color);
}

/* --- Main Footer Content --- */
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 40px;
  background-color: #fffbea;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-about {
  width: 30%;
}

.footer-about img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 15px;
  color: var(--black-color);
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 34px;
  height: 34px;
}

/* --- Footer Links --- */
.footer-links {
  width: 30%;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #03081f;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  text-decoration: underline;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

/* --- Contact Info --- */
.footer-contact {
  width: 30%;
}

.footer-contact p {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
  display: flex;
  gap: 20px;
}

.footer-contact span {
  font-size: 18px;
  margin-right: 5px;
}

.footer-contact a {
  font-size: 16px;
  text-decoration: none;
  color: var(--black-color);
  font-weight: 500;
  display: contents;
}

/* --- Bottom Bar --- */
.footer-bottom {
  background: linear-gradient(90deg, #e5c21e 0%, #000000 100%);
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}

.footer-bottom p {
  margin: 5px 0;
  font-weight: 400;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.app-buttons img {
  cursor: pointer;
  width: 150px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero,
  .features-content,
  .info-cards,
  .reviews-list,
  .stats {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-img,
  .about-content img {
    margin-top: 1rem;
    margin-left: 0;
  }
  .about {
    flex-direction: column;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    max-width: 100%;
  }

  .footer-stats {
    flex-direction: column;
  }

  .stat-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
  }

  .stat-box:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .container {
    width: 98%;
    padding: 0 5px;
  }
  nav {
    gap: 1rem;
    font-size: 1rem;
  }
  .features-content,
  .info-cards,
  .reviews-list,
  .stats {
    gap: 1rem;
  }
}
