//* style.css */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;


}

.lang.fr {
  display: none;
}

.lang-toggle-fr .lang.en {
  display: none;
}

.lang-toggle-fr .lang.fr {
  display: inline;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switch {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

#language-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

#language-toggle .active-lang {
  color: #ff7f00; /* orange highlight */
}

.lang-label {
  color: #666;
  transition: color 0.3s ease;
}

.lang-label.active {
  color: #ff7f00;
}

/* Align the desktop version inside the nav-menu list */
.language-toggle-item {
  display: flex;
  align-items: center;
/*  padding-left: 1rem;*/
}

/* Mobile toggle is hidden by default */
.mobile-lang-switch {
  display: none;
}

html, body {
  /*height: 100%;
  width: 100%;*/
  margin: 0;
  padding: 0;
  overflow-x: hidden;

}

body, html {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.container, .page-container, main, .hero, .nav-container {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  margin-top: 1em;
  margin-bottom: 1em;
}

/* Ensure padding is included in total width */
.contact-form *,
.contact-form *::before,
.contact-form *::after {
  box-sizing: border-box;
}

/* Ensure form inputs and textarea don't overflow */
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Typography */
body, button, input, textarea {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;

}
/*  display: block;*/


/* Navbar */
.navbar {
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);

}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
/*  padding: 1rem 0;*/
}
.logo img {
  height: 50px;
}
.nav-menu {
  list-style: none;
  display: flex;          /* ✅ Show menu on desktop */
  flex-direction: row;
  gap: 2rem;
  font-weight: bold;
  padding: 0;
}


.nav-menu.active {
  transform: translateX(0);
}



.nav-menu li a {
  display: flex;
  align-items: center;
  justify-content: center; /* Center everything, not space-between */
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1;
  color: #333;
}

.nav-menu li a.btn-primary {
  white-space: nowrap;              /* 🔒 Keep text on one line */
  color: #fff;
}


.nav-menu li a:hover {
  color: #e76e00;
}
.nav-menu li a.btn-primary:hover {
  color: #fff;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;

}
.bar {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
}

/* Submenu hidden by default */
.submenu {
  display: none;
  flex-direction: column;
  background: #f9f9f9;
  width: 100%;
  box-shadow: none;
  position: static; /* prevent z-order or stacking issues */
}


/* Show submenu when parent has .open */
.has-submenu.open .submenu {
  display: flex;
}

.submenu li {
  border-bottom: 1px solid #eee;
}

.submenu li a {
  .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
  min-width: 180px;
  display: none;
  padding: 0;
  border-radius: 4px;
  width: 100%; /* ✅ Make submenu take full width of parent li */
}

.has-submenu {
  position: relative;
}

.has-submenu.open .submenu {
  display: block;
}

.submenu li {
  border: none;
  width: 100%; /* ✅ Each li spans full width */
}

.submenu li a {
  display: block;
  padding: 0.85rem 1rem;
  background: #fff;
  color: #333;
  white-space: nowrap;
  width: 100%;        /* ✅ Ensure full width for underline */
  box-sizing: border-box;
}

.submenu li a:hover {
  background: #f5f5f5;
  color: #ff7f00;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
  min-width: 180px;
  display: none;
  padding: 0;
  border-radius: 4px;
  width: 100%; /* ✅ Make submenu take full width of parent li */
}

.has-submenu {
  position: relative;
  padding: 0;
}

.has-submenu.open .submenu {
  display: block;
}

.submenu li {
  border: none;
  width: 100%; /* ✅ Each li spans full width */
}

.submenu li a {
  display: block;
/*  padding: 0.85rem 1rem;*/
  background: #fff;
  color: #333;
  white-space: nowrap;
  width: 100%;        /* ✅ Ensure full width for underline */
  box-sizing: border-box;
}

.submenu li a:hover {
  background: #f5f5f5;
  color: #ff7f00;
}

.submenu {
  padding: 0;                /* ✅ removes extra inner spacing */
}

