@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Black.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBold.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Thin.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraLight.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  /* font-display: swap; */
}

:root {
  --poppins: "Poppins";
  --black: #000000;
  --white: #ffffff;
  --grass-green: #5cad2f;
  --coco-black: #1d1c1a;
  --grayish-blue: #646568;
  --white-gray: #eeeeee;
  --cerebral-grey: #cccccc;
  --dark-charcoal: #282828;
  --cultured-white: #f4f4f4;
  --platinum: #e4e4e4;
  --greenish-tint: #f5ffef;
  --dark-gray: #333333;
  --ghost-white: #cbccd1;
}

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

body {
  font-family: var(--poppins);
  font-size: 16px;
  color: var(--black);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  overflow: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

span {
  display: inline;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--poppins);
  margin: 0px;
  padding: 0px;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
li {
  font-family: var(--poppins);
  list-style: none;
}

img {
  display: inline-block;
  max-width: 100%;
  /* width: auto; */
}

.container {
  width: 100%;
  max-width: 1480px;
  padding: 0px 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.primary_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: var(--grass-green);
  border-radius: 120px;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--white);
  width: max-content;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.primary_btn:hover {
  background-color: var(--coco-black);
  color: var(--white);
  transform: translateY(-3px);
}

.primary_btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/uploads/2025/10/Chevron_Right_Duo.svg");
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s all ease-in-out;
}

.primary_btn:hover::after {
  transform: translateX(5px);
}

.secondary_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  cursor: pointer;
  background-color: var(--white);
  border-radius: 120px;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--coco-black);
  width: max-content;
  transition: 0.3s all ease-in-out;
}

.secondary_btn:hover {
  background-color: var(--coco-black);
  color: var(--white);
  transform: translateY(-3px);
}

.secondary_btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/uploads/2025/10/Chevron_Right_Duo_black.svg");
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s all ease-in-out;
}

.secondary_btn:hover::after {
  transform: translateX(5px);
  background-image: url("/wp-content/uploads/2025/10/Chevron_Right_Duo.svg");
}

.section_heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.section_heading span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 31px;
  line-height: 1.25;
  color: var(--grass-green);
}

.section_heading span::after {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2025/10/Chargeport_Logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 85px;
  height: 31px;
}

.section_heading h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: var(--coco-black);
}

.comman-section {
  padding: 60px 0px;
  overflow: hidden !important;
}

/* Header Section */

header.site-header {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: all 0.5s ease;
}

header.site-header.scrolled {
  position: fixed;
  top: 0px;
  width: 100%;
  left: 0px;
  right: 0px;
  z-index: 99;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0px;
}

button.navbar-toggler,
.cta_btn.mobile {
  display: none;
}

.navbar-collapse ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.navbar-collapse ul li a {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--coco-black);
}

a.navbar-brand {
  display: flex;
}

.navbar-collapse ul li.current_page_item a {
  color: var(--grass-green);
}

.navbar-collapse .close_btn {
  display: none;
}

/* Footer */

footer {
  position: relative;
  background-color: var(--white-gray);
}

footer .container {
  position: relative;
}

/* .main-footer {
  padding-top: 200px;
} */

.main-footer .row {
  display: flex;
  padding: 64px 0px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid var(--cerebral-grey);
}

.main-footer .row .col:first-child {
  flex: 0 0 40%;
}

.main-footer .row .col:nth-child(2) {
  flex: 0 0 15%;
}

.main-footer .row .col:last-child {
  flex: 0 0 35%;
}

.main-footer .row .col .footer-logo img {
  display: block;
  width: auto;
}

.main-footer .row .col .widget-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.col .widget-main .footer_text p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--grayish-blue);
}

.col .widget-main .footer_social {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  padding-top: 16px;
}

.col .widget-main .footer_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 45px;
  /* padding: 16px; */
  /* border-radius: 50%;
  background-color: var(--grass-green); */
}

footer h5.widget-title {
  font-family: var(--grass-green);
  font-weight: 600;
  font-size: 25px;
  line-height: 100%;
  color: var(--grass-green);
  margin-bottom: 32px;
}

