/*
Theme Name: perfectshooting.com.eg
Theme URI: https://eperfectshooting.com.eg
Author: Powered By egy4server
Author URI: https://wordpress.org/
Description: perfectshooting.com.eg Company is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
*/

header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* owl carousel arrows */


/* Base styles for Owl Carousel navigation arrows */
.owl-carousel {
    position: relative; /* Ensure the carousel is the reference for absolute positioning */
    overflow: hidden; /* Prevent overflow */
}

.owl-carousel .owl-nav button {
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    z-index: 10; /* Ensure arrows are above the carousel items */
}

.owl-carousel .owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 10px; /* Position the left arrow inside the carousel */
}

.owl-carousel .owl-nav button.owl-next {
    right: 10px; /* Position the right arrow inside the carousel */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .owl-carousel .owl-nav button {
        width: 30px; /* Smaller arrows for mobile */
        height: 30px;
        font-size: 14px; /* Smaller icon size */
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 5px; /* Move arrows closer to the edge but still inside the carousel */
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 5px; /* Move arrows closer to the edge but still inside the carousel */
    }
}
/* End owl carousel arrows */



  body {
        font-family: 'Readex Pro', sans-serif;
  }

  .social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    background: white;
    padding: 5px;
    border: 1px solid blue;
    border-radius: 5px;
  }
  
  .social-icons a {
    display: block;
    margin: auto;
  }


/* Container for floating contacts */
.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Shared styles for icons */
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  transition: all 0.3s ease;
}

/* Specific colors */
.phone-icon {
  background: #007bff;
}

.whatsapp-icon {
  background: #25d366;
}

/* Hover effects */
.contact-icon:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Tooltip */
.contact-icon .tooltip {
  position: absolute;
  right: 65px;
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
}

.contact-icon:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive: smaller icons on mobile */
@media (max-width: 576px) {
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .contact-icon .tooltip {
    font-size: 12px;
    right: 55px;
  }
}



/* carousel */
.custom-bg-dark {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/banner-bg.webp');
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
    color: #fff; /* White text color */
}

.carousel-item {
  position: relative;
}


.carousel-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* carousel */

/* image post responsive */


.wp-block-image img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
/* end image post responsive */

/* home page posts pagination */

/* end of home page posts pagination */

/* navbar */
.navbar{
  background-color: white !important;
}
.navbar a{
  color:black !important;
}
.ltr{
direction: ltr !important;
}

.rtl{
  direction: rtl !important;
  }

/* end navbar */


/* Packages  */

 .pricing {
      margin-top: 50px;
    }
    .pricing .card {
      border: none;
      border-radius: 15px;
      transition: all 0.3s;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    }
    .pricing .card:hover {
      transform: translateY(-10px);
    }
    .pricing .card-header {
      background-color: #f9f9f9;
      border-bottom: none;
      padding: 20px;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    .pricing .card-body {
      padding: 40px;
    }
    .pricing .price {
      font-size: 25px;
      font-weight: bold;
      color: #007bff;
    }

/* End Packages */


/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination li {
  display: inline-block;
  margin: 0;
}

.pagination .page-link {
  display: inline-block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.pagination .page-item.active .page-link {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* end pagination */


@media (max-width: 767px) {
.counter {
  margin-top: 50px;
}
}




/* cards */

/* end cards */

/* location */

.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  /* Adjust map size for small screens */
  .map-container {
    padding-top: 75%; /* 4:3 aspect ratio */
  }
}


/* end location */

/*  embdaded video */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio (h/w * 100) */
}

.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* about us */

 /* CSS styles */
 .section-title {
  font-size: 24px;
  font-weight: bold;
}

.section-item {
  margin-bottom: 10px;
  font-size: 18px;
}

.icon {
  margin-right: 10px;
}
/* end about us */

/* location */

.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  /* Adjust map size for small screens */
  .map-container {
    padding-top: 75%; /* 4:3 aspect ratio */
  }
}


/* end location */

/* styles.css */

/* Service container styles */
.service {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease; /* Added for smooth transition */
}