.submenu li {
  margin: 0;
  padding: 0;
}

.submenu li a {
  padding: 0.75rem 1rem;     /* controls click area */
  display: block;
  width: 100%;
  background: #fff;
  color: #333;
}


  font-size: 0.95rem;
  background: #f9f9f9;
}


/*.services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}*/

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Only apply special spacing to .services-toggle */
.nav-menu li .services-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1;
  color: #333;
}

.services-toggle .dropdown-arrow {
  position: relative;
  top: 2px;        /* tweak this value until it's visually centered */
  font-size: 0.7rem;
  color: #ff7f00;
}


.has-submenu.open .arrow {
  transform: rotate(180deg); /* point up when open */
}


.dropdown-arrow {
  font-size: 0.7rem;
  color: #ff7f00;
 
  vertical-align: middle;
}




/* Rotate on open */
.has-submenu.open .dropdown-arrow {
  transform: rotate(180deg);
}


/* Hero */
.hero {
  padding: 180px 0;
  background-image: url('https://static.showit.co/1600/aqqiyYlRSWWnrV6zHMeEHw/shared/640_kessler_blvd_west_dr-32.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(80, 80, 80, 1); /* or something like 0.7 */

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  color: #fff;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
}
.btn-primary {
  background: #ff7f00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background 0.3s;
  font-weight: 500;
}
.btn-primary:hover {
  background: #e76e00;
}

/* Sections */
section {
  padding: 2rem 0;
}
h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

/* Flip Hover */
.flip-container { 
	perspective: 1000px;
	overflow: hidden; 
}

.flipper {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.flip-container:hover .flipper { transform: rotateY(180deg); }

.flipper img {
  backface-visibility: hidden;
  width: 100%;
  display: block;
  border-radius: 1px;
}
.flipper .back {
  position: absolute;
  top: 0; left: 0;
  transform: rotateY(180deg);
}

/* Services Full-Width */
#services .container {
  max-width: 100%;
/*  padding: 0 1.5rem;*/
}

/* Services Grid */
.alt-grid { 
	display: grid; 
	gap: 0.5rem; 
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.service-row.reverse { 
	direction: rtl; 
}
.service-row.reverse .service-content { 
	direction: ltr; 
}
.service-img {
  height: 300px;
  overflow: hidden;
  width: 100%;
}
.service-img .flipper,
.service-img .flipper img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}
.service-content {
  display: flex; 
  flex-direction: column; 
/*  gap: 0.25rem;*/
  align-items: center; 
  text-align: center;
}
.services-alt .service-content p { 
	margin-bottom: 30px; 
}

.services-alt .service-content h3 + hr {
  width: 20%; 
  margin-bottom: 1px;
  border: none; 
  border-bottom: 2px solid #ff7f00;
}

.services-alt .service-content h3 {
  margin-bottom: 0.25rem; /* or 0 */
}

.services-alt .service-content hr {
  margin-top: 0;
  margin-bottom: 0.5rem; /* optional */
}

/* Buttons */
.btn-secondary {
  display: inline-block;
  padding: 10px 15px;
  background: #ff7f00;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-secondary:hover { background: #e76e00; }

/* Trust */
.trust-section {
  padding: 4rem 0;
  background: #f9f9f9;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
/*  padding: 0 1rem;*/
  align-items: stretch; /* ensure equal height */

}
.trust-item {
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.trust-item i {
  color: #ff7f00;
  margin-bottom: 1rem;
}

.trust-item p {
  text-align: center;
}

.trust-item h3,
.trust-item p {
  margin: 0.5rem 0; /* or adjust as needed */
}


/* Split Parallax */
.split-parallax {
  display: flex; 
  width: 100%; 
  min-height: 80vh; 
  overflow: hidden;
}
.parallax-img {
  flex: 0 0 50%;
/*  min-height: 80vh;*/
  background-image: url('images/parallax.jpg');
  background-attachment: fixed;
  background-size: cover; 
  background-position: center;
}
.parallax-content {
  flex: 0 0 50%; 
  background: #fff;
  padding: 4rem 3rem; 
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: flex-start;    /* ← prevents stretching */
  text-align: left;
}

/*.parallax-content hr{
	color: orange;
}
*/
.parallax-content h3 {
  font-size: 2rem; 
  margin-bottom: 0.75rem; 
  color: #333;
}
.parallax-content p {
  font-size: 2rem; 
  margin-bottom: 1.5rem; 
  color: #555;
  max-width: 500px;
}

.parallax-content .btn-secondary{
	padding: 1rem 2.5rem;
}

.icon-list {
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
  margin-bottom: 2rem;
}
.icon-item {
  display: flex;
  align-items: center; /* changed from flex-start */
  gap: 0.75rem;

}
.icon-item i {
  font-size: 1.75rem; 
  color: #ff7f00; 
/*  margin-top: 0.25rem;*/
}
.icon-item p {
  margin: 0; 
  font-size: 0.95rem; 
  color: #444; 
  line-height: 1.4;
}
.parallax-content .btn-secondary { 
	margin-top: 1rem; 
}

/* Contact Split */
.contact-split {
  display: flex; 
  gap: 2rem; 
  align-items: flex-start; 
  flex-wrap: wrap;
  /* NO fixed height here! JS will set .contact-images */
}
.contact-form { flex: 1 1 400px; }
.contact-images {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
}
.contact-images img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  border-radius: 4px;
}
.top-left   { 
	grid-area: 1 / 1 / 2 / 2; 
}
.bottom-left{ 
	grid-area: 2 / 1 / 3 / 2; 
}
.img-large   { 
	grid-area: 1 / 2 / 3 / 3; 
}


/* —— FAQ Accordion —— */
.faq-section {
  background: #f5f5f5;
  padding: 4rem 0;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #333;
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.accordion-item + .accordion-item {
  border-top: 1px solid #e0e0e0;
}
.accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 0.5rem 0.5rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}
.accordion-header:hover {
  background: #fafafa;
}
.accordion-header i {
  transition: transform 0.3s;
  font-size: 1.2rem;
  color: #ff7f00;
}
.accordion-item.active .accordion-header i {
  transform: rotate(45deg);
}
.accordion-content {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0.25rem 0.25rem;
}
.accordion-content p {
  padding: 0.5rem 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}


/* —— CTA Section —— */
.cta-section {
  background: #ff7f00;       /* primary brand color */
  color: #fff;
/*  padding: 1rem 0;*/
  text-align: center;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-primary {
  background: #fff;           /* invert colors for emphasis */
  color: #ff7f00;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;


}
.cta-section .btn-primary:hover {
  background: #ffe6cc;
  color: #e76e00;
}

/* Remove the old gallery entirely */
#gallery {
  display: none;
}



/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1rem;
}
.gallery-item { 
	overflow: hidden; 
	border-radius: 8px; 
}

.gallery-item img { 
	transition: transform 0.5s; 
}

.gallery-item:hover img { 
	transform: scale(1.1); 
}

/* Contact Form Inputs */
.form-group { margin-bottom: 1rem; }
input, textarea {
  width: 100%; 
  padding: 0.75rem;
  border: 1px solid #ccc; 
  border-radius: 4px;
}




/* Footer */
.footer {
  background: #222; 
  color: #bbb; 
  padding: 1.5rem 0;
}

.footer-content {
  display: flex;               /* ensure flex layout */
  flex-wrap: wrap;             /* allow wrapping on very small screens */
  justify-content: space-between; /* spread columns out evenly */
  align-items: center;         /* vertically center all items in the row */
  gap: 2rem;                   /* maintain your existing gap */
}

.footer-logo img { height: 37px; }
.footer-contact {
  display: flex; 
  flex-direction: column; 
  gap: 0.5rem;
}

.footer-contact a { 
	color: #ff7f00; 
}

.socials {
  display: flex; 
  gap: 1rem; 
  align-self: center;
}

.socials a {
	color: #bbb;
	transition: color 0.3s; 
}

.socials a:hover { 
	color: #ff7f00; 
}

.socials i { 
	display: block; 
}


.contact-images {
  /* whatever max you want—600px is a common sweet spot */
  max-height: 600px;
  overflow: hidden;
}



/* If JS still writes an inline height, make sure it never exceeds your cap: */
.contact-images[style] {
  max-height: 600px !important;
}

.contact-mosaic {
  display: block;
}

.mobile-contact-img {
  display: none;
  width: 90%;
  max-width: 500px;
  margin: 2rem auto;
  border-radius: 10px;
}



.full-bleed {
  width: 100%;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}



.contact-split {
  display: flex;
  justify-content: space-between;
}


.navbar.full-bleed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;        /* undo the full-bleed margins */
}