footer ul.thumbnail-widget {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .thumbnail-widget li a {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--grayish-blue);
}

.footer-copyright {
  background-color: var(--grass-green);
}

.footer-copyright .row .col {
  text-align: center;
  padding: 20px 0px;
}

.footer-copyright .row .col p {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
}

.row_contact {
  display: grid;
  gap: 20px;
  padding: 40px 0px;
  grid-template-columns: 340px 340px auto;
}
.row_contact .col_item {
  display: flex;
  align-items: start;
  gap: 20px;
}

.row_contact .col_item .col_image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 50%;
  background-color: var(--grass-green);
  width: fit-content;
}

.row_contact .col_item .col_image img {
  max-width: 32px;
  height: 32px;
}

.row_contact .col_item .col_desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.row_contact .col_item .col_desc h5 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.25;
  color: var(--grass-green);
}

.row_contact .col_item .col_desc p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--grayish-blue);
}

.subscribe_form {
  position: relative;
  overflow: hidden;
}

.subscribe_form img {
  display: flex;
  position: relative;
  min-height: 272px;
  max-height: 272px;
  height: 100%;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  overflow: hidden;
}

.form_content {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0000007a;
  gap: 20px;
  border-radius: 24px;
  padding: 20px 40px;
}

.form_content h2 {
  max-width: 600px;
  width: 100%;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: var(--white);
}

.form_content form {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff66;
  border-top: 1px solid #ffffff33;
  backdrop-filter: blur(4px);
  padding: 8px 8px 8px 20px;
  border-radius: 100px;
}

.form_content form > span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  width: 100%;
  max-width: 100%;
}

.form_content form input {
  outline: none;
  border: none;
  background-color: transparent;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
  width: 100%;
}

.form_content form input::placeholder {
  color: var(--white);
}

.form_content form button {
  border: none;
  outline: none;
}

.form_content form button:focus {
  outline: none;
}

.footer_newslatter {
  position: relative;
  width: 100%;
  margin-bottom: -150px;
  z-index: 9;
}

.footer_newslatter .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -45px;
  width: 100%;
  font-size: 14px;
}

.footer_newslatter .wpcf7 form.invalid .wpcf7-response-output,
.footer_newslatter .wpcf7 form.unaccepted .wpcf7-response-output,
.footer_newslatter .wpcf7 form.payment-required .wpcf7-response-output,
.footer_newslatter .wpcf7 form.sent .wpcf7-response-output {
  position: absolute;
  bottom: -50px;
  margin: 0px;
  padding: 0px;
  color: white;
  border: 1px solid inherit;
  font-size: 14px;
  left: 20px;
}

