
section.content {
  background: var(--color-gray-100);
  padding: var(--spacing-10) 0 var(--spacing-20) 0;
}


/* CONTACT SECTION */
section.contact {
  background: var(--color-yellow-200);
  padding: var(--spacing-20) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--spacing-10);
}
.contact h2 {
  margin-top: 0;
}
.contact p {
  margin-bottom: var(--spacing-6);
}
.contact-map {
  margin-top: var(--spacing-6);
}
.contact-form {
}

@media screen and (min-width: 40rem) {

}

@media screen and (min-width: 72rem) {
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--spacing-20);
  }
}


.prose p {
  max-width: 100%;
}
.service-locations-list {
}
.service-locations {
  margin: var(--spacing-12) auto;
}
.service-location:before {
  content: "📍";
}
.service-location h3 {
  display: inline-block;
  padding-left: var(--spacing-4);
}
.service-location h3 a {
  text-decoration: underline;
  text-decoration-color: var(--color-link);
  text-decoration-thickness: 2px;
}
.service-location:after {
  content: "→";
  color: var(--color-gray);
  font-weight: var(--font-line);
}
.service-location h3 a:hover {
  margin-right: 2px;
  transition: 0.05s;
  text-decoration-color: var(--color-link-hover);
}

@media all and (max-width: 48em) {

  .service-locations-list {
/*    display: block;
    max-width: 100%;*/
  }
}


.latest .prose {
	max-width: 100%;
}

.location_feed_list {
}

.location_feed_article {
}
.location_feed_list_image {
  height: 180px;
}
.location_feed_list_image img {
  width: 100%;
  height: 180px;

}

.location_feed_list_info {
/*  grid-column: 1;*/
}
.location_feed_list_info h3 {
  padding-top: 0;
  margin-top: 0;
}
.location_feed_list_info h3 a {
  color: black;
  text-decoration: none;
/*  text-decoration-color: #FFC312;*/
  transition: color 0.1s ease;
}
.location_feed_list_info h3 a:hover {
  color: rgb(237, 76, 103);
  transition: color 0.1s ease;
}
.location_feed_list_info h3 a:after {
  content: "»";
  padding-left: 0.5rem;
  transition: padding 0.1s ease;
}
.location_feed_list_info h3 a:hover:after {
  padding-left: 0.75rem;
}
.location_feed_list_info a.read_more {
/*  font-family: monospace;*/
  color: white;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  background: rgb(237, 76, 103);
  transition: padding 0.1s ease;
}
.location_feed_list_info a.read_more:hover 

/* SERVICE GALLERY */

.home-gallery{
padding:80px 0;
}

.home-gallery h2{
text-align:center;
margin-bottom:15px;
}

.home-gallery .section-intro{
text-align:center;
max-width:800px;
margin:0 auto 50px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.gallery-card{
position:relative;
overflow:hidden;
border-radius:12px;
display:block;
height:280px;
text-decoration:none;
}

.gallery-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.gallery-card:hover img{
transform:scale(1.08);
}

.gallery-card::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(0,0,0,.75),
rgba(0,0,0,.15)
);
z-index:1;
}

.gallery-card h3{
position:absolute;
bottom:20px;
left:20px;
right:20px;
color:#fff;
font-size:22px;
font-weight:700;
margin:0;
z-index:2;
}

@media(max-width:900px){
.gallery-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:600px){
.gallery-grid{
grid-template-columns:1fr;
}
}
.why-us-section h2{
font-size:42px;
text-align:center;
margin-bottom:40px;
}
.home-process{
padding:80px 0;
background:#f8f8f8;
}

.home-process h2{
text-align:center;
margin-bottom:15px;
color:#111;
}

.home-process .section-intro{
text-align:center;
max-width:700px;
margin:0 auto 50px;
}

.process-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.process-card{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.06);
text-align:center;
transition:.3s ease;
}

.process-card:hover{
transform:translateY(-5px);
}

.process-number{
width:50px;
height:50px;
margin:0 auto 20px;
background:#333333;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:20px;
}

.process-card h3{
margin-bottom:15px;
color:#111;
}

.process-card p{
margin:0;
color:#555;
line-height:1.7;
}

@media(max-width:900px){

.process-grid{
grid-template-columns:1fr;
}

}
.faq-category{
margin:30px 0 15px;
font-size:1.1rem;
}
.faq-category:first-of-type{
margin-top:10px;
}
.faq-grid details{
background:#fff;
border-radius:12px;
margin-bottom:15px;
box-shadow:0 5px 20px rgba(0,0,0,.06);
overflow:hidden;
}

.faq-grid summary{
padding:20px;
font-weight:600;
cursor:pointer;
background:#fff;
color:#111;
}

.faq-grid details p{
padding:0 20px 20px;
}

/* TRUST BAR */

.trust-bar{
padding:50px 0;
background:#f8f8f8;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.trust-item{
background:#ffffff;
padding:20px;
border-radius:12px;
text-align:center;
font-weight:700;
box-shadow:0 5px 20px rgba(0,0,0,.06);
}

@media(max-width:900px){

.trust-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.trust-grid{
grid-template-columns:1fr;
}

}

/* FINAL CTA */

.final-cta{
padding:80px 40px;
background:#333333;
color:#ffffff;
text-align:center;
border-radius:20px;
margin:80px 0;
}

.final-cta h2{
color:#ffffff;
margin-bottom:15px;
}

.final-cta p{
max-width:700px;
margin:0 auto 30px;
}

.cta-points{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-bottom:35px;
font-weight:600;
}

.final-cta-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.cta-call,
.cta-whatsapp{
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:700;
}

.cta-call{
background:#ffffff;
color:#111111;
}

.cta-whatsapp{
background:#25D366;
color:#ffffff;
}

.cta-call:hover,
.cta-whatsapp:hover{
opacity:.9;
}

@media(max-width:768px){

.final-cta{
padding:50px 25px;
}

}