.cta-section{
	padding: 0.25rem 0 3.25rem;
}

/* Now clamp the .container inside each full-bleed so your content stays in the 95%/1200px width */
.full-bleed > .container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
/*  padding: 0 1rem;*/
}

@media (max-width: 900px) {
  .nav-menu{
  	gap: 5px;
  }
}

/* Desktop dropdown submenu overlay */
@media (min-width: 801px) {
  .nav-menu {
    position: relative; /* establish containing context */
    flex: 1;
    justify-content: flex-end;
  }

  .has-submenu {
    position: relative; /* for submenu positioning */
  }

  .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
  min-width: 180px;
  display: none;
  padding: 0;
  border-radius: 4px;
  width: 100%; /* ✅ Make submenu take full width of parent li */
}

.has-submenu {
  position: relative;
}

.has-submenu.open .submenu {
  display: block;
}

.submenu li {
  border: none;
  width: 100%; /* ✅ Each li spans full width */
}

.submenu li a {
  display: block;
  padding: 0.85rem 1rem;
  background: #fff;
  color: #333;
  white-space: nowrap;
  width: 100%;        /* ✅ Ensure full width for underline */
  box-sizing: border-box;
}

.submenu li a:hover {
  background: #f5f5f5;
  color: #ff7f00;
}

