/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
}

/* Header Wrapper */
.site-header {
  width: 100%;
  background: linear-gradient(to bottom, #866f15, #3c2d05); /* Darker gradient */
  color: white;
}

/* Top section: logo left, title center */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
}

.header-logo .logo {
  width: 80px;
  height: auto;
}

.site-title {
  margin: 0;
  flex-grow: 1;
  text-align: center;
  font-size: 2rem;
}

.header-spacer {
  width: 80px; /* Spacer matches logo width for alignment */
}

/* Navigation Bar */
.main-nav {
  background-color: #2a0505;
}

.main-nav ul {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.2s;
}

.main-nav a.active,
.main-nav a:hover {
  color: #cccc00;
}

/* Bottom Section */
.header-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  background-color: rgb(187, 191, 153);
  color: black;
  padding: 1rem 15rem;
  gap: 2rem;
  box-sizing: border-box;
}


.bottom-left p {
  margin: 0;
  line-height: 1.5;
}

.bottom-right {
  text-align: right;
}

/* Contact Numbers */
.tel-red {
  color:  #2a0505;
  font-weight: bold;
}

.tel-blue {
  color:  #2a0505;
  font-weight: bold;
}

.city {
  font-weight: bold;
}

/* CTA Button Styling */
.cta-button {
  background-color: #5a2d2d;
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #3e1f1f;
}

/* Optional: External link note */
.external-note {
  font-size: 0.8rem;
  color: #444;
  margin-top: 0.5rem;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-title {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }

  .header-spacer {
    display: none;
  }

  .main-nav ul {
    gap: 1rem;
    padding: 1rem;
    flex-direction: column;
  }

  .header-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bottom-right {
    text-align: center;
    margin-top: 1rem;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
  }
}


@media (max-width: 1024px) {
  .header-bottom {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 768px) {
  .header-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .bottom-right {
    margin-top: 1rem;
  }
}



/* Footer */
.site-footer {
  background: linear-gradient(to bottom, #866f15, #3c2d05); /* Matches header */
  color: white;
  padding: 2rem 1.5rem;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.3rem 0;
}

.footer-links a {
  color: white;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #cccc00;
}

.footer-column a {
  color: #aaddff;
  text-decoration: underline;
  word-break: break-word;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .page-container {
    padding: 0 1rem;
  }
}
/* ------------------------------------------------------- */
.how-we-work {
  margin: 4rem 0;
  text-align: center;
}

.how-we-work h2 {
  font-size: 1.8rem;
  color: #5a2d2d;
  margin-bottom: 2rem;
}

.work-steps {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 18%;
  max-width: 200px;
  margin: 0 auto;
}

.step img {
  height: 120px;            /* consistent height for all icons */
  width: auto;              /* auto width maintains aspect ratio */
  object-fit: contain;      /* ensures image fits within the box */
  margin-bottom: 1.5rem;
}

.step h3 {
  font-size: 1.1rem;
  color: #5a2d2d;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}


.faq-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 1rem;
  background: #fdf8f1;
  color: #333;
  transition: all 0.3s ease;
}

.faq-card summary {
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  color: #5a2d2d;
  list-style: none;
}

.faq-card p {
  margin-top: 0.8rem;
  line-height: 1.5;
  color: #333;
}

.faq-card[open] {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

@media (max-width: 768px) {
  .faq-card {
    padding: 0.8rem;
  }
  .faq-card summary {
    font-size: 1rem;
  }
}
/* Content text color */
main, main p, main h1, main h2, main h3, main h4, main h5, main h6 {
  color: #5a2d2d;
}

main a {
  color: #ae902e; /* dark gray or nearly black for links */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s ease;
}

main a:hover {
  color: #5a2d2d; /* dark red on hover */
}
.page-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
}

.intro-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.intro-image {
  flex: 1 1 40%;
  min-width: 250px;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .page-intro {
    flex-direction: column;
    text-align: center;
  }
}

.footer-column.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-frame-wrapper {
  width: 100%;
  max-width: 125px;
  height: 190px; /* Use fixed height instead of padding-bottom */
  position: relative;
}

.badge-frame-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.badge-iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.map-container {
  margin-bottom: 2rem; /* Adds space below each map */
}

.contact-addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* Adjust as needed */
  margin-bottom: 2rem; /* Adds spacing below addresses */
}

.office {
  flex: 1;
  min-width: 300px;
}

.content-block.with-image {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.content-block .text-content {
  flex: 1 1 60%;
  min-width: 280px;
}

.content-block .image-content {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.5rem; /* ← Add this to push the image downward */
}

.content-block .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem; /* ← Add this to push the image downward */
}

/* ✅ Mobile responsive (stacked layout below 768px) */
@media (max-width: 768px) {
  .content-block.with-image {
    flex-direction: column;
  }

  .content-block .image-content {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}



