/*
 Theme Name:   generatepress-child
 Theme URI:    https://www.blueshiftdev.com/generatepress-child/
 Description:  generatepress Child Theme
 Author:       Kevin Z
 Author URI:   https://www.blueshiftdev.com/
 Template:     generatepress
 Version:      2025.07.24.01
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         black, blue, gray, white, dark, light, two-columns, left-sidebar, fixed-layout, responsive-layout, custom-background, custom-colors, custom-menu, featured-images, theme-options, right-sidebar, full-width-template, one-column, three-columns, flexible-header, rtl-language-support, sticky-post, threaded-comments, translation-ready
 Text Domain:  generatepress-child
*/

/* BEGIN AFFILIATION IMAGE SCROLLBAR */
/* Image Scroll Bar Styles */
.affiliation-scrollcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.affiliation-image-scroll-container {
  width: 100%;
  max-width: 1200px; /* Limit width to ensure overflow */
  height: 250px; /* Adjust height as needed */
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  /*background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 20%,
      transparent 80%,
      rgba(255, 255, 255, 0.5) 100%
    );*/
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.affiliation-image-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.affiliation-image-scroll-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
  padding: 0 20px;
  min-width: max-content;
  width: max-content;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.affiliation-scroll-image {
  flex-shrink: 0;
  height: 175px;
  width: 225px; /* Adjust width as needed */
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.affiliation-scroll-image:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.affiliation-scroll-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.affiliation-scroll-image:hover img {
  transform: scale(1.1);
}

/* Hover overlay effect */
.affiliation-scroll-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  z-index: 1;
}

.affiliation-scroll-image:hover::before {
  opacity: 1;
}

/* Click indicator */
.affiliation-scroll-image::after {
  content: "↗";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.affiliation-scroll-image:hover::after {
  opacity: 1;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .affiliation-image-scroll-container {
    height: 175px;
  }

  .affiliation-scroll-image {
    height: 150px;
    width: 225px;
  }

  .affiliation-image-scroll-wrapper {
    gap: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .affiliation-image-scroll-container {
    height: 175px;
  }

  .affiliation-scroll-image {
    height: 150px;
    width: 200px;
  }

  .affiliation-image-scroll-wrapper {
    gap: 10px;
    padding: 0 10px;
  }
}

/* Loading animation for images */
.affiliation-scroll-image img {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pause animation when hovering */
.affiliation-image-scroll-container:hover .affiliation-image-scroll-wrapper {
  animation-play-state: paused;
}

/* Accessibility improvements */
.affiliation-scroll-image:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .affiliation-scroll-image {
    border: 2px solid #000;
  }

  .affiliation-scroll-image:hover {
    border-color: #007bff;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .affiliation-scroll-image,
  .affiliation-scroll-image img,
  .affiliation-image-scroll-wrapper {
    transition: none;
  }

  .affiliation-scroll-image:hover {
    transform: none;
  }
}
/* END AFFILIATION IMAGE SCROLLBAR */

/*BEGINNING - Industry Toggle Switch */
body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

input {
  display: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  height: 0;
  width: 0;
}

.switch {
  border: 3px solid #252525;
  box-shadow:
    0 0 35px 5px inset,
    0 0 3px 1px;
  border-radius: 100px;
  height: 120px;
  width: 250px;
  position: relative;
  padding: 10px;
  transition: background-color 0.63s 0.06s;
}

.overlay:before {
  top: -40px;
}

.overlay:after {
  bottom: -40px;
}

label {
  position: absolute;
  top: -3px;
  height: calc(100% + 6px);
  width: calc(50% + 3px);
  cursor: pointer;
  z-index: 1;
}

label[for="switch-on"] {
  left: -3px;
}

label[for="switch-off"] {
  right: -3px;
}

.pin-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.pin {
  position: absolute;
  top: 0;
  height: 94px;
  width: 94px;
  background: #57575791;
  border-radius: 50%;
  box-shadow:
    0 0 2px #939393,
    0 0 17px #434343 inset,
    2px -3px 12px 5px #181818 inset;
  transition: background 0.32s;
}

.pin:after,
.pin-center:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.pin:after {
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.61s ease-in;
}

.pin-off:after {
  box-shadow: 0 0 22px -1px #72a7da;
}

.pin-on:after {
  box-shadow: 0 0 22px -1px #3cd148;
}

label[for="switch-on"]:hover ~ .pin-wrapper .pin-on:after,
label[for="switch-off"]:hover ~ .pin-wrapper .pin-off:after {
  opacity: 0.7;
  transition: opacity 0.32s;
}

.pin-center:before {
  transition: 0.62s 0.02s;
  transform: scale(0.91);
  z-index: 1;
  border-radius: 50%;
}

.pin-on {
  left: 0;
}

.pin-off {
  right: 0;
  transform: scale(-1, 1);
}

input#switch-on:checked ~ .switch {
  background-color: rgba(58, 79, 51, 0.9);
}

input#switch-off:checked ~ .switch {
  background-color: rgba(51, 79, 114, 0.9);
}

input#switch-on:checked ~ .switch .pin-on .pin-corners,
input#switch-off:checked ~ .switch .pin-off .pin-corners {
  transform: rotate(-42.5deg);
}

.pin-corners {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.78s;
}

.pin-corners span {
  position: absolute;
  top: 0;
  left: 0;
  height: 49px;
  width: 40px;
  border-right: 2px solid #5d5d5d;
  border-radius: 30px 15px 25% / 150% 0;
  transform-origin: 47px 47px;
  transition: border-color 0.42s;
}

input#switch-on:checked ~ .switch .pin-on .pin-corners span,
input#switch-off:checked ~ .switch .pin-off .pin-corners span {
  border-color: #383838;
  transition: border-color 0.42s 0.21s ease-out;
}

