/* Universal Styles for All Location Pages - Cleaning By Love */
/* Date 076/22/2025 - Updated with Map Cards Support and Direction Cards */
/* CONSOLIDATED VERSION - All inline styles moved here from individual pages */
/* FIXED: Using background-image approach for green checkmarks */
/* UPDATED: Font Awesome icons for Edge browser compatibility */

/* CSS Variables */
:root {
  --primary-color: #00b3e3;
  --secondary-color: #0056b3;
  --accent-color: #4CAF50;
  --text-color: #333;
  --light-text: #fff;
  --light-bg: #f9f9f9;
  --border-radius: 8px;
  --box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans Pro', 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #121212;; /* Darker body text color */
  background-color: #fff;
  font-size: 15px; /* Set body text to 15px */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #121212; /* All H tags should be black */
}

p {
  margin-bottom: 15px; 
  font-size: 17px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #121212;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #121212;
}

/* CONSOLIDATED INLINE STYLES FROM ALL PAGES */
/* Fix for the large space below "Why Choose Cleaning By Love?" section */
.about-grid {
  align-items: flex-start;
}

/* Ensure "experience-stats" and "about-features" sit cleanly side-by-side */
.experience-stats {
  margin-bottom: 0 !important;
}

.about-features {
  margin-top: 0 !important;
}

/* Reduce vertical margin on section after about-section */
.about-section + .service-areas {
  margin-top: -40px;
}

/* HERO IMAGE HANDLING - Keep specific images in individual pages */
/* NOTE: Each page should have its own .hero.home, .hero.hailey, .hero.ketchum etc. */

/* FIXED: Green checkmarks using background-image approach */
ul.greencheck {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 100;
}

ul.greencheck li.greencheck {
    list-style: none !important;
    background-image: url('images/greencheck30.jpg') !important;
    background-repeat: no-repeat !important;
    background-position: 0 6px !important;
    background-size: 20px 15px !important;
    font-size: 17px !important;
    padding-left: 35px !important;
    line-height: 2.0em !important;
    z-index: 100;
    margin-bottom: 10px !important;
    display: block !important;
    position: relative !important;
}

/* FIXED: Enhanced iframe styles for proper grid layout */
.iframe-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: space-between !important;
    margin-bottom: 40px !important;
}

.iframe-container {
    width: calc(25% - 15px) !important;
    box-sizing: border-box !important;
    background-color: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.iframe-container:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}

.iframe-container iframe {
    width: 100% !important;
    height: 200px !important;
    border: none !important;
    display: block !important;
}

/* Enhanced driving directions grid */
.driving-directions-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin-bottom: 40px !important;
}

/* Enhanced direction card styles with hover effects */
.direction-card {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.direction-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.direction-card iframe {
    width: 100% !important;
    height: 200px !important;
    border: none !important;
    display: block !important;
}

/* Enhanced card content styling */
.card-content {
    padding: 20px !important;
    text-align: center !important;
}

.location-title {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    margin-bottom: 8px !important;
}

.location-address {
    font-size: 0.95rem !important;
    color: #333 !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}

.location-coordinates {
    font-size: 0.85rem !important;
    color: #666 !important;
    font-family: inherit !important;
    margin-top: 5px !important;
}

/* END CONSOLIDATED INLINE STYLES */

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.btn-secondary {
  background-color: transparent;
  color: var(--light-text);
  border: 2px solid var(--light-text);
}

.btn-secondary:hover {
  background-color: var(--light-text);
  color: var(--primary-color);
}

/* Header Styles */
.header {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 180px;
}

.logo img {
  max-width: 100%;
  height: auto;
  display: block; /* Ensures proper display */
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: var(--light-text);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.header-phone {
  display: flex;
  align-items: center;
}

.phone-icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light-text);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light-text);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section Fix */
/* Fully Tuned CSS File: stylesMASTER06122025.css */

/* NEW HERO 06/18/2025 */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px; /* aligns with logo left edge */
}

.hero-text {
  max-width: 640px;
  text-align: left;
}

.hero-text h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* ← Shadow effect */
}

.hero-text .tagline {
  font-size: 1.55rem;
  line-height: 1.5;
  font-weight: normal;
}
.hero-tagline {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 60ch;
  line-height: 1.5;
  margin-top: 1rem;
}
/* Hero Section End */
/* Optional Responsive Tweaks */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}
/*END NEW HERO */

/* Typography */
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.9), 0px 0px 3px rgba(0,0,0,0.7);
}

.hero-subtitle,
.hero-content .tagline {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 500;
  font-style: italic;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.9), 0px 0px 3px rgba(0,0,0,0.7);
  color: #fff;
}

