/* Variables */
:root {
  --primary-color: #4A90E2;
  --secondary-color: #5da7a3;
  --background-color: #e0f2e9;
  --text-color: #0c0c0c;
  --heading-font: 'Lato', sans-serif;
  --body-font: 'Lato', sans-serif;
  --border-radius: 8px;
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --muted-color: #f0f5f4;
  --highlight-color: #d3e8e5;
}

/* General reset and box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  background-color: var(--background-color) !important; /* Force the background color to stay consistent */
  margin: 0;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

footer {
  background-color: var(--background-color);
}

.form-container {
  background-color: var(--background-color);
  display: flex;
  justify-content: flex-start;
}

.mt-5 {
  margin-top: 1rem !important;
}

.mb-5,
.mb-3 {
  margin-bottom: 3rem !important;
}

.text-white {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #ffffff;
}

.bg-dark {
  background-color: transparent;
}

.bg-red {
  background-color: var(--background-color);
}

.bg-grey {
  background-color: var(--muted-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.py-1 {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

/* Global Heading Styles */
h1, h2 {
  font-family: var(--heading-font);
  color: var(--secondary-color); /* Use secondary color for all h2 elements */
  text-align: center;
  font-size: 1.3rem; /* Uniform font size across all h2 elements */
  margin-bottom: 20px;
}


h5 {
  font-family: var(--heading-font);
  color: #0d0d0e;
  font-size: 1.2rem;
}

p {
  color: var(--text-color);
}

form {
  padding: 40px;
  margin: 0 auto;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}


.h-icon i {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.header {
  background-color: var(--background-color);
  padding: 15px 0;
}

.heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: var(--heading-font);
}

.subheading {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--heading-font);
}

.nav-link {
  display: flex;
  align-items: center;
}

.nav-link a.nav-linkin {
  flex: auto;
  display: inline-block;
  padding: 12px 24px; /* Comfortable padding */
  background-color: transparent; /* Transparent background for a flat look */
  color: #0c0c0c; /* Use the secondary color for text */
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--secondary-color); /* Border with secondary color */
  border-radius: 8px; /* Slightly rounded corners */
  font-weight: bold;
  letter-spacing: 0.5px; /* Spaced-out text for modern look */
  transition: all 0.3s ease-in-out;
  margin-left: 15px;
  position: relative; /* For the hover effect */
  overflow: hidden; /* Hide the animated border */
}

.nav-link a.nav-linkin:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color); /* Animation background */
  z-index: -1;
  transition: transform 0.3s ease-in-out;
  transform: scaleX(0); /* Starts hidden */
  transform-origin: right;
}

.nav-link a.nav-linkin:hover:before {
  transform: scaleX(1); /* Expands to fill the button on hover */
  transform-origin: left;
}

.nav-link a.nav-linkin:hover {
  color: #fff; /* Changes text color on hover */
  background-color: var(--secondary-color); /* Background to match the hover effect */
}

.nav-link a.nav-linkin.active {
  background-color: var(--secondary-color);
  color: #fff; /* Active state similar to hover */
}

/* Mobile-specific adjustments */
@media only screen and (max-width: 768px) {
  .nav-link a.nav-linkin {
    font-size: 14px;
    padding: 8px 16px;
    margin: 5px;
  }
}


ul {
  list-style: none; /* Remove default list marker */
  padding: 0;
  margin: 20px 0;
  font-family: var(--body-font); /* Simple, clean font */
  font-size: 16px; /* Standard text size */
  font-weight: 400; /* Regular font weight */
  background-color: #f9f9f9; /* Soft neutral background */
  border-radius: 12px; /* Rounded corners for a smoother look */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  overflow: hidden; /* Ensure rounded corners are respected */
  border: 1px solid #e0e0e0; /* Light border for separation */
}

