*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}

:root {
    --pasa-blue:#2E8BC0;
    --pasa-hover:#333;
    --pasa-grey:#444;
    --pasa-orange:#f59e0b;
    --pasa-border:#e5e7eb;
    
  }
 




/* Navbar */
.phw-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ddd;
  z-index: 1000;
  padding: 9px 0 9px 0;
  
}

.phw-container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 16px;
}

/* Top Row */
.phw-top-row {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.phw-logo img {
  height: 65px;
  width: 65px;
  border-radius: 6px;
  border: 5px solid var(--pasa-blue);
}

/* Desktop */
.phw-desktop-links,
.phw-desktop-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.phw-desktop-links a {
  
  color: var(--pasa-grey);
  font-weight: 500;
}

.phw-desktop-links a:hover {
  color: var(--pasa-blue);
}

.phw-phone {
  
  color: var(--pasa-blue);
  font-weight: 600;
}

.phw-btn {
  padding: 8px 14px;
  background: var(--pasa-hover);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
.phw-btn:hover{
    background: var(--pasa-grey);
}


.phw-btn.full {
  width: 100%;
}

/* Hamburger & Close */
.phw-hamburger,
.phw-close {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Menu */
.phw-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--pasa-border);
}
.phw-mobile-actions .phw-phone{
   color: var(--pasa-blue);
}

.phw-mobile-menu a {
  font-weight: 500;
  color: var(--pasa-grey);
  padding: 0 8px;
  font-size: 16px;
}
.phw-mobile-menu a:hover{
    color: var(--pasa-blue);
}

.phw-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--pasa-border);
}

/* Active */
.phw-mobile-menu.active {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .phw-desktop-links,
  .phw-desktop-actions {
    display: none;
  }

  .phw-hamburger {
    display: block;
  }

  .phw-close {
    display: none;
  }

  .phw-close.active {
    display: block;
  }

  .phw-hamburger.hide {
    display: none;
  }
  .phw-btn.full svg{
    height: 15px;
    width: 15px;
    
  }
  .phw-logo img{
    width: 50px;
    height: 50px;
  }
  .phw-navbar{
    padding: 3px 0;
  }
	.read-1{max-width:400px;}
}


/* ----------------hero-section------------------- */


.phw-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* BACKGROUND */
.phw-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg-BvXCXAX3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.phw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.4)
  );
}
.phw-svg-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  color: var(--pasa-orange);
}

.phw-btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  stroke-width: 2;
}


/* CONTENT */
.phw-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 200px 20px 40px;
}

.phw-hero-inner {
  max-width: 700px;
}

/* LOGO */
.phw-logo-box {
  display: inline-block;
  background: var(--pasa-blue);
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  margin-bottom: 24px;
}


.phw-logo-img {
  height: 140px;
  border-radius: 14px;
}

/* TAGLINE */
.phw-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--pasa-orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

/* HEADING */
.phw-heading {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.phw-heading span {
  color: var(--pasa-orange);
}

/* DESCRIPTION */
.phw-description {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 32px;
}

/* BUTTONS */
.phw-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.phw-btn {
  padding: 10px 25px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

#phw-directions-btn {
  background: var(--pasa-grey);
  color: #fff;
}

#phw-directions-btn:hover {
  background: var(--pasa-hover);
}

#phw-services-btn {
  background: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  
}

#phw-services-btn:hover {
  background: transparent;
  color: var(--pasa-grey);
}

/* INFO ROW */
.phw-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 16px;
  opacity: 0.9;
}

.phw-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* SCROLL INDICATOR */
.phw-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: phw-bounce 1.5s infinite;
}

.phw-scroll-mouse {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.phw-scroll-dot {
  width: 6px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 10px;
}

/* ANIMATION */
@keyframes phw-bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .phw-logo-img {
    height: 110px;
  }

  .phw-description {
    font-size: 18px;
  }
  .phw-btn{
    width: 100%;
  }
}

/* -----------------service-section----------------------- */

.phw-services-section {
  padding: 90px 20px;
  background: rgb(233, 245, 250);
}

.phw-services-container {
  max-width: 1200px;
  margin: auto;
}

.phw-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.phw-services-badge {
  display: inline-flex;
  align-items: center;
  
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgb(210, 241, 253);
  color: var(--pasa-blue);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.phw-services-badge:hover{
  background: var(--pasa-hover);
}
.phw-services-badge svg{
  height: 15px;
  width: 15px;
}

.phw-services-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}

.phw-services-subtitle {
  max-width: 640px;
  margin: auto;
  font-size: 18px;
  color: black;
}

.phw-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.phw-service-card {
  background: #fff;
  border: 1px solid rgb(159, 162, 165);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .3s;
}

.phw-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.phw-service-image {
  position: relative;
  height: 160px;
}

