/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Using Inter as preferred, with fallbacks */
  background-color: #f8f8f8; /* Lighter background for a cleaner look */
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased; /* Smoother fonts */
  -moz-osx-font-smoothing: grayscale;
}

/* Container for consistent width and centering */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
header {
  background-color: #1a237e; /* Deep blue for a professional feel */
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-area img#logo {
  height: 50px; /* Slightly larger logo */
  border-radius: 8px; /* Rounded corners for the logo */
}

/* Main Navigation */
nav#main-nav {
  display: flex;
  align-items: center;
}

nav#main-nav ul#nav-links {
  list-style: none;
  display: flex;
  gap: 25px; /* Space out navigation items */
  margin: 0;
  padding: 0;
}

nav#main-nav ul#nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600; /* Slightly bolder */
  padding: 8px 0;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

nav#main-nav ul#nav-links li a:hover,
nav#main-nav ul#nav-links li a.active {
  color: #ffa500; /* Orange highlight on hover/active */
  border-bottom: 2px solid #ffa500;
}

/* Navigation Buttons */
.nav-button.btn {
  padding: 10px 20px;
  border-radius: 8px; /* Rounded buttons */
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex; /* For better alignment with text */
  align-items: center;
  justify-content: center;
}

.nav-button.btn-primary {
  background-color: #ffa500; /* Orange for primary action */
  color: white;
  border: 2px solid #ffa500;
}

.nav-button.btn-primary:hover {
  background-color: #e69500;
  border-color: #e69500;
  transform: translateY(-2px); /* Slight lift effect */
}

.nav-button.btn-secondary {
  background-color: #007bff; /* Blue for secondary action */
  color: white;
  border: 2px solid #007bff;
}

.nav-button.btn-secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

/* Big Phone Number in Header */
.big-phone a {
  color: #ffa500; /* Bright orange for visibility */
  font-size: 1.5em;
  font-weight: 900; /* Extra bold */
  text-decoration: none;
  margin-left: 25px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.big-phone a:hover {
  color: #fff; /* White on hover */
}

/* Mobile Menu Toggle */
#mobile-menu-toggle {
  display: none; /* Hidden by default on larger screens */
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
  padding: 5px 10px;
}

#mobile-menu-toggle span {
  font-size: 1.2em; /* Hamburger icon size */
  margin-right: 5px;
}

/* --- HERO SECTION STYLES --- */
/* This is the updated block that controls the hero images */
.hero-section {
    position: relative;
    /* Default hero for internal pages (piano image) */
    background: url('images/hero-piano.png') no-repeat center center/cover; 
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
}

/* This special rule sets the new image ONLY on the homepage */
body:has(> main > .hero-section:first-child) .hero-section {
    background-image: url('images/hero-homepage.jpg');
}

.hero-section.hero-small {
  padding: 80px 20px; /* Smaller padding for internal pages */
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for better text readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  color: white;
  font-size: 3.5em; /* Larger, more impactful heading */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for readability */
}

.hero-content p {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons .btn {
  margin: 0 15px;
  padding: 18px 35px; /* Larger buttons */
  font-size: 1.2em;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 10px; /* More rounded */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Button shadow */
}

.hero-buttons .btn-secondary.call-now-btn {
  background-color: #007bff; /* Consistent blue for secondary CTA */
  border: 2px solid #007bff;
}

.hero-buttons .btn-secondary.call-now-btn:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Main Content Sections */
main {
  padding: 30px 0; /* Consistent padding */
}

.content-section {
  padding: 60px 0; /* Generous vertical padding for sections */
  text-align: center;
}

.content-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #1a237e; /* Consistent heading color */
  position: relative;
  display: inline-block; /* For underline effect */
}

.content-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ffa500; /* Orange underline */
  margin: 10px auto 0;
  border-radius: 2px;
}

.content-section p.lead {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 30px;
}

/* About Us Snippet (Homepage) */
#about-snippet p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
}

/* Service Highlights Section (Homepage) */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid for services */
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* More pronounced shadow */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px); /* Lift effect on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
  color: #1a237e;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.service-item p {
  color: #666;
  margin-bottom: 20px;
}

.service-item .service-link {
  display: inline-block;
  color: #ffa500;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.service-item .service-link:hover {
  color: #1a237e;
  text-decoration: underline;
}

/* Reviews Highlight Section (Homepage) */
#home-reviews {
  background-color: #f2f2f2; /* Slightly different background for visual separation */
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.review-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review-item {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
}