ul li {
  display: flex;
  align-items: center; /* Center the checkmark and text */
  padding: 15px 20px; /* Comfortable padding for each item */
  margin: 0;
  color: var(--text-color); /* Dark text for contrast */
  border-bottom: 1px solid #e0e0e0; /* Light border between items */
}

ul li:last-child {
  border-bottom: none; /* Remove bottom border from the last item */
}

ul li::before {
 
  color: #4caf50; /* Green check mark */
  font-size: 18px; /* Size of the check mark */
  margin-right: 15px; /* Space between check mark and text */
}



.container {
  width: 100%;
  padding-right: 1rem; /* Slightly increased padding for better alignment */
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}


@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.align-items-center {
  align-items: center;
}

.burger-btn i {
  font-size: 1.5rem;
}

.imageh-blog {
  height: 350px;
  object-fit: cover;
}

/* Collapse */
.collapse-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.faqcollapse {
  background-color: var(--muted-color);
  border-radius: var(--border-radius);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  margin-bottom: 15px;
}

.faqcollapse .faqcollapsein {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  padding: 18px 24px;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

.left-collapse,
.right-collapse {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faqcollapse .fa-angle-down {
  color: var(--text-color);
  transition: 0.3s transform ease-in-out;
}

.inner-collapse {
  padding: 0px 20px 20px 20px;
}

.collapsecontent {
  max-height: 0px;
  transition: 0.3s linear 0s;
  overflow: hidden;
}

.faqcollapse.open .collapsecontent {
  max-height: fit-content;
}

.faqcollapse.open .fa-angle-down {
  transform: rotate(270deg);
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

.w-100 {
  width: 100% !important;
}

.justify-content-between {
  justify-content: space-between;
}

.p-2 {
  padding: 1rem !important;
}

.p-0 {
  padding: 0rem !important;
}

.m-0 {
  margin: 0rem !important;
}

.h-100 {
  height: 100%;
}

.border-1 {
  border-radius: 1rem;
}

/* ========================= */
/* Footer Social Media Icons */
/* ========================= */

.socialM {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual Social Icons */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 0 !important; /* Force square shape */
  background: #fff;
  margin: 20px 10px;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  text-decoration: none !important; /* Prevent underline */
  font-family: sans-serif;
  overflow: hidden;
  box-shadow: 5px 10px 20px rgba(150, 150, 150, 0.3);
  transition: width 0.3s ease-out, border-radius 0.1s ease-out;
}

/* Hover Effect - Expands and Remains Square */
.icon:hover,
.icon:focus,
.icon:active {
  width: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: #fff;
  border-radius: 0 !important; /* Ensure square shape */
  text-decoration: none !important; /* Remove underline */
}

/* Change Icon Color on Hover */
.icon:hover i {
  color: #fff;
}

/* Social Icon Colors */
.icon .fa-facebook-f,
.icon .fa-twitter,
.icon .fa-linkedin-in,
.icon .fa-github,
.icon .fa-youtube,
.icon .fa-reddit-alien,
.icon .fa-envelope,
.icon .fa-phone {
  color: var(--secondary-color);
}

/* Background Color Change on Hover */
.fb:hover,
.twt:hover,
.lnk:hover,
.git:hover,
.yt:hover,
.red:hover,
.mail:hover,
.phone:hover {
  background: var(--secondary-color);
}

/* ========================= */
/* Mobile-Specific Fixes */
/* ========================= */

@media only screen and (max-width: 768px) {
  /* Force square shape on mobile */
  .icon {
    border-radius: 0 !important;
  }

  /* Ensure hover styles work on touch */
  .icon:focus,
  .icon:active {
    border-radius: 0 !important;
    text-decoration: none !important; /* Remove underline */
  }
}


/* Responsive adjustments */
@media only screen and (max-width: 991px) {
  .main {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  body {
    background-color: var(--background-color);
  }

  form {
    padding: 15px;
  }

  .addsticky {
    position: fixed;
    width: 100%;
    top: -40px;
    transform: translateY(40px);
    transition: transform 0.5s;
    z-index: 1;
  }

  .img-logo {
    height: 40px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .h-icon i {
    font-size: 4rem;
    margin-bottom: 1rem;
  }

  input[type="submit"] {
    font-size: 16px;
  }

  .nav-link a {
    font-size: 14px;
    padding: 8px 16px;
    margin: 5px;
  }

  .nav-link {
    display: block;
  }

  .main-menu-container {
    overflow: hidden;
    position: fixed;
    text-align: center;
    height: fit-content;
    left: 0;
    width: 100vw;
    padding: 10px 0;
    background-color: var(--background-color);
    transform: translateX(-120vw);
    transition: all 0.5s ease;
    z-index: 5;
    margin-top: 10px;
  }

  .main-menu-container.opened {
    transform: translate(0px, 0);
  }

  .mb-5 {
    margin-bottom: 0rem !important;
  }

  .mt-5 {
    margin-top: 0rem !important;
  }

  .mb-3 {
    margin-bottom: 1rem !important;
  }

  .icon {
    border-radius: 50%;
    margin: 10px;
  }

  .icon:hover {
    width: 55px;
  }

  .d-none {
    display: none;
  }
  .containerQuote,
  #schedule-form-container,
  .crunch-info {
    max-width: 100%;
    padding: 10px;
    margin: 0 auto;
    box-shadow: none;
  }

  .col-lg-6 {
    width: 100%;
    padding: 0 15px;
  }

  /* Additional responsive adjustments for the quote container visibility */
  .fancy-heading {
    max-height: 100px;
    overflow-y: auto;
  }

  .containerQuote {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    margin-top: 10px;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}

/* Ensure no overflow on body or html */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Prevent page scrolling */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll on page */
  overflow-y: auto; /* Allow vertical scroll on the page itself */
}

.containerQuote {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  background-color: var(--muted-color); /* Soft background color */
  padding: 30px 20px;
  border-radius: var(--border-radius); /* Use your defined border-radius */
  box-shadow: var(--box-shadow); /* Soft box shadow for depth */
  max-width: 90%; /* 15% smaller on bigger screens */
  width: 100%; /* Ensure it can scale down on smaller screens */
  margin: 20px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--secondary-color); /* Soft border with secondary color */
  color: var(--text-color); /* Text color */
  box-sizing: border-box;
  min-height: 300px; /* Minimum height */
  height: auto; /* Allow it to grow with content */
  overflow: visible; /* Ensure content is fully visible */
  max-height: none; /* Let container grow freely */
}

/* Optional hover effect */
.containerQuote:hover {
  transform: scale(1.09); /* Slight scaling for an interactive feel */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Styling for text, number, date, and time fields */
.containerQuote input[type="text"],
.containerQuote input[type="number"],
.containerQuote input[type="date"],
.containerQuote input[type="time"],
.containerQuote select {
  padding: 10px;
  border: 1px solid #000;
  border-radius: var(--border-radius);
  width: 50%; /* 50% width on larger screens */
  margin-bottom: 15px;
  box-sizing: border-box;
  font-size: 14px;
  height: 40px; /* Ensure consistent height */
}

/* Larger width for origin and destination on bigger screens */
.containerQuote #origin,
.containerQuote #destination {
  padding: 10px;
  border: 1px solid #000;
  border-radius: var(--border-radius);
  width: 100%; /* 100% width for origin and destination fields */
  margin-bottom: 15px;
  box-sizing: border-box;
  font-size: 14px;
  height: 40px; /* Ensure consistent height */
}

/* Additional fields container */
#additional-fields {
  display: flex;
  gap: 10px;
}

/* Ensure full width on smaller screens */
@media (max-width: 768px) {
  .containerQuote {
    max-width: 90%;
    padding: 20px 15px;
  }
  .containerQuote #service-type,
  .containerQuote #item-type,
  .containerQuote #number-of-items,
  .containerQuote #weight,
  .containerQuote #pick-up-date,
  .containerQuote #pick-up-time,
  .containerQuote #origin,
  .containerQuote #destination {
    width: 100%; /* Full width on smaller screens */
    font-size: 13px;
    height: 40px; /* Same height on smaller screens */
    margin-bottom: 10px; /* Add spacing between fields */
    box-sizing: border-box; /* Include padding in width calculation */
  }

  /* Make additional fields stack on smaller screens */
  #additional-fields {
    flex-direction: column;
    gap: 10px; /* Increased gap for better spacing */
  }

  /* Specific styling for date and time fields */
  .containerQuote div input[type="date"],
  .containerQuote div input[type="time"] {
    width: 100%; /* Full width */
    height: 40px;
    margin-bottom: 10px;
  }
}

/* Fine-tune for extra small screens */
@media (max-width: 480px) {
  .containerQuote {
    max-width: 95%;
    padding: 15px 10px;
  }

  .containerQuote #item-type,
  .containerQuote #number-of-items,
  .containerQuote #weight,
  .containerQuote #pick-up-date,
  .containerQuote #pick-up-time,
  .containerQuote #origin,
  .containerQuote #destination {
    font-size: 12px;
    height: 40px;
    margin-bottom: 8px; /* Slightly smaller margin */
  }

  /* Ensure date and time fields have proper spacing */
  .containerQuote div input[type="date"],
  .containerQuote div input[type="time"] {
    width: 80%;
    margin-bottom: 8px;
  }
}
#result {
  font-family: 'Roboto Mono', monospace; /* Matching font style */
  font-size: 14px; /* Adjusted to match container font size */
  color: #085552; /* Matching text color */
  padding: 10px 15px; /* Padding for a similar feel */
   background-color: #fff;
  border: 1px solid #d3e8e5;
  box-shadow: var(--box-shadow); /* Same box-shadow for consistency */
  width: 100%; /* Ensure it stretches like other fields */
  margin-top: 15px; /* Space above to match design */
  text-align: left; 
  display: block; /* Ensure it behaves like a block element */
}