/* Icon wrapper styles */
.icon-wrapper {
  margin-bottom: 20px; /* Increased margin for better spacing */
}

/* Icon styles */
.service .icon-wrapper i {
  color: #007bff; /* Default icon color */
  font-size: 3rem; /* Increased icon size for better visibility */
  transition: all 0.3s ease; /* Added for smooth transition */
}

/* Title styles */
.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Paragraph styles */
.service p {
  font-size: 18px;
}

/* Hover effect */
.service:hover {
  transform: translateY(-5px); /* Move the service box up slightly on hover */
}

/* Color change */
.service:hover .icon-wrapper i {
  color: #ff6347; /* Change icon color on hover */
}


/* social icons style */

/* Container for floating contacts */
.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Shared styles for icons */
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  transition: all 0.3s ease;
}

/* Specific colors */
.phone-icon {
  background: #007bff;
}

.whatsapp-icon {
  background: #25d366;
}

/* Hover effects */
.contact-icon:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Tooltip */
.contact-icon .tooltip {
  position: absolute;
  right: 65px;
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
}

.contact-icon:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive: smaller icons on mobile */
@media (max-width: 576px) {
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .contact-icon .tooltip {
    font-size: 12px;
    right: 55px;
  }
}

/* end social icons style  */

/* ==============================
   Perfect Shooting color system
   ============================== */
:root {
  --ps-orange: #F1921A;
  --ps-green: #379543;
  --ps-cyan: #34AACE;
  --ps-white: #ffffff;
  --ps-dark: #1f2a22;
}

body {
  background-color: var(--ps-white);
  color: var(--ps-dark);
}

a {
  color: var(--ps-green);
}

a:hover,
a:focus {
  color: #2c7c38;
}

.btn-primary,
button,
input[type="submit"] {
  background-color: var(--ps-green);
  border-color: var(--ps-green);
  color: var(--ps-white);
}

.btn-primary:hover,
button:hover,
input[type="submit"]:hover {
  background-color: #2c7c38;
  border-color: #2c7c38;
  color: var(--ps-white);
}

.pricing .price,
.service .icon-wrapper i {
  color: var(--ps-cyan);
}

.service:hover .icon-wrapper i {
  color: var(--ps-orange);
}

.pagination .page-link {
  color: var(--ps-dark);
  border-color: #d8dde0;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background-color: var(--ps-cyan);
  border-color: var(--ps-cyan);
  color: var(--ps-white);
}

/* Home About section */
.ps-home-main {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
  padding: 0 0 48px;
}

.ps-hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: url("https://perfectshooting.com.eg/wp-content/uploads/2026/03/hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 34px;
}

.ps-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 42, 33, 0.9) 0%, rgba(20, 42, 33, 0.75) 45%, rgba(52, 170, 206, 0.55) 100%);
}

.ps-hero-content {
  position: relative;
  z-index: 1;
  color: var(--ps-white);
  text-align: right;
  padding-top: 50px;
  padding-bottom: 50px;
}

.ps-hero-content h1 {
  margin: 0 0 14px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ps-white);
}