.review-item p:first-of-type {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.review-item p strong {
  display: block;
  text-align: right;
  color: #1a237e;
  font-size: 0.95em;
}

/* About Us Page Specific Styles */
.two-column-layout {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.two-column-layout .text-content,
.two-column-layout .image-content {
  flex: 1; /* Distribute space equally */
  min-width: 300px; /* Minimum width before wrapping */
}

.two-column-layout .text-content p {
  text-align: left;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.two-column-layout .image-content {
  text-align: center;
}

.two-column-layout .img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 12px; /* Rounded corners for images */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.values-section {
  margin-top: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.value-item h3 {
  color: #ffa500; /* Orange for value headings */
  font-size: 1.5em;
  margin-bottom: 10px;
}

.value-item p {
  color: #666;
}

/* Services Page Specific Styles */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-detail-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-detail-item h3 {
  color: #1a237e;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.service-detail-item p {
  color: #666;
  margin-bottom: 20px;
  text-align: left; /* Align text left within service item */
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  object-fit: cover; /* Ensures the real image covers the circular area */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-detail-item .btn-sm {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Pricing Page Specific Styles */
.pricing-section {
  padding-top: 40px; /* Adjust padding */
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background-color: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 2px solid transparent; /* Default transparent border */
}

.pricing-card.featured {
  border-color: #ffa500; /* Highlighted border for featured card */
  transform: scale(1.03); /* Slightly larger */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
  color: #1a237e;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.pricing-card .rate {
  font-size: 3em; /* Large rate */
  font-weight: bold;
  color: #ffa500; /* Orange for the price */
  margin-bottom: 20px;
}

.pricing-card .rate span {
  font-size: 0.5em; /* "/hour" smaller */
  font-weight: normal;
  color: #555;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #666;
  font-size: 1.05em;
  position: relative;
  padding-left: 25px; /* Space for custom icon */
}

.pricing-card ul li::before {
  content: '✓'; /* Checkmark icon */
  color: #28a745; /* Green check */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pricing-note {
  margin-top: 30px;
  font-size: 1.1em;
  color: #555;
}

.included-excluded-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.included-excluded-section h2 {
  font-size: 2em;
  margin-bottom: 25px;
}

.included-excluded-section ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.included-excluded-section ul li {
  margin-bottom: 12px;
  font-size: 1.1em;
  color: #444;
  position: relative;
  padding-left: 35px; /* Space for icon */
}

.included-excluded-section ul li i.icon-check,
.included-excluded-section ul li i.icon-x {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.2em;
}

.included-excluded-section ul li i.icon-check {
  color: #28a745; /* Green for included */
}

.included-excluded-section ul li i.icon-x {
  color: #dc3545; /* Red for excluded */
}

/* Areas We Serve Page Specific Styles */
.important-note {
  background-color: #fff3cd; /* Light yellow background */
  border-left: 5px solid #ffc107; /* Yellow border */
  padding: 15px 20px;
  margin: 30px auto;
  max-width: 800px;
  border-radius: 8px;
  color: #856404;
  font-size: 1.1em;
}

.county-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.county-service-area {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.county-service-area h2 {
  font-size: 1.8em;
  color: #1a237e;
  margin-bottom: 25px;
  text-align: center;
}

.county-service-area h2::after {
  width: 40px;
  height: 3px;
}

.zip-list {
  list-style: none;
  padding: 0;
  columns: 2; /* Two columns for zip codes on larger screens */
  column-gap: 20px;
}

.zip-list li {
  margin-bottom: 8px;
}

.zip-list li a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1em;
}

.zip-list li a:hover {
  color: #ffa500;
  text-decoration: underline;
}

.small-text {
  font-size: 0.85em;
  color: #777;
  margin-top: 20px;
  text-align: center;
}

/* Image Gallery Specific Styles */
.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden; /* Ensures image corners are rounded with card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistent image size */
  object-fit: cover; /* Ensures images cover the area without distortion */
  display: block;
}

.gallery-item-card .caption {
  padding: 15px;
  font-size: 1em;
  color: #555;
  text-align: center;
}

/* Reviews Page Specific Styles */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  border-left: 5px solid #ffa500; /* Orange accent border */
}

.review-card .review-text {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.review-card .review-author {
  font-weight: bold;
  color: #1a237e;
  text-align: right;
  font-size: 0.95em;
}

.review-card .review-location {
  display: block; /* New line for location */
  font-weight: normal;
  color: #777;
  font-size: 0.85em;
}

/* Blog Page Specific Styles */
.blog-posts-section {
  padding-top: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-post-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-post-card img.blog-post-image {
  width: 100%;
  height: 200px; /* Fixed height for blog images */
  object-fit: cover;
  display: block;
}

.blog-post-card .blog-post-content {
  padding: 20px;
}

.blog-post-card h3 {
  color: #1a237e;
  font-size: 1.5em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-post-card .post-meta {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 15px;
}

.blog-post-card p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* Careers Page Specific Styles */
.job-application-form {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px; /* Max width for forms */
  margin: 40px auto;
  text-align: left; /* Align form labels/inputs left */
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid for form fields */
  gap: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #1a237e;
  font-size: 0.95em;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ffa500;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
  outline: none;
}

.form-group textarea {
  resize: vertical; /* Allow vertical resizing */
  min-height: 80px;
}

.radio-group-container label {
  margin-bottom: 15px; /* Space below the main label for radio group */
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

.radio-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
  color: #333;
  font-size: 1em;
  margin-bottom: 0; /* Override default margin */
}

.radio-group input[type="radio"] {
  margin-right: 8px;
  width: auto; /* Don't force full width */
}

.full-width {
  grid-column: 1 / -1; /* Make this element span all columns in the grid */
}

/* Contact Page Specific Styles */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-info-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-info-card h3 {
  color: #1a237e;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.contact-info-card .contact-detail {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-info-card .contact-detail a {
  color: #ffa500;
  text-decoration: none;
}

.contact-info-card .contact-detail a:hover {
  text-decoration: underline;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px; /* Max width for contact form */
  margin: 40px auto;
  text-align: left;
}

/* Quote Page Specific Styles */
.moving-quote-form {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px; /* Wider for the quote form */
  margin: 40px auto;
  text-align: left;
}

.form-section {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.form-section:last-of-type {
  border-bottom: none; /* No border on the last section */
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h3 {
  color: #1a237e;
  font-size: 1.8em;
  margin-bottom: 25px;
  text-align: center;
}

.inventory-section .inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid for inventory categories */
  gap: 20px;
  margin-top: 20px;
}

.inventory-category {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.inventory-category h4 {
  font-size: 1.2em;
  color: #1a237e;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.inventory-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.inventory-item label {
  flex-grow: 1;
  margin-right: 10px;
  font-size: 0.95em;
  color: #444;
}

.inventory-item input[type="number"] {
  width: 70px; /* Fixed width for number inputs */
  text-align: center;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

/* Thank You Pages Specific Styles */
.contact-info-block {
  background-color: #f2f2f2;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
  display: inline-block; /* To center the block */
}

.contact-info-block p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #444;
}

.contact-info-block p:last-child {
  margin-bottom: 0;
}

.contact-info-block a {
  color: #1a237e;
  text-decoration: none;
  font-weight: bold;
}

.contact-info-block a:hover {
  text-decoration: underline;
}

/* General Button Styles (used across the site) */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ffa500; /* Primary orange */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none; /* Remove default button border */
  cursor: pointer;
  font-size: 1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: #e69500;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #ffa500;
  color: white;
}

.btn-secondary {
  background-color: #007bff;
  color: white;
}

.btn-secondary:hover {
  background-color: #0056b3;
}

.btn-tertiary {
  background-color: #6c757d; /* Grey for less prominent actions */
  color: white;
}

.btn-tertiary:hover {
  background-color: #5a6268;
}

.btn-lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9em;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.bg-light-gray {
  background-color: #f2f2f2;
}

/* Footer Styling (already in index.html, but repeated for clarity/consistency) */
footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  margin-top: 50px;
  border-top: 5px solid #ffa500; /* Orange line at the top of the footer */
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffa500;
  text-decoration: underline;
}

footer p a {
  color: #ffa500;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer p a:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive Design for Mobile */
@media (max-width: 992px) {
  /* Adjust header for tablets and smaller desktops */
  header .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-area {
    margin-bottom: 15px;
  }

  nav#main-nav {
    width: 100%;
    justify-content: flex-end; /* Push toggle to the right */
  }

  #mobile-menu-toggle {
    display: block; /* Show the hamburger menu toggle */
    order: 2; /* Position it after the logo */
    margin-left: auto; /* Push to the right */
  }

  nav#main-nav ul#nav-links {
    flex-direction: column;
    width: 100%;
    background-color: #1a237e; /* Same as header background */
    position: absolute;
    top: 80px; /* Below the header */
    left: 0;
    right: 0;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
    z-index: 100; /* Ensure it's on top */
  }

  nav#main-nav ul#nav-links.active {
    display: flex; /* Show when active */
  }

  nav#main-nav ul#nav-links li {
    text-align: center;
    margin-bottom: 10px;
  }

  nav#main-nav ul#nav-links li a {
    padding: 12px 20px;
    display: block;
    border-bottom: none; /* Remove underline from active state */
  }

  nav#main-nav ul#nav-links li a:hover,
  nav#main-nav ul#nav-links li a.active {
    background-color: #0056b3; /* Darker blue for active/hover */
    color: white;
    border-bottom: none;
  }

  .nav-button.btn {
    width: 80%; /* Make buttons full width in mobile menu */
    margin: 10px auto;
    display: block;
  }

  .big-phone {
    order: 1; /* Position phone number before toggle */
    margin-left: 0;
    margin-right: auto; /* Push to the left */
    font-size: 1.3em;
  }

  .hero-content h1 {
    font-size: 2.5em; /* Adjust font size for mobile */
  }

  .hero-content p {
    font-size: 1.1em;
  }

  .hero-buttons .btn {
    width: 90%;
    margin: 10px auto;
    display: block;
  }

  .content-section h2 {
    font-size: 2em;
  }

  .service-highlights,
  .review-highlights {
    grid-template-columns: 1fr; /* Stack items vertically on small screens */
  }

  #cta h2 {
    font-size: 2.2em;
  }

  #cta .btn-lg {
    font-size: 1.2em;
    padding: 15px 30px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  /* About Us Page Specific Responsive Styles */
  .two-column-layout {
    flex-direction: column;
  }

  .two-column-layout .text-content,
  .two-column-layout .image-content {
    min-width: unset; /* Remove min-width to allow full width */
    width: 100%; /* Take full width */
  }

  .two-column-layout .text-content p {
    text-align: center; /* Center text on mobile */
  }

  .values-grid {
    grid-template-columns: 1fr; /* Stack values on mobile */
  }

  /* Services Page Specific Responsive Styles */
  .service-detail-grid {
    grid-template-columns: 1fr; /* Stack services on mobile */
  }

  .service-detail-item p {
    text-align: center; /* Center text within service item on mobile */
  }

  /* Pricing Page Specific Responsive Styles */
  .pricing-grid {
    grid-template-columns: 1fr; /* Stack pricing cards on mobile */
  }

  .included-excluded-section .two-column-layout {
    flex-direction: column;
  }

  .included-excluded-section ul {
    max-width: 100%; /* Allow full width for lists on mobile */
  }

  /* Areas We Serve Page Specific Responsive Styles */
  .county-service-grid {
    grid-template-columns: 1fr; /* Stack county areas on mobile */
  }

  .zip-list {
    columns: 1; /* Single column for zip codes on mobile */
  }

  /* Image Gallery Specific Responsive Styles */
  .image-gallery-grid {
    grid-template-columns: 1fr; /* Stack images on mobile */
  }

  /* Reviews Page Specific Responsive Styles */
  .reviews-grid {
    grid-template-columns: 1fr; /* Stack reviews on mobile */
  }

  /* Blog Page Specific Responsive Styles */
  .blog-grid {
    grid-template-columns: 1fr; /* Stack blog posts on mobile */
  }

  /* Forms (Careers, Contact, Quote, Payment) Specific Responsive Styles */
  .job-application-form,
  .contact-form,
  .moving-quote-form,
  .payment-form {
    padding: 25px; /* Reduce padding on smaller screens */
  }

  .form-grid {
    grid-template-columns: 1fr; /* Stack form fields vertically on mobile */
  }

  .form-group.full-width {
    grid-column: auto; /* Reset full-width for mobile stacking */
  }

  .radio-group {
    flex-direction: column; /* Stack radio buttons vertically */
    gap: 10px;
  }

  .inventory-section .inventory-grid {
    grid-template-columns: 1fr; /* Stack inventory categories on mobile */
  }

  .inventory-item {
    flex-direction: column; /* Stack label and input */
    align-items: flex-start;
  }

  .inventory-item label {
    margin-bottom: 5px; /* Space between label and input */
    margin-right: 0;
  }

  .inventory-item input[type="number"] {
    width: 100%; /* Full width for number inputs */
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2em;
  }
  .hero-content p {
    font-size: 1em;
  }
  .big-phone a {
    font-size: 1.1em;
  }
}
