* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
  line-height: 1.7;
}

/* HEADER */
.site-header {
  background: #fff;
  padding: 15px 30px;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

.site-header img {
  height: 50px;
}

/* HERO */
.hero {
  background: #000;
  padding: 30px 0;
}

.hero-overlay {
  background: transparent;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-overlay p {
  font-size: 18px;
  color: #d6b56e;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

.content {
  flex: 2;
}

.content h2 {
  color: #b98b2d;
  font-size: 22px;
  margin: 30px 0 10px;
}

.content p {
  font-size: 15px;
  margin-bottom: 15px;
}
/* related blogs */

.related-blogs {
    text-align: center; /* Centers content horizontally */
    background-color: #f8fbff; /* Optional: Matches your light blue theme */
    padding: 30px;
    border-radius: 8px;
}

.related-blogs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center; /* Ensures the list content specifically is centered */
}

.related-blogs li {
    display: inline; /* This is crucial: makes items flow like a sentence */
    margin: 0 10px; /* Adds space between the items */
    line-height: 2.2; /* Adds vertical space between lines */
}

.related-blogs a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.related-blogs a:hover {
    color: #b98b2d;
    text-decoration: underline;
}
/* FAQ */
.faq details {
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 15px;
  margin-bottom: 10px;
  cursor: pointer;
}

.faq summary {
  font-weight: bold;
  color: #333;
}

/* SIDEBAR */
/* SIDEBAR BASE */
.sidebar {
  display: inline-flex;           /* 🔑 fit to content */
  flex-direction: column;
  width: auto;
  max-width: 340px;
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* IMAGE */
.sidebar-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* COMMON BOX */
.sidebar-box {
  width: 100%;
  padding: 20px;
  margin-bottom: 22px;
  border-radius: 6px;
  border: 1px solid #e2e2e2;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* FORM */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enquiry-form h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 6px;
}

.enquiry-form input {
  height: 46px;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.enquiry-form input:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

/* PHONE FIELD */
/* Updated Phone Field Styles */
.phone-field {
  display: flex;
  align-items: stretch; /* Forces children to have the same height */
}
.phone-field span {
  display: flex;
  align-items: center;    /* Centers +91 vertically */
  justify-content: center; /* Centers +91 horizontally */
  height: 46px;           /* Matches the input height exactly */
  padding: 0 12px;        /* Removed vertical padding, kept horizontal */
  background: #eee;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  color: #333;
}

.phone-field input {
  flex: 1;                /* Makes input take up remaining width */
  height: 46px;           /* Explicitly matching height */
  border-radius: 0 4px 4px 0;
  margin: 0;              /* Removes any default browser margins */
}
/* SUBMIT BUTTON */
.enquiry-form button {
  height: 46px;
  background: #000;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.enquiry-form button:hover {
  background: #222;
}

/* BUTTONS CONTAINER */
.center-box {
  display: flex;
  justify-content: center;
}

.sidebar-buttons {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sidebar-buttons a {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9b25f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: background 0.25s ease;
}

.sidebar-buttons a:hover {
  background: #c59a3e;
}

/* LOGO */
.sidebar-logo {
  text-align: center;
  margin-top: 10px;
}

.sidebar-logo img {
  max-width: 160px;
}

/* =========================
   FOOTER STYLES
========================= */
.footer-section {
  background: #111;
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 20px;
}

.footer-block h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}

/* =========================
   RESPONSIVE DESIGN 
========================= */

/* Tablets and Mobile Devices */
@media (max-width: 992px) {
  .container {
    flex-direction: column; /* Stack Content and Sidebar vertically */
    margin: 20px auto;
  }

  .sidebar {
    width: 100%;        /* Sidebar takes full width */
    max-width: 100%;    /* Override the previous limit */
    display: flex;
    flex-direction: column;
  }
  
  /* Optional: Make sidebar boxes sit side-by-side on tablets */
  /* @media (min-width: 600px) {
      .sidebar { flex-direction: row; flex-wrap: wrap; gap: 20px; }
      .sidebar-box { flex: 1; min-width: 300px; }
  } */
}

/* Small Mobile Devices */
@media (max-width: 600px) {
  .hero-overlay h1 {
    font-size: 24px; /* Smaller heading for mobile */
  }

  .hero-content p {
    font-size: 15px;
  }

  .content h2 {
    font-size: 19px;
  }

  .site-header {
    padding: 10px;
  }

  .site-header img {
    height: 40px;
  }

  /* Make Related Blogs stack if links are long */
  .related-blogs ul {
    flex-direction: column;
    gap: 10px;
  }

  .related-blogs li {
    white-space: normal; /* Allow text to wrap on very small screens */
  }

  .footer-content {
    grid-template-columns: 1fr; /* Single column footer */
    text-align: center;
  }

  .footer-links li {
    margin-bottom: 8px;
  }
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}