/* Call-to-action button */
.cta-button,
.hero-buttons a {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background-color: #0095cc;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.hero-buttons a:hover,
.cta-button:hover {
  background-color: #006c99;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 17px;
}

.experience-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 1rem;
  color: #666;
}
/* H3 Color */
.about-features h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.75rem;
}
.benefits-features h3 {
margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.75rem;
}

/*List with disc */
ul.lister {
	list-style-type: none;
	padding: 0 0 0 50px;
	margin: 0;
	z-index:100;
}

ul.lister li.lister{
	list-style-position: outside;
	list-style:disc;
	background-repeat: no-repeat;
	background-position: 0 1px;
	font-size: 17px;
	padding-left: 100% 0.2em;
	line-height: 2.0em;
	z-index:100;
}
/*List with disc END */

/* Services Section */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* DIRECTION CARDS - For Hailey and Ketchum location pages */
.direction-cards-section {
  padding: 80px 0;
}

.direction-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Additional Services Section Fix */
.additional-services {
  margin-top: 40px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
}

.additional-services h3 {
  margin-bottom: 20px;
  color: #00b3e3;
  font-size: 1.5rem;
}

.services-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.services-column {
  flex: 1;
  min-width: 200px;
}

.services-column ul {
  list-style-type: none;
  padding: 0 0 0 50px;
  margin: 0;
  z-index:100;
}

.services-column li {	
	list-style-position: outside;
	list-style-image: url('images/greencheck30.jpg');
	background-repeat: no-repeat;
	background-position: 0 1px;
	font-size: 17px;
	padding-left: 100% 0.2em;
	line-height: 2.0em;
	z-index:100;
	margin-bottom: 10px;
	line-height: 1.5;
}

/* Thorough Cleaning Process Fix */
.cleaning-process {
  margin-top: 40px;
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #00b3e3;
}

.cleaning-process h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #00b3e3;
  font-size: 1.5rem;
}

.cleaning-process p {
  line-height: 1.6;
  font-size: 17px;
}