#result:empty {
  display: none;
}

/* Simple Fancy Heading Matching Social M Style */
.fancy-heading {
  width: auto;
  display: inline-block;
  font-family: sans-serif; /* Match the sans-serif font from Social M */
  font-size: 1.3rem; /* Smaller font size */
  font-weight: 600;
  color: #0c0c0c; /* Dark text color */
  background-color: #e0f2e9; /* Soft background to match palette */
  padding: 10px 20px;
  border: 2px solid #5da7a3; /* Matching secondary color */
  border-radius: 0; /* Square edges to match Social M icons */
  text-transform: none; /* No uppercase */
  letter-spacing: 0px;
  text-align: center;
  box-shadow: 5px 10px 20px rgba(150, 150, 150, 0.3); /* Soft shadow like icons */
}



.succerpage {
  background-color: var(--muted-color);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 450px;
  margin: 40px auto;
  text-align: center;
  border: 3px solid var(--secondary-color);
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: fadeIn 1s ease-out; /* Fade-in animation */
}

.succerpage::before {
  content: "✔ Success!";
  font-size: 1.8rem;
  color: var(--secondary-color);
  animation: slideIn 1s ease-out; /* Text slide-in effect */
}

.succerpage h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  animation: popUp 0.7s ease-out; /* Bounce-like effect on text */
}