.phw-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phw-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #fff, transparent);
}

.phw-service-header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  align-items: center;
}

.phw-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--pasa-blue);
}

.phw-service-time {
  font-size: 12px;
  margin: 0 16px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #ddd;
  font-weight: bold;
}

.phw-service-list {
  list-style: none;
  padding: 16px;
}

.phw-service-list li {
  display: flex;
  align-items: center;
  gap:5px;
  font-size: 14px;
  margin-bottom: 8px;
}



.phw-note {
  font-size: 12px;
  color: #777;
  padding: 0 16px 16px;
}

.phw-popular {
  border: 2px solid black;
  
}

.phw-popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pasa-grey);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  display: flex;
  font-weight: bold;
  align-items: center;
  gap: 6px;
}
.phw-popular-badge svg{
  height: 15px;
  width: 15px;
}

.phw-extra-services {
  margin-top: 80px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
}
.icon-ag{
   height: 35px;
  width: 35px;
  border-radius: 50%; 
  background-color: #d1cece;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.phw-extra-title {
  display: flex;
  align-items: center;
  
 
  gap: 10px;
  font-size: 28px;
  margin-bottom: 24px;
}
.phw-extra-title svg{
  height: 20px;
  width: 20px;
  /* border-radius: 50%;  */
  /* background-color: #d1cece; */
  color: var(--pasa-grey);
  
}


.phw-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 16px;
}
.left-card{
  display: flex;
  align-items: center;
  gap: 15px;
}

.phw-extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgb(205, 205, 206);
  border-radius: 12px;
}
.phw-extra-item:hover{
  background: slategray;
}
.phw-extra-item strong{
  color: var(--pasa-blue);
}
.phw-extra-item span{
  font-weight: bold;
  
}
.phw-extra-item svg{
  color: var(--pasa-blue) !important;
}

/* CTA  */
#car-care-cta {
  margin-top: 3rem;
  text-align: center;
}

/* TEXT */
.cta-text1 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: black; 
}

/* BUTTON  */
.cta-button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/*  BUTTON STYLE */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* PRIMARY BUTTON */
.cta-btn-primary {
  background-color: var(--pasa-grey);
  color: #fff;
  border: none;
}

.cta-btn-primary:hover {
  background-color: var(--pasa-hover);
}

/* OUTLINE BUTTON */
.cta-btn-outline1 {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
}

.cta-btn-outline1:hover {
  background-color: #f3f4f6;
  color: #000000;
}

/* ARROW ICON */
.cta-arrow-icon {
  width: 16px;
  height: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
 .cta-btn-primary{
  width: 100%;
 }
 .cta-btn-outline1{
  width: 100%;
 }
}

/* --------------------about-sec-------------------- */

/* SECTION */
#about-section-unique {
  padding: 5rem 1rem;
  background: rgb(233, 245, 250);
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.about-main-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .about-main-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* BADGE */
.about-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #d1cece;
  color: var(--pasa-grey);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.about-badge:hover{
  background: slategrey;
}