.pin-corners span:nth-child(1) {
  transform: rotate(0deg);
}

.pin-corners span:nth-child(2) {
  transform: rotate(30deg);
}

.pin-corners span:nth-child(3) {
  transform: rotate(60deg);
}

.pin-corners span:nth-child(4) {
  transform: rotate(90deg);
}

.pin-corners span:nth-child(5) {
  transform: rotate(120deg);
}

.pin-corners span:nth-child(6) {
  transform: rotate(150deg);
}

.pin-corners span:nth-child(7) {
  transform: rotate(180deg);
}

.pin-corners span:nth-child(8) {
  transform: rotate(210deg);
}

.pin-corners span:nth-child(9) {
  transform: rotate(240deg);
}

.pin-corners span:nth-child(10) {
  transform: rotate(270deg);
}

.pin-corners span:nth-child(11) {
  transform: rotate(300deg);
}

.pin-corners span:nth-child(12) {
  transform: rotate(330deg);
}

.pin-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 94px;
  width: 94px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  transform: scale(0.24);
  transition:
    transform 0.78s,
    background-color 0.52s;
}

.pin-corners:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  width: 32px;
  margin: auto;
  border-radius: 50%;
  filter: blur(10px);
}

.pin-on .pin-center {
  background-color: rgb(71 153 55);
  box-shadow: 0 0 5px 2px rgb(71 153 55);
}

input#switch-on:checked ~ .switch .pin-on .pin-center {
  background-color: transparent;
  transform: scale(0.87);
}

.pin-on .pin-corners:after {
  background-color: rgb(148 229 131);
  transition: transform 0.41s;
}

input#switch-on:checked ~ .switch .pin-on .pin-corners:after,
input#switch-off:checked ~ .switch .pin-off .pin-corners:after {
  transition: transform 0.82s;
  transform: scale(2.05);
}

.pin-off .pin-center {
  background-color: rgb(114 167 218);
  box-shadow: 0 0 5px 2px rgb(114 167 218);
}

.pin-off .pin-corners:after {
  background-color: rgb(167, 200, 229);
  transition: transform 0.41s;
}

input#switch-off:checked ~ .switch .pin-off .pin-center {
  background-color: transparent;
  transform: scale(0.87);
}

input#switch-on:checked ~ .switch .pin-on .pin-center:before,
input#switch-off:checked ~ .switch .pin-off .pin-center:before {
  opacity: 1;
  transition:
    0.67s,
    opacity 0.56s 0.12s;
  transform: scale(1);
}