@media screen and (max-width: 1199px) {
  /* header */
  .navbar-collapse ul {
    gap: 16px;
  }
  .form_content h2 {
    max-width: 500px;
    width: 100%;
    font-size: 40px;
    line-height: 50px;
  }

  .form_content form input {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  /* Comman Section */
  .primary_btn,
  .secondary_btn {
    padding: 10px 18px;
  }

  .comman-section {
    padding: 40px 0px;
  }

  .section_heading span {
    font-size: 28px;
    line-height: 1.25;
  }
  .section_heading {
    gap: 4px;
    margin-bottom: 30px;
  }
  .section_heading span::after {
    width: 65px;
    height: 23px;
  }
  .section_heading h2 {
    font-size: 38px;
    line-height: 48px;
  }

  /* footer */
  .col .widget-main .footer_text p,
  footer ul.thumbnail-widget li a,
  .row_contact .col_item .col_desc p {
    font-size: 18px;
    line-height: 22px;
  }

  .row_contact {
    grid-template-columns: auto auto;
  }

  .form_content {
    flex-direction: column;
  }

  .form_content h2 {
    max-width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  /* Header */
  button.navbar-toggler,
  .cta_btn.mobile {
    display: block;
  }

  button.navbar-toggler {
    background-color: transparent;
    border: none;
    outline: none;
  }
  .navbar {
    position: relative; /* 👈 must be positioned so the child (collapse) knows where to attach */
  }
  
  /* .navbar-collapse {
    position: fixed;
    top: 103px;
    right: 0;
    width: 100%;        
    max-width: 600px;    
    height: 100vh;
    background-color: var(--white);
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  
  .navbar-collapse.open-wrapper {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  } */

  

  .navbar-collapse {
    position: fixed;
    top: 100px;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: #fff;
    border-bottom: 1px solid #e4e4e4;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 80px 20px 40px;

    /* Hidden state (initial) */
    transform: translate3d(100%, 0, 0)
               scale3d(1, 1, 1)
               rotateX(0deg)
               rotateY(0deg)
               rotateZ(0deg)
               skew(0deg, 0deg);
    transform-style: preserve-3d;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }

  .navbar.open-wrapper  .navbar-collapse {
    transform: translate3d(0, 0, 0)
               scale3d(1, 1, 1)
               rotateX(0deg)
               rotateY(0deg)
               rotateZ(0deg)
               skew(0deg, 0deg);
    opacity: 1;
    pointer-events: auto;
    left: 0;
  }


  .navbar-collapse ul {
    flex-direction: column;
    text-align: start;
    align-items: start;
  }

  a.navbar-brand {
    width: 100%;
  }

  a.navbar-brand img {
    width: auto;
  }
  .navbar-collapse ul li a {
    font-size: 20px;
    line-height: 100%;
  }

  .cta_btn {
    display: none;
  }

  .navbar  .close_btn{
    display: none;
  }

  .navbar.open-wrapper  .close_btn {
    display: block;
  
  }

  .navbar.open-wrapper .navbar-toggler-icon{
    display: none;
  }

  .form_content {
    padding: 20px 20px 40px;
  }
}

@media screen and (max-width: 768px) {
  /* comman section */
  .section_heading span {
    font-size: 22px;
    line-height: 1.25;
  }
  .section_heading h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .row_contact {
    grid-template-columns: auto;
  }

  .row_contact .col_item .col_desc h5,
  footer h5.widget-title {
    font-size: 20px;
    line-height: 24px;
  }

  .col .widget-main .footer_text p,
  footer ul.thumbnail-widget li a,
  .row_contact .col_item .col_desc p,
  .footer-copyright .row .col p {
    font-size: 16px;
    line-height: 20px;
  }

  .main-footer .row .col:first-child,
  .main-footer .row .col:nth-child(2),
  .main-footer .row .col:last-child {
    flex: 0 0 100%;
  }

  .form_content form span {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  .form_content h2 {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }

  .form_content form input {
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  /* comman section */
  .comman-section {
    padding: 24px 0px;
  }
  .section_heading {
    margin-bottom: 24px;
  }

  .section_heading span {
    font-size: 18px;
    line-height: 1.25;
  }

  .section_heading span::after {
    width: 56px;
    height: 20px;
  }

  .section_heading h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .primary_btn,
  .secondary_btn {
    font-size: 14px;
    line-height: 20px;
  }

  /* footer */
  .main-footer .row .col .footer-logo img {
    width: 100%;
    max-width: 270px;
  }
  .main-footer .row {
    padding: 35px 0px;
  }

  .row_contact .col_item .col_image,
  .col .widget-main .footer_social a {
    padding: 12px;
  }

  .col .widget-main .footer_social a img,
  .row_contact .col_item .col_image img {
    max-width: 22px;
    height: 22px;
  }

  footer h5.widget-title {
    margin-bottom: 12px;
  }
  footer .thumbnail-widget ul {
    gap: 8px;
  }

  .col .widget-main .footer_social {
    padding-top: 0;
  }

  nav.navbar {
    padding: 12px 0px;
  }

  a.navbar-brand img {
    width: 100%;
    max-width: 180px;
  }
  .navbar-collapse{
    top: 77px;
  }
}

@media screen and (max-width: 480px) {
  .form_content form button.primary_btn {
    font-size: 0px;
    padding: 2px 5px 2px 0px;
  }

  .form_content form button.primary_btn::after {
    width: 30px;
    height: 30px;
  }

  .form_content form {
    padding: 8px 8px 8px 12px;
  }
  .form_content form input {
    font-size: 14px;
  }

  .footer_newslatter .wpcf7 form.invalid .wpcf7-response-output,
  .footer_newslatter .wpcf7 form.unaccepted .wpcf7-response-output,
  .footer_newslatter .wpcf7 form.payment-required .wpcf7-response-output,
  .footer_newslatter .wpcf7 form.sent .wpcf7-response-output {
    font-size: 10px;
    left: 20px;
    bottom: -60px;
  }
}

@media screen and (max-width: 480px) {
  .col .widget-main .footer_text p,
  footer ul.thumbnail-widget li a,
  .row_contact .col_item .col_desc p,
  .footer-copyright .row .col p {
    font-size: 14px;
    line-height: 20px;
  }
  .form_content {
    padding: 20px 20px 70px;
}

  .footer_newslatter .wpcf7-not-valid-tip{
    font-size: 12px;
    bottom: -34px;
  }
}
/* ===== FILTER CONTAINER ===== */
.location-filter-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
  margin-bottom: 50px;
}

/* ===== FILTER BAR ===== */
.location-filter-container .filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.location-filter-container .filter-select {
  appearance: none;
  padding: 12px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-size: 15px;
  min-width: 270px;
  background: #f9f9f9 url("data:image/svg+xml,%3Csvg fill='none' stroke='%23333' stroke-width='1.5' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 16px;
  transition: all 0.2s ease-in-out;
}

.location-filter-container .filter-select:hover,
.location-filter-container .filter-select:focus {
  border-color: var(--grass-green);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.1);
  outline: none;
}

.location-filter-container .filter-btn {
  padding: 12px 30px;
  font-size: 14px;
  background: var(--grass-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.location-filter-container .filter-btn:hover {
  background: #000000;
}

/* ===== LOAD MORE BUTTON ===== */
.location-filter-container .load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.location-filter-container .load-more-btn {
  background: var(--grass-green);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.location-filter-container .load-more-btn:hover {
  background: #000000;
}

/* ===== POST GRID ===== */
.location-filter-container .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 25px;
  margin-top: 40px;
  padding: 0 20px;
}

/* ===== POST CARD ===== */
.location-filter-container .post-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
}
.post-card h3 span{
  color: var(--grass-green)
}

.location-filter-container .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.location-filter-container .location_list_content{
  padding-left: 45px;
}
.location-filter-container .post-meta-phone {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}
.location-filter-container .phone-number a:hover {
    color: green;
    text-decoration: underline;
}
.location-filter-container .post-meta-phone p a:hover {
    color: green;
    text-decoration: underline;
}
.location-filter-container .post-title {
  position: relative;
  font-size: 18px;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
  padding-left: 40px; /* space for icon */
  line-height: 1.4;
}

.location-filter-container .post-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/wp-content/themes/chargeport/assets/images/location-map.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

.location-filter-container .post-excerpt {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

/* ===== META TAGS (Capacity + Phone) ===== */
.location-filter-container .post-meta {
  display: inline-block;
  font-size: 13px;
  color: #333;
  background: #f1f8f6;
  border: 1px solid #cfe6df;
  border-radius: 30px;
  padding: 6px 14px;
  margin: 4px 6px 6px 0;
  font-weight: 500;
}

.location-filter-container .view-link {
    width: 55%;
    font-size: 14px;
    padding: 10px 0px;
    margin-top: 10px;
    border: 1px solid #d8d8d8;
    background: #f9f9f9;
    color: #000;
}
.location-filter-container .view-link:hover {
    border-color: var(--grass-green);
    background-color: var(--grass-green);
    color: var(--white);
    outline: none;
}
/* .location-filter-container .view-link {
    display: block;
    text-align: center;
    padding: 12px 0;
    background: var(--grass-green);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    width: 50%;
}

.location-filter-container .view-link:hover {
    background-color: var(--coco-black);
    color: var(--white);
    transform: translateY(-3px);
  
} */


/* ====== RESPONSIVE DESIGN ====== */

/* Tablet View (max-width: 992px) */
@media (max-width: 992px) {
  .location-filter-container {
    padding: 20px;
  }

  .location-filter-container .filter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .location-filter-container .filter-select,
  .location-filter-container .filter-btn {
    width: 100%;
    min-width: auto;
  }

  .location-filter-container .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }

  .location-filter-container .post-card {
    padding: 18px;
  }

  .location-filter-container .post-title {
    font-size: 17px;
  }

 .location-filter-container .post-title::before {
    width: 26px;
    height: 26px;
  }

  .location-filter-container .post-meta {
    font-size: 12px;
    padding: 5px 12px;
  }

  .location-filter-container .view-link {
    font-size: 13px;
  }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .single-location-section .location-main{
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
  }
  .single-location-section .location-main .location-map {
    width: 100%;
}
  .location-filter-container .filter-row {
    flex-direction: column;
    gap: 10px;
  }

  .location-filter-container .filter-select {
    width: 100%;
    font-size: 14px;
  }

  .location-filter-container .filter-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .location-filter-container .posts-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 5px;
  }

  .location-filter-container .post-card {
    padding: 16px;
    border-radius: 12px;
  }

  .location-filter-container .post-title {
    font-size: 16px;
    padding-left: 36px;
  }

  .location-filter-container .post-title::before {
    width: 24px;
    height: 24px;
  }

  .location-filter-container .post-excerpt {
    font-size: 13px;
  }

  .location-filter-container .post-meta {
    display: block;
    margin: 6px 0;
    text-align: left;
  }

  .location-filter-container .view-link {
    font-size: 13px;
  }

  .location-filter-container .load-more-btn {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
}

/* Very Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .location-filter-container {
    padding: 15px;
  }

  .location-filter-container .filter-select {
    font-size: 13px;
    padding: 10px 14px;
  }

  .location-filter-container .posts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-filter-container .post-title {
    font-size: 15px;
  }

  .location-filter-container .post-excerpt {
    font-size: 12px;
  }

  .location-filter-container .post-meta {
    font-size: 12px;
  }
}

.single-location-section {
    padding: 50px 20px;
    background: #fff;
    font-family: 'Inter', sans-serif;
}
.single-location-section .location-header {
    margin-bottom: 30px;
}
.single-location-section .location-operator {
    color: #666;
    font-size: 14px;
}
.single-location-section .location-operator strong {
    color: #e63946;
    margin-left: 5px;
}
.single-location-section .location-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-top: 10px;
}
.single-location-section .location-meta {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}
.single-location-section .location-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}
.single-location-section .location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.single-location-section .location-info h2 {
    font-size: 22px;
}
.location-info .info-header img {
    width: 23px;
    height: 23px;
    margin-right: 5px;
}
.location-info .info-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.single-location-section .location-address {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
}
.single-location-section .location-details {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}
.single-location-section .location-details li {
    margin-bottom: 5px;
    color: #222;
}
.single-location-section .location-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.location-info .info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.location-info .info-box {
  flex: 1;
  min-width: 160px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.location-info .info-box:hover {
  background: #eef8f0;
  border-color: #b6e2c7;
}

.location-info .info-box.highlight {
  background: #eaffea;
  border-color: #5cad2f;
}

.location-info .info-label {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 4px;
}

.location-info .info-value {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  display: block;
}

.single-location-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 18px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.single-location-section .btn-navigate {
    background-color: #5cad2f;
    color: #fff;
}
.single-location-section .btn-navigate:hover {
    background-color: #009043;
}
.single-location-section .btn-share {
    border: 2px solid #5cad2f;
    background: #fff;
    color: #5cad2f;
}
.single-location-section .btn-share:hover {
    background: #5cad2f;
    color: #fff;
}
.single-location-section .location-app-section {
    background: #5cad2f;
    color: #fff;
    text-align: center;
    padding: 20px 20px;
    border-radius: 12px;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.single-location-section .location-app-section h2 {
    font-size: 20px;
}
.single-location-section .app-links a img {
    height: 45px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}
.single-location-section .app-links a:hover img {
    transform: scale(1.05);
}
.location-info {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #ededed;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}
@media (max-width: 992px) {
    .location-main {
        grid-template-columns: 1fr;
    }
    .location-map iframe {
        height: 300px;
    }
}