.mobile-socials {
    display: none !important;
  }

  .logo,
  .language-switch,
  .nav-toggle {
    order: initial;
  }

}


@media (max-width: 800px) {

  /* Navigation */
  /* Mobile Navigation Menu */
.nav-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 60px;
  right: 1rem;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  gap: 0; /* removes extra spacing between items */
}

.nav-menu .btn-primary {
  background: #ff7f00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  width: fit-content;
  display: block;
  margin: 1rem auto 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px; /* Optional: fixes height */
}



.nav-menu.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}


/* Menu Items */
/*.nav-menu li {
  border-bottom: 1px solid #ff7f00;
}*/

.nav-menu li:last-child {
  border-bottom: none;
}

/* General Link Style */
.nav-menu li a,
.nav-menu li .services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  font-weight: 500;
  font-size: 1rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: #333;
  background: white;
  min-height: 52px; /* Add this for height consistency */
}

.language-switch {
    order: 1;
    margin-left: 0;
}

  
	.nav-container {
		display: flex;
	    justify-content: space-between;
	    align-items: center;
	    flex-direction: row;
	}

	.mobile-lang-switch {
	    display: block;
	    padding-left: 1rem;
/*	    margin-top: 1rem;*/
	    margin-bottom: 0.5rem;
	 }

  /* Hide desktop toggle in mobile */
  .language-toggle-item {
    display: none;
  }

/* Hover */
.nav-menu li a:hover {
  background-color: #f5f5f5;
}

/* CTA Button */
.nav-menu li a.btn-primary {
  background: #ff7f00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem auto 0.25rem;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
  font-weight: 500;
  width: fit-content;
  max-width: 80%;

/*  display: block;*/
}

.nav-menu li a.btn-primary:hover {
  background: #e76e00;
}

/* Dropdown Submenu */
.has-submenu > .submenu {
  display: none;
  flex-direction: column;
  background: #f9f9f9;
}