.pin-on .pin-center:before {
  background-image: url(https://blueshiftdev.com/wp-content/uploads/2025/12/Plasma-Animation-Green.gif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pin-off .pin-center:before {
  background-image: url(https://blueshiftdev.com/wp-content/uploads/2025/12/Plasma-Animation-Blue.gif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Toggle Content Visibility - Hide both by default */
/* SEO-optimized: Content stays in DOM for maximum SEO value */
/* Using display:none which is SEO-friendly and doesn't interfere with WordPress layout */
.smb-toggle:not(.active),
.ecom-toggle:not(.active) {
  display: none;
  /* Content remains fully in DOM and accessible to search engines */
  /* display:none is fine for SEO - modern search engines index this content */
}

/* Show class when active */
.smb-toggle.active,
.ecom-toggle.active {
  display: block;
  /* Restores normal WordPress layout and centering */
}
/*END - Industry Toggle Switch */

/* BEGINNING - Testimonial Carousel Styles */
/* Prevent body/html overflow on mobile */
@media screen and (max-width: 768px) {
  body,
  html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  /* Override GeneratePress containers */
  /*
  .grid-container,
  .inside-article,
  main,
  .entry-content,
  .site-content,
  .content-area,
  .site-main {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
*/
  /* Force carousel to viewport width using negative margins */
  .testimonial-carousel-container {
    max-width: 100vw !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }
}

.testimonial-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #14183d;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.testimonial-carousel-title {
  text-align: center;
  font-size: 2.5rem;
  color: #cdced0;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  transition: all 0.5s ease;
  box-sizing: border-box;
  overflow-x: hidden;
}

.testimonial-carousel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-track {
  display: flex;
  transition: transform 5s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

.testimonial-card {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  background: #cdced0;
  padding: 30px;
  margin: 0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.testimonial-logo {
  flex-shrink: 0;
  width: 150px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #e9ecef;
}

.testimonial-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  white-space: normal;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: #183d6f;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  height: 15px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #72a7da;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.testimonial-dot:hover {
  transform: scale(1.2);
  background-color: #6a9ae8;
}

.testimonial-dot.active {
  background-color: #ab6031;
  transform: scale(1.1);
}

.testimonial-arrow {
  display: none; /* Display: Flex to turn the arrows back on */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f99928;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.testimonial-arrow:hover {
  background-color: #ffb869;
}

.testimonial-arrow.prev {
  left: 20px;
}

.testimonial-arrow.next {
  right: 20px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    margin: 0;
    width: 100%;
    min-width: 100%;
  }

  .testimonial-logo {
    width: 120px;
    height: 84px;
  }

  .testimonial-content {
    width: 100%;
    max-width: 100%;
  }

  .testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonial-arrow.prev {
    left: 10px;
  }

  .testimonial-arrow.next {
    right: 10px;
  }

  .testimonial-carousel-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-carousel-container {
    padding: 20px 10px;
  }

  .testimonial-card {
    padding: 15px;
  }

  .testimonial-logo {
    width: 100px;
    height: 70px;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}
/* Additional styles for Custom HTML Block compatibility */
.testimonial-carousel-container * {
  box-sizing: border-box;
}

.testimonial-carousel-container img {
  max-width: 100%;
  height: auto;
}

/* Ensure proper spacing in Gutenberg editor */
.wp-block-html .testimonial-carousel-container {
  margin: 20px 0;
}

/* Fix any potential conflicts with theme styles */
.testimonial-carousel-container h2 {
  margin: 0 0 40px 0;
  padding: 0;
}

.testimonial-carousel-container p {
  margin: 0;
  padding-right: 15px;
}

.testimonial-carousel-container button {
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

/* Ensure carousel works in different contexts */
.testimonial-carousel-container {
  position: relative;
  z-index: 1;
}

/* Loading state for images */
.testimonial-logo img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-logo img[src] {
  opacity: 1;
}

/* Fallback for missing images */
.testimonial-logo img:not([src]),
.testimonial-logo img[src=""] {
  opacity: 0;
}

.testimonial-logo:has(img:not([src])),
.testimonial-logo:has(img[src=""]) {
  background: #e9ecef;
  color: #6c757d;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-logo:has(img:not([src]))::after,
.testimonial-logo:has(img[src=""])::after {
  content: "Logo";
}
/* END - Testimonial Carousel Styles */

/* BEGINNING - Blue Shift text gradient */
.bsd-text-gradient {
  /* gradient fill */
  background: linear-gradient(
    180deg,
    rgb(45, 74, 111),
    rgb(61, 90, 127) 8%,
    rgb(77, 106, 143),
    rgb(109, 138, 175) 22%,
    rgb(141, 165, 191) 28%,
    rgb(173, 191, 207),
    rgb(200, 213, 223) 42%,
    rgb(221, 229, 239),
    rgb(200, 213, 223) 58%,
    rgb(173, 191, 207),
    rgb(141, 165, 191) 72%,
    rgb(109, 138, 175) 78%,
    rgb(77, 106, 143),
    rgb(61, 90, 127) 92%,
    rgb(45, 74, 111)
  );

  /* clip background to text */
  -webkit-background-clip: text;
  background-clip: text;

  /* make the actual glyph color transparent so gradient shows */
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* optional depth like your template */
  filter: drop-shadow(rgba(0, 0, 0, 0.5) 0px 2px 4px)
    drop-shadow(rgba(0, 0, 0, 0.3) 0px 4px 8px);

  /* helps avoid odd rendering in some browsers - coded out for now */
  /* display: inline-block; */
}
/* END - Blue Shift text gradient */

/* BEGIN POPUP BASE (overlay + container) */
body.gf-popup-open {
  overflow: hidden;
}

/* Overlay */
.gf-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.75);
}

/* Container */
.gf-popup-container {
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 640px;
  width: 100%;
  height: auto;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: gfPopupSlideIn 0.25s ease-out;
  border: 1px solid #72a7da;
}

/* Dark overlay for readability (works for simple popup too) */
.gf-popup-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #14183d;
  z-index: 1;
  border-radius: 12px;
}

/* Ensure all content is above overlay */
.gf-popup-container > * {
  position: relative;
  z-index: 2;
}

@keyframes gfPopupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(-18px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Header / close */
.gf-popup-header {
  position: relative;
  width: 100%;
  padding: 0;
  background: transparent;
  display: block;
  flex-shrink: 0;
}

.gf-popup-close-container {
  position: relative;
  width: 100%;
  min-height: 52px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 14px 0 14px;
  z-index: 10;
  background-color: transparent;
}

.gf-popup-close {
  position: relative;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  padding: 0;
  margin: 0;
  line-height: 1;
  box-sizing: border-box;
}

.gf-popup-close:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.gf-popup-close:focus {
  outline: 2px solid #72a7da;
  outline-offset: 2px;
}

/* Content wrapper (your JS uses .gf-popup-content + .simple-popup-content) */
.gf-popup-content {
  position: relative;
  padding: 10px 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .gf-popup-overlay {
    padding: 50px 15px;
    align-items: center;
    justify-content: center;
  }

  .gf-popup-container {
    max-width: 90%;
    max-height: 80vh;
  }

  .gf-popup-close {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    max-width: 35px;
    max-height: 35px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .gf-popup-overlay {
    padding: 50px 10px;
    align-items: center;
    justify-content: center;
  }

  .gf-popup-container {
    width: calc(100% - 20px);
    max-width: 95%;
    max-height: 80vh;
  }
}
/* END POPUP BASE */

/* Simple popup content */
.simple-popup-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: auto;
  padding: 50px 20px;
  color: #cdced0;
}

/* Simple popup message/body */
.simple-popup-message {
  margin: 0 0 30px 0;
}

/* Simple popup title */
.simple-popup-title {
  color: white;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

/* Simple popup button */
.simple-popup-button {
  background-color: #000;
  color: white;
  border: 1px solid #72a7da;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(40, 166, 221, 0.3);
  text-decoration: none;
  display: inline-block;
}

.simple-popup-button:hover {
  background-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(27, 137, 189, 0.4);
}

.simple-popup-button:active {
  transform: translateY(0);
}

.simple-popup-button:focus {
  outline: 2px solid #28a6dd;
  outline-offset: 2px;
}

/* Mobile responsive for simple popup */
@media (max-width: 768px) {
  .simple-popup-content {
    min-height: auto;
    padding: 40px 15px;
    color: #cdced0;
  }

  .simple-popup-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .simple-popup-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .simple-popup-content {
    min-height: auto;
    padding: 30px 10px;
    color: #cdced0;
  }

  .simple-popup-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .simple-popup-button {
    padding: 10px 25px;
    font-size: 14px;
    margin-top: 0;
  }
}

/* High contrast mode support for simple popup */
@media (prefers-contrast: high) {
  .simple-popup-content::before {
    background-color: rgba(0, 0, 0, 0.9);
  }

  .simple-popup-title {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
  }

  .simple-popup-button {
    border: 2px solid white;
  }
}

/* Reduced motion support for simple popup */
@media (prefers-reduced-motion: reduce) {
  .simple-popup-button {
    transition: none;
  }

  .simple-popup-button:hover {
    transform: none;
  }
}
/* END SIMPLE POPUP STYLES */

/* BEGINNING - BSD Container Offset Styles */
.bsd-service-offer {
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
  box-sizing: border-box;
}

.bsd-service-offer:hover {
  transform: translateY(-20px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border: 3px solid #ab6031;
}
/* END - BSD Container Offset Styles */
