/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* ================= GLOBAL ================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}

.divider {
  color: orange;
  margin-bottom: 30px;
}

/* ================= HEADER ================= */
.topbar {
  border-bottom: 1px solid #ddd;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 16px;
  max-width: 1100px;
  margin: auto;
}

.logo {
  font-weight: bold;
  color: orange;
}

.logo span {
  color: green;
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* ================= BANNER ================= */
.banner {
  text-align: center;
  margin: 30px 0;
}

.banner img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.banner h2 {
  color: green;
  margin-top: 15px;
}

/* ================= HERO ================= */
.hero {
  background: #fffaf3;
  padding: 50px 0;
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 34px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 25px;
}

.hero-logo img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* ================= BUTTONS ================= */
.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.btn {
  width: 280px;
  height: 55px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}

.green {
  background: #0a8f2f;
}

.orange {
  background: #ff7a00;
}

/* ================= FEATURES ================= */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
}

.feature-box {
  border: 1px solid #ff7a00;
  padding: 20px;
  width: 280px;
  text-align: center;
}

/* ================= ABOUT ================= */
.about-section {
  margin: 50px auto;
}

.about-heading {
  font-size: 18px;
  margin-bottom: 10px;
}

.about-text {
  max-width: 700px;
  margin: auto;
  font-size: 14px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #1e90ff;
  font-size: 14px;
}

/* ================= SERVICES ================= */
.services-section {
  margin: 50px auto;
}

.services-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ================= CONTACT ================= */
.contact-section {
  margin: 50px auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.contact-info {
  max-width: 350px;
  font-size: 14px;
}

.contact-map iframe {
  width: 100%;
  max-width: 450px;
  height: 300px;
  border: 0;
}

/* ================= FOOTER ================= */
.footer {
  margin-top: 60px;
}

.footer-top {
  max-width: 1100px;
  margin: auto;
  padding: 40px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.footer-col {
  max-width: 320px;
}

.footer-col h3 {
  margin-bottom: 10px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
}

.orange-text {
  color: orange;
}

.green-text {
  color: green;
}

.footer-bottom {
  background: #e25a00;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 13px;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 28px;
  }

  nav {
    display: none;
  }
}

nav a.active {
  color: #ff6a00;
  font-weight: bold;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  border-radius: 2px;
}

/* ================= RESPONSIVE NAV ================= */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 100%;
    text-align: center;
    display: none;
    flex-direction: column;
    border-top: 1px solid #ddd;
  }

  nav a {
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid #eee;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