.ps-hero-content p {
  margin: 0 0 24px;
  max-width: 760px;
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.ps-hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--ps-orange), #d87f12);
  color: var(--ps-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.ps-hero-btn:hover,
.ps-hero-btn:focus {
  color: var(--ps-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.ps-about-section .container {
  max-width: 1100px;
}

.ps-about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.ps-about-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(31, 42, 34, 0.16);
  background: #dfeff2;
}

.ps-about-image {
  width: 100%;
  height: auto;
  display: block;
}

.ps-about-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: linear-gradient(135deg, var(--ps-orange), #d27c15);
  color: var(--ps-white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.ps-about-card {
  background: var(--ps-white);
  border: 1px solid rgba(52, 170, 206, 0.25);
  border-top: 6px solid var(--ps-cyan);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 12px 30px rgba(31, 42, 34, 0.1);
}

.ps-about-title {
  color: var(--ps-dark);
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.3;
}

.ps-about-card .ps-about-lead {
  color: var(--ps-white);
  background: linear-gradient(135deg, var(--ps-green), #2f7e39);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 20px;
}

.ps-about-subtitle {
  color: var(--ps-green);
  font-size: 25px;
  font-weight: 800;
  margin: 26px 0 12px;
  padding-right: 10px;
  border-right: 4px solid var(--ps-orange);
}

.ps-about-card p {
  color: #203029;
  font-size: 19px;
  line-height: 2.02;
  margin: 0 0 14px;
}

.ps-services-section {
  padding: 18px 0 48px;
}

.ps-services-head {
  text-align: center;
  margin-bottom: 20px;
}

.ps-services-kicker {
  display: inline-block;
  color: var(--ps-white);
  background: linear-gradient(135deg, var(--ps-cyan), #268cac);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ps-services-head h2 {
  margin: 0 0 10px;
  color: var(--ps-dark);
  font-size: 34px;
  font-weight: 800;
}

.ps-services-head p {
  margin: 0;
  color: #284138;
  font-size: 18px;
  line-height: 1.9;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.ps-services-kicker i,
.ps-services-head h2 i,
.ps-services-head p i {
  margin-left: 6px;
}

.ps-services-head-icon {
  font-size: 1em;
  vertical-align: baseline;
}

.ps-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ps-service-card {
  background: #ffffff;
  border: 1px solid rgba(52, 170, 206, 0.24);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(26, 46, 36, 0.08);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ps-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  background: radial-gradient(circle at top right, rgba(241, 146, 26, 0.25), rgba(241, 146, 26, 0));
  pointer-events: none;
}

.ps-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ps-white);
  background: linear-gradient(135deg, var(--ps-cyan), #2b8bab);
  box-shadow: 0 10px 22px rgba(26, 46, 36, 0.18);
  margin: 0 auto 14px;
}

.ps-service-icon i {
  font-size: 30px;
}

.ps-service-card h3 {
  margin: 0 0 12px;
  color: var(--ps-green);
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}

.ps-service-card ul {
  margin: 0;
  padding-right: 0;
  list-style-position: inside;
}

.ps-service-card li {
  color: #1f3129;
  font-size: 17px;
  line-height: 1.95;
  margin-bottom: 4px;
}

.ps-reviews-section {
  padding: 14px 0 56px;
}

.ps-reviews-head {
  text-align: center;
  margin-bottom: 18px;
}

.ps-reviews-kicker {
  display: inline-block;
  color: var(--ps-white);
  background: linear-gradient(135deg, var(--ps-orange), #d27c15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ps-reviews-head h2 {
  margin: 0;
  color: var(--ps-dark);
  font-size: 34px;
  font-weight: 800;
}

.ps-reviews-kicker i,
.ps-reviews-head h2 i {
  margin-left: 6px;
}

.ps-reviews-slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 4px 44px;
}

.ps-reviews-track {
  display: flex;
  direction: ltr;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.ps-review-card {
  background: #ffffff;
  border: 1px solid rgba(55, 149, 67, 0.2);
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 24px rgba(26, 46, 36, 0.08);
  position: relative;
  min-width: calc((100% - 24px) / 3);
  direction: rtl;
}

.ps-review-card::before {
  content: "\201D";
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 38px;
  line-height: 1;
  color: rgba(52, 170, 206, 0.26);
  font-weight: 800;
}

.ps-review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ps-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ps-white);
  background: linear-gradient(135deg, var(--ps-cyan), #2d90ad);
  box-shadow: 0 6px 16px rgba(26, 46, 36, 0.18);
  flex-shrink: 0;
}

.ps-review-avatar i {
  font-size: 18px;
}

.ps-review-user-info strong {
  display: block;
  color: var(--ps-green);
  font-size: 18px;
  line-height: 1.45;
}

.ps-review-user-info span {
  color: #3e5f53;
  font-size: 14px;
}

.ps-review-text {
  margin: 0 0 14px;
  color: #203129;
  font-size: 17px;
  line-height: 1.95;
}

.ps-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.ps-reviews-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  color: var(--ps-white);
  background: linear-gradient(135deg, var(--ps-cyan), #2d90ad);
  box-shadow: 0 8px 18px rgba(26, 46, 36, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ps-reviews-arrow-prev {
  left: 6px;
}

.ps-reviews-arrow-next {
  right: 6px;
}

.ps-reviews-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ps-reviews-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(52, 170, 206, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ps-reviews-dot.is-active {
  background: var(--ps-orange);
  transform: scale(1.2);
}

/* ——— Contact ——— */
.ps-contact-section {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(52, 170, 206, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 80%, rgba(255, 140, 66, 0.1), transparent 50%),
    linear-gradient(180deg, #f8fafb 0%, #eef3f5 100%);
}

.ps-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a2e24' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.9;
}

.ps-contact-section .container {
  position: relative;
  z-index: 1;
}

.ps-contact-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.ps-contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ps-white);
  background: linear-gradient(135deg, var(--ps-cyan), #2d90ad);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(52, 170, 206, 0.35);
}

.ps-contact-kicker i {
  font-size: 15px;
}

.ps-contact-head h2 {
  margin: 0 0 12px;
  color: var(--ps-dark);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.25;
}

.ps-contact-head p {
  margin: 0;
  color: #4a5c55;
  font-size: 17px;
  line-height: 1.75;
}

.ps-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.ps-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ps-contact-card {
  background: var(--ps-white);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 14px 40px rgba(26, 46, 36, 0.08);
  border: 1px solid rgba(52, 170, 206, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ps-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(26, 46, 36, 0.12);
}

.ps-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(52, 170, 206, 0.18), rgba(255, 140, 66, 0.12));
  color: var(--ps-cyan);
  margin-bottom: 14px;
  font-size: 20px;
}

.ps-contact-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ps-dark);
}

.ps-contact-link {
  display: block;
  color: var(--ps-cyan);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}

.ps-contact-link:hover {
  color: #2d90ad;
  text-decoration: underline;
}

.ps-contact-link-secondary {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
}

.ps-contact-label {
  display: block;
  font-size: 12px;
  color: #7a8a83;
  margin-top: 4px;
  margin-bottom: 2px;
}

.ps-contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ps-contact-wa:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}

.ps-contact-trust {
  background: linear-gradient(135deg, var(--ps-dark) 0%, #243d32 100%);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 22px 22px 18px;
  box-shadow: 0 14px 36px rgba(26, 46, 36, 0.25);
}

.ps-contact-trust p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
}

.ps-contact-trust ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps-contact-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.ps-contact-trust li i {
  color: var(--ps-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.ps-contact-form-wrap {
  min-width: 0;
}

.ps-contact-form-card {
  background: var(--ps-white);
  border-radius: 24px;
  padding: 28px 26px 32px;
  box-shadow: 0 18px 50px rgba(26, 46, 36, 0.1);
  border: 1px solid rgba(26, 46, 36, 0.06);
  position: relative;
}

.ps-contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--ps-cyan), var(--ps-orange), var(--ps-green));
}

.ps-contact-form-title {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ps-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ps-contact-form-title i {
  color: var(--ps-cyan);
}

.ps-contact-form-card .wpcf7 {
  margin: 0;
}

.ps-contact-form-card .wpcf7-form label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ps-dark);
  margin-bottom: 6px;
}

.ps-contact-form-card .wpcf7-form p {
  margin-bottom: 16px;
}

.ps-contact-form-card .wpcf7-form-control {
  width: 100%;
  border: 2px solid #e2e8e4;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fafcfb;
}

.ps-contact-form-card .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--ps-cyan);
  box-shadow: 0 0 0 4px rgba(52, 170, 206, 0.15);
  background: #fff;
}