/* Service Areas Section */
.service-areas {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.area-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.area-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.area-card h3 {
  padding: 15px 15px 5px;
  margin: 0;
  color: #00b3e3;
  font-size: 1.3rem;
}

.area-card p {
  padding: 0 15px 15px;
  margin: 0;
  color: #555;
  font-size: 17px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 17px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--primary-color);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #666;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Schedule Section */
.schedule-section {
  padding: 80px 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

textarea.form-control {
  resize: vertical;
}

.form-submit {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 12px 25px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background-color: var(--secondary-color);
}

.contact-info {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--primary-color);
}

.contact-details {
  flex: 1;
}

.contact-details strong {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-details p {
  margin-bottom: 5px;
}

/* Contact Icons - Font Awesome (Edge Compatible) */

.schedule-contact-icon {
    display: inline-block !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 40px !important;
    font-size: 18px !important;
    margin-right: 10px !important;
    vertical-align: middle !important;
}

/* Phone Icon */
.schedule-contact-icon.phone {
    background-color: #00B4D8 !important;
    color: white !important;
}

.schedule-contact-icon.phone::before {
    content: "\f095" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-size: 18px !important;
}

/* Email Icon */
.schedule-contact-icon.email {
    background-color: #0077B6 !important;
    color: white !important;
}

.schedule-contact-icon.email::before {
    content: "\f0e0" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-size: 18px !important;
}

/* Location/Service Area Icon */
.schedule-contact-icon.location {
    background-color: #023E8A !important;
    color: white !important;
}

.schedule-contact-icon.location::before {
    content: "\f3c5" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-size: 18px !important;
}

/* Business Hours Icon */
.schedule-contact-icon.hours {
    background-color: #03045E !important;
    color: white !important;
}

.schedule-contact-icon.hours::before {
    content: "\f017" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-size: 18px !important;
}

/* Contact Information Font Awesome Icons End */

/* Accordion Section */
.accordion-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.accordion-section-heading {
  text-align: center;
  margin-bottom: 40px;
  color: #121212;
  font-size: 2.2rem;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background-color: var(--primary-color); /* Blue background */
  color: var(--light-text); /* White text */
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.accordion-header h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background-color: var(--primary-color); /* Blue background */
  color: #fff; /* White text */
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.accordion-header:hover {
  background-color: #f0f0f0;
}

.accordion-header.active {
  background-color: var(--primary-color);
  color: var(--light-text);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-body {
  padding: 20px;
}

.accordion-body p {
  margin-bottom: 15px;
  font-size: 17px;
}

.accordion-body ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.accordion-body li {
  margin-bottom: 5px;
}

/* About Location Section */
.about-location {
  padding: 80px 0;
}

.about-location h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #121212;
  font-size: 2.2rem;
}

.about-location h3 {
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about-location p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 17px;
}

/* Driving Directions Section */
.driving-directions {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.driving-directions h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #121212;
  font-size: 2.2rem;
}

.driving-directions > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.iframe-label {
  padding: 15px 15px 5px;
  font-weight: 600;
  color: var(--primary-color);
}

.iframe-coordinates {
  padding: 0 15px 15px;
  font-size: 0.9rem;
  color: #666;
}

/* Footer */
.footer {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  max-width: 180px;
}

.footer-logo img {
  max-width: 100%;
  margin-bottom: 15px;
}

.footer h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #fff;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: var(--light-text);
  transition: var(--transition);
}

.footer a:hover {
  opacity: 0.8;
}

.footer-phone {
  color: var(--light-text) !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ENHANCED RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .about-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-features {
    margin-top: 15px;
  }
  
  .driving-directions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .iframe-container {
    width: calc(50% - 10px) !important;
  }
}

@media (max-width: 1200px) {
  .direction-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 10px 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero {
    padding: 80px 0;
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .services-grid,
  .testimonials-grid,
  .features-grid,
  .iframe-row,
  .direction-cards-grid,
  .driving-directions-grid {
    grid-template-columns: 1fr !important;
  }
  
  .direction-card .card-content {
    padding: 15px 10px;
  }
  
  .direction-card iframe {
    height: 180px;
  }
  
  .iframe-container {
    width: 100% !important;
  }
  
  .iframe-row {
    flex-direction: column !important;
    gap: 15px !important;
  }
}

@media (max-width: 480px) {
  .header-phone {
    display: none;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .experience-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .services-columns {
    flex-direction: column;
  }
  
  .card-content {
    padding: 15px;
  }
}

.hero h1, .hero p, .hero .hero-subtitle {
  color: #fff !important; /* Force white text with !important */
}
/* SCHEDULE FORM STYLES - Add to stylesMASTER_final_background_image.css */
/* Enhanced form styles for the Schedule A Free Walk-Through form */

/* Form Container and Layout */
.schedule-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.schedule-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.schedule-form-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: normal;
}

.schedule-form-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.schedule-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.schedule-form-section {
  padding-right: 20px;
}

.schedule-contact-section {
  padding-left: 20px;
  border-left: 1px solid #eee;
}

/* Enhanced Form Group Styles */
.schedule-form .form-group {
  margin-bottom: 25px;
}

.schedule-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

/* Enhanced Form Control Styles */
.schedule-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background-color: #fafafa;
  font-family: inherit;
}

.schedule-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: white;
}

.schedule-form select.form-control {
  cursor: pointer;
}

.schedule-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Enhanced Submit Button */
.schedule-form .form-submit {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: auto;
  min-width: 200px;
}

.schedule-form .form-submit:hover {
  background-color: var(--secondary-color);
}

.schedule-form .form-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Contact Information Styles */
.schedule-contact-info h3 {
  color: #333;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

.schedule-contact-item {
  margin-bottom: 35px;
}

.schedule-contact-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.schedule-contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 50%;
}

.schedule-contact-icon.phone {
  background-color: #dc3545;
}

.schedule-contact-icon.email {
  background-color: var(--primary-color);
  border-radius: 3px;
}

.schedule-contact-icon.location {
  background-color: #dc3545;
}

.schedule-contact-icon.hours {
  background-color: #333;
}

.schedule-contact-label {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
}

.schedule-contact-details {
  margin-left: 39px;
  color: #666;
  line-height: 1.5;
}

.schedule-contact-details a {
  color: var(--primary-color);
  text-decoration: none;
}

.schedule-contact-details a:hover {
  text-decoration: underline;
}

/* Message Styles */
.schedule-form .message {
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  display: none;
}

.schedule-form .success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.schedule-form .error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.schedule-form .loading {
  display: none;
  text-align: center;
  margin: 20px 0;
  color: var(--primary-color);
}
/* reCAPTCHA Fix - Override Google's dynamic styles */
/*.g-recaptcha-response {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
}

.g-recaptcha {
    margin: 15px 0;
    overflow: visible;
}

/* Fix reCAPTCHA iframe sizing */
/*.g-recaptcha iframe {
    width: 304px !important;
    height: 78px !important;
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .schedule-form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
  }
  
  .schedule-contact-section {
    border-left: none;
    border-top: 1px solid #eee;
    padding-left: 0;
    padding-top: 40px;
  }
  
  .schedule-form-section {
    padding-right: 0;
  }
  
  .schedule-form-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .schedule-form-container {
    padding: 20px 10px;
  }
  
  .schedule-form-wrapper {
    padding: 20px 15px;
  }
  
  .schedule-form-header h1 {
    font-size: 1.8rem;
  }
}
