/* assets/css/style1.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #fffaf5;
  color: #333;
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.logo-text h1 {
  font-size: 1.1rem;
  color: #222;
  margin: 0;
  font-weight: 700;
}

.logo-text span {
  font-size: 12px;
  color: #777;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover {
  color: var(--orange);
}

/* Get Quote Button */
.quote-btn {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #e85c00;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

}

main {
  max-width: 1100px;
  margin: auto;
  padding: 30px 15px;
}

.contact-card {
  background: #fff4e6;
  border-radius: 10px;
  padding: 120px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer.footer {
  background: #222;
  color: #ccc;
  padding: 40px 15px;
  font-size: 15px;
}

.footer a {
  color: #ff7a00;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
/* Hamburger Icon */
.hamburger {
  display: none;
  width: 30px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  margin: 6px 0;
  transition: 0.4s;
}

/* Mobile Menu Hidden Default */
#mobileMenu {
  display: none;
  background: white;
  text-align: center;
  padding: 20px 0;
}

#mobileMenu ul {
  list-style: none;
  padding: 0;
}

#mobileMenu ul li {
  padding: 10px 0;
}

#mobileMenu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

/* Show Hamburger on Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    display: none;
  }
}