.has-submenu.open > .submenu {
  display: flex;
}

.submenu li {
  border-bottom: 1px solid #eee;
}

.submenu li a {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  background: #f9f9f9;
  display: block;
}

.mobile-socials {
  display: flex;
  justify-content: center;
/*  padding: 1rem 0;*/
/*  border-top: 1px solid #eee;*/
}

.mobile-socials .socials {
  display: flex;
  gap: 1rem;
}

.mobile-socials a {
  color: #333;
  transition: color 0.3s ease;
}

.mobile-socials a:hover {
  color: #ff7f00;
}

.nav-menu .socials a {
  background: transparent !important;
  padding: 0.5rem; /* optional: reduce clickable area */
}

.nav-menu .socials a:hover {
  background: transparent !important;
  color: #ff7f00; /* or your preferred hover color */
}
.nav-menu .socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
/*  margin: 0 auto 5rem;*/
  text-align: center;
  max-width: 80%;
}





  /* Hero Section */
  .hero-content {
/*    padding: 2rem 1rem;*/
    text-align: center;
  }
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .service-row,
  .service-row.reverse {
    display: flex;
    flex-direction: column;
    direction: ltr; /* ✅ Ensures no reverse offset */
  }

  .service-img,
  .service-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .service-img {
  height: auto !important;
}


  .service-row{
  	gap: 0;
  }

  .service-row a{
  	margin-bottom: 15px;
  }


  /* Trust Section */
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center; /* centers content inside grid cells */
  }

  .trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Center the third item by spanning both columns */
  .trust-item:nth-child(3) {
    grid-column: 1 / -1;
  }


  .trust-section {
    padding: 2rem 1rem;
  }



  /* Split Parallax */
  .split-parallax {
    flex-direction: column;
  }

  .parallax-img,
  .parallax-content {
    flex: 0 0 auto !important; /* ← important fix */
    width: 100% !important;
    box-sizing: border-box;
  }

  .parallax-img {
    height: 200px !important;
    min-height: 200px !important;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }

  .parallax-content {
    padding: 2rem;
    align-items: center;
    text-align: center;
  }

  .parallax-content p {
    max-width: 100%;
  }

  /* Contact Section */
  .contact-split {
    flex-direction: column;
    align-items: center;
  }



  .contact-form,
  .contact-images {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-images {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.5rem;
    height: auto !important;
  }
  .contact-images .top-left,
  .contact-images .bottom-left,
  .contact-images .img-large {
    grid-area: auto !important;
  }
  .contact-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .contact-mosaic {
    display: none;
  }

  .mobile-contact-img {
  display: block;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
	}

	.mobile-contact-img img {
	  display: block;
	  width: 100%;
	  height: auto;
	  margin: 0;
	  padding: 0;
	  box-sizing: border-box;
	}
  .contact-form,
  .mobile-contact-img {
    flex: none; /* disables flex sizing */
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-mosaic {
  display: none;
}
  /* FAQ */
  .faq-section {
    padding: 2rem 1rem;
  }
  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .accordion {
    max-width: 100%;
    margin: 0 auto;
    box-shadow: none;
  }
  .accordion-item + .accordion-item {
    border-top: 1px solid #ddd;
  }
  .accordion-header {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }
  .accordion-header i {
    font-size: 1rem;
  }
  .accordion-content {
    padding: 0 1.25rem;
  }
  .accordion-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer p{
  	margin-bottom: 2px;

  }


  .footer-logo img {
    max-width: 150px;
    margin: 0 auto;
  }



  /* Global section spacing */
  /*section {
    padding: 2rem 1rem;
  }*/

  /* Container tweaks */
  /*.container {
    padding-left: 1rem;
    padding-right: 1rem;
  }*/

  .contact-form, .mobile-contact-img {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}


}


@media (max-width: 500px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item:nth-child(3) {
    grid-column: auto; /* reset so it doesn't span 2 columns */
  }
}