.ps-contact-form-card textarea.wpcf7-form-control {
  min-height: 140px;
  resize: vertical;
}

.ps-contact-form-card .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ps-white);
  background: linear-gradient(135deg, var(--ps-green), #2f7e39);
  box-shadow: 0 10px 28px rgba(46, 125, 50, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ps-contact-form-card .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(46, 125, 50, 0.42);
}

.ps-contact-form-card .wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 6px;
}

.ps-contact-form-card .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.ps-faq-section {
  padding: 8px 0 56px;
}

.ps-faq-head {
  text-align: center;
  margin-bottom: 16px;
}

.ps-faq-kicker {
  display: inline-block;
  color: var(--ps-white);
  background: linear-gradient(135deg, var(--ps-green), #2f7e39);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ps-faq-head h2 {
  margin: 0;
  color: var(--ps-dark);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.ps-faq-kicker i,
.ps-faq-head h2 i {
  margin-left: 6px;
}

.ps-faq-list {
  display: grid;
  gap: 10px;
}

.ps-faq-item {
  background: #ffffff;
  border: 1px solid rgba(52, 170, 206, 0.24);
  border-radius: 14px;
  padding: 0 16px;
  box-shadow: 0 8px 20px rgba(26, 46, 36, 0.06);
}

.ps-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--ps-green);
  padding: 16px 28px 16px 0;
  position: relative;
}