/* TEXT */
.about-heading {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-highlight {
  color: var(--pasa-blue);
}

.about-paragraph {
  color: black;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-bold-text{
  font-weight: bold;
}

/* HIDDEN TEXT */
.about-hidden-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;


}

/* READ MORE */
.about-read-more-btn {
  background: none;
  border: none;
  color: var(--pasa-blue);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 !important;
  line-height: normal !important;
}
.about-read-more-btn:hover{
  background-color: #fff;
}
.read-1{
  display: flex;
  gap: 20px;
  
}

/* EXPERIENCE */
.about-experience-box {
  display: flex;
  gap: 1rem;
  width: 400px;
  align-items: center;
  background: rgb(222, 244, 253);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  margin-top: 1.5rem;
}

.about-years-circle {
  width: 48px;
  height: 48px;
  background: var(--pasa-blue);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* IMAGES */
.about-image-area {
  display: grid;
  gap: 1rem;
}

.about-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-image-box img {
  width: 900px;
  height: 250px;
  display: block;
  object-fit: cover;
}

.about-image-label {
  position: absolute;
  font-weight: bold;
  bottom: 12px;
  left: 12px;
  background: var(--pasa-blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

/* FEATURES */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .about-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 16px;
  transition: transform 0.3s;
}

.about-feature-card:hover {
  transform: translateY(-4px);
}

.about-feature-card h3 {
  margin-bottom: 0.5rem;
}
.icon-og{
  height: 35px;
  width: 35px;
  border-radius: 0.55rem; 
  background-color: rgb(189, 230, 247);
  
  display: flex;
  align-items: center;
  justify-content: center;
  
}

 .about-feature-card svg{
  color: var(--pasa-blue);
  
  height: 20px;
  width: 20px;
  
} 

/* MOBILE VIEW  */
@media (max-width: 767px) {
  .about-hidden-text {
    max-height: none !important;
    overflow: visible !important;
  }

}

/* ------------------amentities-sec----------------- */

/* SECTION */
.amenities-section {
  padding: 5rem 1rem;
  background: rgb(233, 245, 250);
}

.amenities-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.amenities-header {
  text-align: center;
  margin-bottom: 4rem;
}

.amenities-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgb(210, 241, 253);
  color: var(--pasa-blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.amenities-badge:hover{
  background-color: var(--pasa-hover);
}

.amenities-badge-icon {
  width: 14px;
  height: 14px;
}

.amenities-title {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.amenities-subtitle {
  max-width: 600px;
  margin: auto;
  color: black;
  font-weight: 500;
}

/* IMAGE GRID */
.amenities-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .amenities-image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.amenities-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.amenities-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenities-image-card:hover img {
  transform: scale(1.1);
}

.amenities-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.amenities-image-text {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #ffffff;
}

/* SHOP BOX */
.amenities-shop-box {
  margin: 3rem 0;
  padding: 3rem;
  border-radius: 24px;
  background: #dddedf;
  position: relative;
}

.amenities-shop-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #d1cece;
  color: var(--pasa-grey);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.amenities-shop-badge svg{
  width: 15px !important;
  height: 15px !important;
  stroke: var(--pasa-grey) !important;
}

.amenities-shop-title {
  margin: 1rem 0;
  font-size: 1.8rem;
}

.amenities-shop-text {
  color: black;
  margin-bottom: 1.5rem;
}

.amenities-shop-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.amenities-shop-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: black;
}

.amenities-shop-list li span {
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
}

/* CTA */
.amenities-cta {
  text-align: center;
  padding-bottom: 20px;
}

.amenities-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  text-decoration: none;
  color: #111827;
  transition: background 0.3s;
}
.amenities-cta-btn svg{
  width: 15px !important;
  height: 15px !important;
  stroke: #111827 !important;
}

.amenities-cta-btn:hover {
  background: #f3f4f6;
}

/* ----------------------contact-sec------------------------ */

.phw-contact {
  position: relative;
  padding: 100px 0;
  color: #fff;
  background: url("../images/contact-bg-_TQw3qHg.jpg") center/cover no-repeat;
}

.phw-contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.phw-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.phw-header {
  text-align: center;
  margin-bottom: 70px;
}

.phw-badge1 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}
.phw-badge1:hover{
  background: var(--pasa-hover);
}

.phw-badge1 svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.phw-header h2 {
  font-size: 50px;
  margin: 20px 0 10px;
}

.phw-header p {
  opacity: 0.7;
  max-width: 600px;
  margin: auto;
  font-size: 17px;
}

.phw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.phw-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.phw-icon1 {
  width: 38px;
  height: 38px;
  background: var(--pasa-grey);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phw-icon1 svg {
  width: 25px;
  height: 25px;
  stroke: #fff;
  fill: var(--pasa-grey);
  font-weight: bold;
  
  
}

.phw-item h4 {
  margin-bottom: 6px;
}

.phw-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

 

.phw-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: var(--pasa-grey);
} 

.phw-hours {
  background: rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: 30px;
}

.phw-hours-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.phw-hours-icon {
  width: 40px;
  height: 40px;
  background: var(--pasa-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phw-hours ul {
  list-style: none;
  padding: 0;
}

.phw-hours li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.phw-offer {
  margin-top: 25px;
  background: rgb(28, 51, 70);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  gap: 10px;
  
  
}
.phw-offer p strong{
  color: var(--pasa-orange);
  
}

.phw-offer svg {
  width: 18px;
  height: 18px;
  text-align: center;
  color: var(--pasa-orange);
}

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

/* ------------------footer-sec---------------- */

.phw-footer {
  position: relative;
  background: url("../images/bubble.jpg") center/cover no-repeat;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.phw-footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
}

.phw-footer-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 30px;
}

.phw-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.phw-footer-brand img {
  height: 80px;
  margin-bottom: 16px;
}

.phw-footer-brand p {
  font-size: 14px;
  opacity: 0.6;
}

.phw-footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.phw-footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.phw-footer-nav a:hover {
  color: var(--pasa-orange);
}

.phw-footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.phw-footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}




.phw-footer-socials svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}
.phw-footer-socials svg:hover{
  stroke: white;
}

.phw-footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.phw-footer-bottom p {
  font-size: 13px;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.phw-heart {
  width: 16px;
  height: 16px;
  fill: var(--pasa-orange);
  stroke: var(--pasa-orange);
}

/* Responsive */
@media (max-width: 768px) {
  .phw-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .phw-footer-socials {
    justify-content: center;
  }
}
a:where(:not(.wp-element-button)){text-decoration:none!important}