.succerpage img {
  width: 70%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.succerpage img:hover {
  transform: scale(1.05); /* Zoom effect on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes popUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .succerpage {
    max-width: 90%;
  }
  .succerpage h3 {
    font-size: 1.1rem;
  }
  .succerpage img {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .succerpage {
    max-width: 95%;
    padding: 10px;
  }
  .succerpage h3 {
    font-size: 1rem;
  }
  .succerpage img {
    max-width: 90%;
  }
}

select.input-style {
  padding: 12px;
  border: 1px solid #000;
  border-radius: var(--border-radius);
  width: 48%;
  margin-bottom: 15px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #fff;
  color: var(--text-color);
  appearance: none;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMGw1IDVsNS01IiBmaWxsPSIjNjY2Ii8+PC9zdmc+');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: separate;
  border-spacing: 0 15px;
}

.table th, .table td {
  padding: 0.75rem 1.5rem;
  text-align: left;
  border-top: 1px solid #dee2e6;
}

.table th {
  background-color: #f8f9fa;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .table th, .table td {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .table th {
    white-space: nowrap;
  }

  .table-responsive {
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

.scrolling-message {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.scrolling-message span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

@media (max-width: 767px) {
  .crunch-info {
    margin-top: 20px;
  }
}

#schedule-form-container {
  align-self: flex-start;
  max-width: 100%;
}

/* Link styles */
a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

a:visited,
a:active {
  color: var(--secondary-color);
}

.fancy-heading {
  font-family: var(--heading-font);
}

.containerQuote #result,
ul {
  font-family: var(--body-font);
}


.map-container {
  position: relative;
  padding-bottom: 50.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background-color: var(--muted-color); /* Matches your theme */
  border-radius: var(--border-radius); /* Rounded corners */
  box-shadow: var(--box-shadow); /* Consistent shadow */
  margin-bottom: 20px; /* Space below the container */
  outline: 2px solid var(--secondary-color); /* Outline color matching quote container */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--border-radius); /* Ensure iframe inherits rounded corners */
}


.crunchinfo {
  background-size: 25%;
  background-repeat: no-repeat;
  background-position: top right;
  background-color: var(--muted-color);
  padding: 20px;
  border-radius: 40px;
  box-shadow: var(--box-shadow);
  max-width: 100%;
  margin: 5px auto;
}


.custom-color {
  color: #5da7a3;
}

/* Container Styling for col-lg-7 */
.col-lg-7 {
  max-width: 100%; /* Allow full width on smaller screens */
  margin: 30px auto;
  padding: 40px;
  background-color: #e0f2e9; /* Container background color */
  border-radius: var(--border-radius); /* Rounded corners */
  box-shadow: var(--box-shadow); /* Subtle shadow effect */
  font-family: var(--body-font); /* Body font */
  box-sizing: border-box; /* Ensures padding doesn't increase width */
}

/* Main Heading */
.col-lg-7 h1 {
  font-size: 2.2 rem; /* Slightly larger than h3 */
  color: var(--text-color); /* Text color */
  text-align: center;
  margin-bottom: 25px; /* Moderate space below */
  font-weight: 600; /* Bold */
  font-family: var(--heading-font); /* Heading font */
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* Subheading (h2) */
.col-lg-7 h2 {
  font-size: 1.2rem; /* Similar to h1 but smaller */
  color: var(--text-color); /* Consistent text color */
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  font-weight: 500;
  border-bottom: 3px solid var(--muted-color); /* Muted border */
  letter-spacing: 0.5px;
  text-transform: uppercase; /* Uppercase for emphasis */
  font-family: var(--body-font); /* Matching font */
}

/* Smaller Subheading */
.col-lg-7 h3 {
  font-size: 1.2rem; /* Slightly smaller for hierarchy */
  color: var(--text-color);
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  font-family: var(--body-font);
}

/* Paragraph Styling */
.col-lg-7 p {
  font-size: 1rem; /* Adjust for readability */
  color: var(--text-color);
  margin-bottom: 24px;
  line-height: 1.75;
  padding-left: 15px;
  padding-right: 15px;
  font-style: var(--body-font); 
}

/* Strong and Bold Text Styling */
.col-lg-7 b, .col-lg-7 strong {
  font-weight: 700;
  color: var(--secondary-color); /* Secondary color */
  text-transform: uppercase;
}

/* Link Styling */
.col-lg-7 a {
  color: var(--secondary-color); /* Secondary color */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: color 0.3s ease; /* Smooth transition */
}

/* Spacing between sections */
.col-lg-7 h2, .col-lg-7 h3 {
  margin-top: 35px;
}

/* Spacing for individual paragraphs */
.col-lg-7 p + p {
  margin-top: 18px;
}

/* Clean-up unordered list styling */
.col-lg-7 ul {
  padding-left: 25px;
  list-style-type: none;
}

.col-lg-7 ul li {
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Optional Hover Effect for Links */
.col-lg-7 a:hover {
  color: #0a574f; /* Subtle hover effect */
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
  .col-lg-7 {
    padding: 20px;
  }

  .col-lg-7 h1 {
    font-size: 1.8rem;
  }

  .col-lg-7 h2, .col-lg-7 h3 {
    font-size: 1.5rem;
  }

  .col-lg-7 p {
    font-size: 1.1rem;
  }
}


.btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px; /* Smaller text */
  font-weight: 600;
  color: var(--secondary-color); /* Green text */
  padding: 8px 20px; /* Compact size */
  border-radius: 6px; /* Slightly rounded */
  border: 2px solid var(--secondary-color); /* Green border */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff; /* White background */
  box-shadow: 2px 4px 8px rgba(150, 150, 150, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease-in-out;
  min-width: 120px; /* Smaller width */
  height: 40px; /* Compact height */
}

/* Hover Effect - Green Background */
.btn:hover,
.btn:focus {
  background: var(--secondary-color);
  color: #ffffff;
  box-shadow: 3px 6px 12px rgba(150, 150, 150, 0.3);
}

/* Pressed (Active) Effect - Darker Green */
.btn:active {
  background: #458c88; /* Darker green */
  color: #ffffff;
  transform: scale(0.96);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Mobile-Specific Adjustments */
@media only screen and (max-width: 768px) {
  .btn {
    width: auto;
    min-width: 100px;
  }
}



/* Adjust font size for displayed parameters */
#pick-up-location-display,
#drop-off-location-display,
#delivery-quote-display {
  font-size: 14px;  /* Set the desired smaller font size */
  line-height: 1.5;  /* Optional: Set line height for better spacing */
  color: #085552;  /* Optional: Adjust text color for better contrast */
  margin-top: 5px; /* Optional: Add space above the text */
}

/* Optionally add a class for better reusability */
.output-field {
  font-size: 14px;
  line-height: 1.5;
  color: #085552;;
  margin-top: 5px;
}


/* Main styling for .delivery-quote */
.delivery-quote {
  background-color: #fff;
  border: 2px solid #d3e8e5; /* Changed from 1px to match containerQuote's 2px */
  border-radius: var(--border-radius, 12px); /* Using CSS variable with fallback */
  box-shadow: var(--box-shadow, 0 6px 12px rgba(0, 0, 0, 0.1)); /* Using CSS variable with fallback */
  padding: 30px 20px; /* Matched containerQuote's horizontal padding */
  font-family: 'Lato', sans-serif;
  color: #0c0c0c;
  max-width: 90%; /* Matched containerQuote's max-width */
  width: 100%; /* Ensure full width on smaller screens */
  margin: 20px auto; /* Matched containerQuote's margin */
  background: linear-gradient(135deg, #f0f5f4, #e0f2e9);
  box-sizing: border-box; /* Added to match containerQuote */
  min-height: 300px; /* Added to match containerQuote */
  height: auto; /* Allow content to grow */
  overflow: visible; /* Changed from hidden to match containerQuote */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added to match containerQuote */
}

/* Responsive Adjustments - Simplified to match containerQuote's approach */
@media (min-width: 768px) {
  .delivery-quote {
    margin: 20px auto; /* Consistent with containerQuote's approach */
    /* No need to change padding as it's already matching */
  }
}


/* Updated .containerQuote2 with slightly darker background for delivery scheduling */
.containerQuote2 {
  font-family: var(--body-font, 'Lato'), sans-serif;
  background: var(--muted-bg-color, #f5f7f7); /* Slightly darker than white */
  border-radius: var(--border-radius, 8px);
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: var(--box-shadow, 0 4px 8px rgba(0, 0, 0, 0.1));
  color: var(--text-color, #0c0c0c);
  border: 1px solid var(--highlight-color, #d3e8e5);
  line-height: 1.5;
}

.containerQuote2 p {
  margin: 0 0 4px 0;
  font-weight: 600;
  color: var(--secondary-color, #5da7a3);
}

.containerQuote2 span {
  display: block;
  margin-bottom: 12px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.95em;
  padding-left: 12px;
  border-left: 2px solid var(--highlight-color, #d3e8e5);
}

.containerQuote2 select,
.containerQuote2 input {
  font-family: var(--body-font, 'Lato'), sans-serif;
  padding: 8px 12px;
  border: 1px solid var(--highlight-color, #d3e8e5);
  border-radius: var(--border-radius, 8px);
  width: 100%;
  margin-bottom: 16px;
  box-sizing: border-box;
  font-size: 0.95em;
  background: white; /* Keep inputs white for contrast */
  color: var(--text-color, #0c0c0c);
  line-height: 1.5;
  transition: border-color 0.2s ease;
}

.containerQuote2 select:focus,
.containerQuote2 input:focus {
  outline: none;
  border-color: var(--secondary-color, #5da7a3);
  box-shadow: 0 0 0 2px rgba(93, 167, 163, 0.2);
}

/* Delivery quote display area */
.containerQuote2-display {
  white-space: pre;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9em;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--highlight-color, #d3e8e5);
  background: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
  padding: 12px;
  border-radius: 4px;
}

.highlight {
  color: var(--secondary-color, #5da7a3);
  font-weight: 600;
}

/* Action buttons specific to delivery scheduling */
.containerQuote2 .action-btn {
  background-color: var(--secondary-color, #5da7a3);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: var(--border-radius, 8px);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.containerQuote2 .action-btn:hover {
  background-color: var(--secondary-dark, #4c8c88);
}

@media (max-width: 480px) {
  .containerQuote2 {
    padding: 16px;
  }
  
  .containerQuote2 select,
  .containerQuote2 input {
    padding: 10px 12px; /* Slightly more touch-friendly */
  }
}
/* Special Deal Styling */
.special-deal {
  background-color: #f9f9f9; /* Light background to make it stand out */
  border: 2px solid #5da7a3; /* Border color matching your theme */
  border-radius: 10px; /* Rounded corners */
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.special-heading {
  color: #5da7a3; /* Matching your theme color */
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.special-deal ul {
  list-style-type: disc;
  padding-left: 20px;
}

.special-deal li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333; /* Dark text for readability */
}

.special-deal strong {
  color: #5da7a3; /* Highlight key details */
}


/* Ensure dropdowns are styled correctly */
select.input-style {
  height: auto; /* Allow dropdown to expand */
  padding: 10px; /* Add padding for better appearance */
  font-size: 14px; /* Consistent font size */
  background-color: #fff; /* Ensure consistent background */
  appearance: none; /* Remove default browser styling */
  -webkit-appearance: none; /* For WebKit browsers */
  -moz-appearance: none; /* For Firefox */
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMGw1IDVsNS01IiBmaWxsPSIjNjY2Ii8+PC9zdmc+'); /* Custom dropdown arrow */
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

/* Ensure dropdown options are visible */
select.input-style option {
  padding: 10px; /* Add padding to options */
  font-size: 14px; /* Consistent font size */
  background-color: #fff; /* Ensure consistent background */
  color: var(--text-color); /* Text color */
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 15px; /* Add spacing between inputs */
  box-sizing: border-box; /* Ensure padding and border are included in width */
}
textarea {
  resize: none;
}

.hero-cta {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(93, 167, 163, 0.3); /* Your secondary color */
  backdrop-filter: blur(12px);
  color: var(--text-color);
  font-family: var(--heading-font);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* 🔥 Glossy White H1 with Soft Glow */
.hero-cta h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff; /* Glossy White */
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6); /* Glossy glow effect */
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Responsive H1 for Mobile */
@media (max-width: 768px) {
  .hero-cta h1 {
    font-size: 2.2rem;
  }
}

.hero-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.85;
}


.terms-column {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 20px 0;
  
}

.term-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.term-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.term-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.term-header i {
  font-size: 1.5rem;
  color: #5da7a3;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.term-header h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #2c3e50;
}

.term-points {
  padding-left: 45px;
  margin: 0;
}

.term-points li {
  padding: 5px 0;
  list-style-type: none;
  position: relative;
}

.term-points li:before {
  content: "•";
  color: #5da7a3;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}


/* Mobile Menu Toggle Styles */
@media (max-width: 991px) {
  .main-menu-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    flex-direction: column;
    width: 100%;
  }
  
  .main-menu-container.opened {
    max-height: 500px; /* Adjust based on your menu height */
  }
  
  .burger-btn i {
    transition: transform 0.3s ease;
  }
  
  .burger-btn.active i {
    transform: rotate(90deg);
  }
}

/* Delivery form styling */
.delivery {
  background-color: #f8f9fa;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #dee2e6;
}

.delivery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.items-container {
  margin-bottom: 15px;
}

.item {
  background-color: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #e9ecef;
}

.btn-small {
  padding: 5px 10px;
  font-size: 0.8rem;
  margin-top: 5px;
}

.remove-item, .remove-delivery {
  background-color: #f8d7da;
  color: #721c24;
}

.remove-item:hover, .remove-delivery:hover {
  background-color: #f1b0b7;
}

.add-item {
  background-color: #d1e7dd;
  color: #0f5132;
  margin-bottom: 15px;
}

.add-item:hover {
  background-color: #badbcc;
}

.delivery-quote {
    font-family: var(--body-font, 'Lato'), sans-serif;
    background: white;
    border-radius: var(--border-radius, 8px);
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: var(--box-shadow, 0 4px 8px rgba(0, 0, 0, 0.1));
    color: var(--text-color, #0c0c0c);
    border: 1px solid var(--highlight-color, #d3e8e5);
    line-height: 1.5;
    word-break: break-word; /* Prevents horizontal overflow */
    overflow-wrap: anywhere; /* Emergency break for long strings */
}

.delivery-quote p {
    margin: 0 0 4px 0;
    font-weight: 600;
    color: var(--secondary-color, #5da7a3);
}

.delivery-quote span {
    display: block;
    margin-bottom: 12px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.95em;
    padding-left: 12px;
    border-left: 2px solid var(--highlight-color, #d3e8e5);
    word-break: break-word; /* Fixes monospace overflow */
}

#delivery-quote-display {
    white-space: pre-wrap; /* Changed from pre to pre-wrap */
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--highlight-color, #d3e8e5);
    overflow-x: auto; /* Allows horizontal scrolling if absolutely needed */
    word-break: break-word; /* Emergency break for monospace */
}

.highlight {
    color: var(--secondary-color, #5da7a3);
    font-weight: 600;
}

@media (max-width: 480px) {
    .delivery-quote {
        padding: 16px;
        width: calc(100% - 32px); /* Accounts for reduced padding */
    }
    
    #delivery-quote-display {
        font-size: 0.85em; /* Slightly smaller on mobile */
    }
    
    .delivery-quote span {
        font-size: 0.9em; /* Smaller monospace text on mobile */
    }
}