.ps-faq-item summary::-webkit-details-marker {
  display: none;
}

.ps-faq-item summary::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ps-white);
  background: var(--ps-cyan);
}

.ps-faq-item[open] summary::before {
  content: "-";
  background: var(--ps-orange);
}

.ps-faq-item p {
  margin: 0 0 14px;
  color: #203129;
  font-size: 17px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .ps-home-main {
    padding: 30px 0;
  }

  .ps-hero-section {
    min-height: 58vh;
    margin-bottom: 20px;
  }

  .ps-hero-content h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .ps-hero-content p {
    font-size: 18px;
    line-height: 1.75;
  }

  .ps-about-card {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .ps-about-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ps-about-image {
    height: auto;
  }

  .ps-about-badge {
    left: 12px;
    bottom: 12px;
    font-size: 14px;
    padding: 8px 12px;
  }

  .ps-about-title {
    font-size: 28px;
  }

  .ps-about-lead {
    font-size: 20px;
  }

  .ps-about-subtitle {
    font-size: 22px;
  }

  .ps-about-card p {
    font-size: 17px;
    line-height: 1.9;
  }

  .ps-services-section {
    padding: 12px 0 36px;
  }

  .ps-services-head h2 {
    font-size: 28px;
  }

  .ps-services-head p {
    font-size: 17px;
    line-height: 1.85;
  }

  .ps-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ps-service-card {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .ps-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .ps-service-icon i {
    font-size: 26px;
  }

  .ps-service-card h3 {
    font-size: 21px;
  }

  .ps-service-card li {
    font-size: 16px;
    line-height: 1.85;
  }

  .ps-reviews-section {
    padding: 8px 0 40px;
  }

  .ps-reviews-slider {
    padding: 4px 38px;
  }

  .ps-review-card {
    min-width: calc((100% - 12px) / 2);
  }

  .ps-reviews-head h2 {
    font-size: 28px;
  }

  .ps-review-card {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .ps-review-user-info strong {
    font-size: 17px;
  }

  .ps-review-text {
    font-size: 16px;
    line-height: 1.85;
  }

  .ps-reviews-arrow {
    width: 30px;
    height: 30px;
  }

  .ps-faq-section {
    padding: 6px 0 40px;
  }

  .ps-faq-head h2 {
    font-size: 28px;
  }

  .ps-faq-item {
    border-radius: 12px;
    padding: 0 12px;
  }

  .ps-faq-item summary {
    font-size: 18px;
    padding: 14px 26px 14px 0;
  }

  .ps-faq-item p {
    font-size: 16px;
    line-height: 1.85;
  }

  .ps-contact-section {
    padding: 40px 0 52px;
  }

  .ps-contact-head h2 {
    font-size: 28px;
  }

  .ps-contact-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ps-contact-form-card {
    padding: 22px 18px 26px;
  }
}

@media (max-width: 768px) {
  .ps-contact-head p {
    font-size: 16px;
  }

  .ps-contact-card {
    padding: 20px 18px;
  }

  .ps-contact-form-card .wpcf7-submit {
    width: 100%;
    min-width: 0;
  }

  .ps-reviews-slider {
    padding: 4px 30px;
  }

  .ps-review-card {
    min-width: 100%;
  }

  .ps-reviews-arrow {
    width: 28px;
    height: 28px;
  }
}
