@charset "UTF-8";

/*
Theme Name: Franny's Landscaping
Theme URI: https://wordpress.org/themes/Franny'sLandscaping/
*/

/* ================================= Theme Styles ==================================== */

/* Poppins as primary font with sensible fallbacks */
:root {
  --font-sans: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  /* Responsive heading scale */
  --h1-size: clamp(2.25rem, 2.5vw + 1.25rem, 3rem);
  --h2-size: clamp(1.75rem, 1.8vw + 0.9rem, 2.25rem);
  --h3-size: clamp(1.25rem, 1.2vw + 0.6rem, 1.5rem);
}

html {
  scroll-behavior: smooth;
}

body,
.font-sans {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-gradient {
  background: linear-gradient(135deg, #6B8E3A 0%, #639C0F 50%, #95C04A 100%);
}

.text-brand-green {
  color: #639C0F;
}

.bg-brand-green {
  background-color: #639C0F;
}

/* Enforce heading typography */
h1 {
  font-family: var(--font-sans);
  font-size: var(--h1-size) !important;
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font-sans);
  font-size: var(--h2-size) !important;
  font-weight: 700 !important;
  line-height: 1.25;
}

h3 {
  font-family: var(--font-sans);
  font-size: var(--h3-size) !important;
  font-weight: 700 !important;
  line-height: 1.3;
}

/* Contact Form 7 Styling - Tailwind-compatible grid */
.wpcf7-form .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-bottom: 1.5rem;
}

.wpcf7-form .row:last-child {
  margin-bottom: 0;
}

/* Grid columns - responsive widths matching Tailwind breakpoints */
.wpcf7-form .col-md-6,
.wpcf7-form .col-md-12,
.wpcf7-form .col-md-4,
.wpcf7-form .col-md-8 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .wpcf7-form .col-md-6 {
    width: 50%;
  }

  .wpcf7-form .col-md-4 {
    width: 33.333333%;
  }

  .wpcf7-form .col-md-8 {
    width: 66.666667%;
  }
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #639C0F;
  box-shadow: 0 0 0 3px rgba(128, 171, 64, 0.1);
}

.wpcf7-form textarea {
  resize: vertical;
  min-height: 100px;
}

.wpcf7-form .wpcf7-submit {
  width: 100%;
  background: linear-gradient(135deg, #6B8E3A, #639C0F, #95C04A);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

.wpcf7-form .wpcf7-submit:hover {
  opacity: 0.95;
}

.wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.wpcf7-form .wpcf7-validation-errors {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.wpcf7-form .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.wpcf7-form .wpcf7-not-valid {
  border-color: #dc2626;
}

/* Services Dropdown Menu */
.services-dropdown {
  position: relative;
}

.services-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
  padding: 0.5rem 0;
  min-width: 220px;
  z-index: 50;
  margin-top: 0.5rem;
}

.services-dropdown:hover .services-dropdown-content {
  display: block;
}

.services-dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: #1f2937;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.services-dropdown-content a:hover {
  background: rgba(128, 171, 64, 0.1);
  color: #639C0F;
}

/* Mobile Services Dropdown */
.mobile-services-toggle {
  cursor: pointer;
}

.mobile-services-submenu {
  display: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-services-submenu.active {
  display: block;
}

.mobile-services-toggle.active::after {
  content: '−';
}

.mobile-services-toggle::after {
  content: '+';
  float: right;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Logo height */
.logo-height {
  height: 60px;
}

/* Icon dot sizing */
.icon-dot-large {
  width: 120px;
  height: 120px;
}

/* SVG icon sizing */
.svg-icon-md {
  width: 48px;
  height: 48px;
}

/* Icon dot base styles */
.icon-dot {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Reviews Carousel Styles */
#reviews .relative,
#reviewsCarousel {
  position: relative;
  padding: 0 20px;
}

/* Mobile padding adjustments */
@media (max-width: 768px) {
  #reviewsCarousel {
    padding: 0 0px;
  }
}

@media (max-width: 480px) {
  #reviewsCarousel {
    padding: 0;
  }
}

/* Let shadows/dots show outside the stage */
#reviewsCarousel .owl-stage-outer {
  overflow: hidden;
  padding: 10px 0 30px 0;
}

/* ===== Nav (prev/next) ===== */
#reviewsCarousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

/* Buttons */
#reviewsCarousel .owl-nav button.owl-prev,
#reviewsCarousel .owl-nav button.owl-next {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(128, 171, 64, 0.2) !important;
  color: #639C0F !important;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(128, 171, 64, 0.4);
  border: 2px solid rgba(128, 171, 64, 0.4);
  transition: all 0.3s ease;
  font-size: 24px;
}

#reviewsCarousel .owl-nav button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(128, 171, 64, 0.4);
}

/* Icon size if you used Material Icons or text */
#reviewsCarousel .owl-nav button span {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
}

/* Replace text with Material Icons */
#reviewsCarousel .owl-nav button.owl-prev span::before {
  content: "chevron_left";
  font-family: 'Material Icons';
  font-size: 24px;
}

#reviewsCarousel .owl-nav button.owl-next span::before {
  content: "chevron_right";
  font-family: 'Material Icons';
  font-size: 24px;
}

#reviewsCarousel .owl-nav button span {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #reviewsCarousel .owl-nav {
    left: -20px;
    right: -20px;
  }

  #reviewsCarousel .owl-nav button.owl-prev,
  #reviewsCarousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }

  #reviewsCarousel .owl-nav button span {
    font-size: 20px;
  }
}

/* Hide nav on very small screens */
@media (max-width: 480px) {
  #reviewsCarousel .owl-nav {
    display: none;
  }
}

/* ===== Combined Carousel Styles ===== */
#reviewsCarousel,
#galleryCarousel {
  padding: 0 60px;
}

#reviewsCarousel .owl-nav,
#galleryCarousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

#reviewsCarousel .owl-nav button,
#galleryCarousel .owl-nav button {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(128, 171, 64, 0.2) !important;
  color: #639C0F !important;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(128, 171, 64, 0.4);
  border: 2px solid rgba(128, 171, 64, 0.4);
  transition: all 0.3s ease;
}

#reviewsCarousel .owl-nav button:hover,
#galleryCarousel .owl-nav button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(128, 171, 64, 0.4);
}

#reviewsCarousel .owl-nav button span,
#galleryCarousel .owl-nav button span {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
}

/* Override default Owl Carousel dots */
#reviewsCarousel .owl-dots,
#galleryCarousel .owl-dots,
#servicesCarousel .owl-dots {
  margin-top: 20px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
  -webkit-tap-highlight-color: transparent !important;
}

#reviewsCarousel .owl-dot,
#galleryCarousel .owl-dot,
#servicesCarousel .owl-dot {
  width: 10px !important;
  height: 10px !important;
  background: #d1d5db59 !important;
  border-radius: 50% !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  margin: 0 !important;
  zoom: 1 !important;
  *display: inline !important;
}

#reviewsCarousel .owl-dot span,
#galleryCarousel .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: #d1d5db !important;
  display: block !important;
  border-radius: 50% !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}

#reviewsCarousel .owl-dot.active,
#galleryCarousel .owl-dot.active,
#servicesCarousel .owl-dot.active {
  background: #ffffff !important;
  transform: scale(1.2) !important;
}

#reviewsCarousel .owl-dot.active span,
#galleryCarousel .owl-dot.active span,
#servicesCarousel .owl-dot.active span {
  background: #639C0F !important;
}

#reviewsCarousel .owl-dot:hover span,
#galleryCarousel .owl-dot:hover span,
#servicesCarousel .owl-dot:hover span {
  background: #639C0F !important;
}

/* Services Carousel - Equal Height Items */
#servicesCarousel .owl-item {
  display: flex;
  align-items: stretch;
}

#servicesCarousel .owl-item .item {
  display: flex;
  width: 100%;
  align-items: stretch;
}

#servicesCarousel .owl-item article {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}

#servicesCarousel .owl-item article > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

#servicesCarousel .owl-item article > div > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Reviews Carousel - Fixed Height Items */
#reviewsCarousel .owl-item {
  display: flex;
  align-items: stretch;
}

#reviewsCarousel .review-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
  max-height: 400px;
}

#reviewsCarousel .review-content-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 0;
}

#reviewsCarousel .review-content {
  transition: max-height 0.3s ease;
  word-wrap: break-word;
}

#reviewsCarousel .review-item.collapsed .review-content-wrapper {
  max-height: 120px;
  overflow: hidden;
}

#reviewsCarousel .review-item.collapsed .review-content-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  pointer-events: none;
}


#reviewsCarousel .review-item.expanded .review-content-wrapper::after {
  display: none;
}

#reviewsCarousel .review-read-more-btn {
  align-self: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
}

/* Review Modal / Lightbox */
.review-modal {
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.review-modal.hidden {
  display: none;
}

.review-modal-content {
  animation: slideUp 0.3s ease;
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-modal-close {
  z-index: 10;
}

.review-modal-header {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
}

.review-modal-body {
  padding-top: 1rem;
}

/* Mobile adjustments for both carousels */
@media (max-width: 768px) {
  #reviewsCarousel,
  #galleryCarousel {
    padding: 0 20px;
  }

  #reviewsCarousel .owl-nav,
  #galleryCarousel .owl-nav {
    left: -20px;
    right: -20px;
  }

  #reviewsCarousel .owl-nav button,
  #galleryCarousel .owl-nav button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  #reviewsCarousel .owl-nav,
  #galleryCarousel .owl-nav {
    display: none;
  }
}

/* Contact Form 7 Additional Styles */
.wpcf7-form .align-items-center {
  align-items: center;
}

.wpcf7-form .col-md-8 p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.wpcf7-form .wpcf7-submit:active {
  transform: translateY(1px);
}

.wpcf7-form .wpcf7-response-output {
  display: none;
}

.wpcf7-form .wpcf7-response-output:not(:empty) {
  display: block;
}

/* Mobile form spacing */
@media (max-width: 768px) {
  .wpcf7-form .row {
    margin-bottom: 1rem;
  }

  .wpcf7-form .col-md-6,
  .wpcf7-form .col-md-12,
  .wpcf7-form .col-md-4,
  .wpcf7-form .col-md-8 {
    margin-bottom: 1rem;
  }

  .wpcf7-form .col-md-6:last-child,
  .wpcf7-form .col-md-12:last-child,
  .wpcf7-form .col-md-4:last-child,
  .wpcf7-form .col-md-8:last-child {
    margin-bottom: 0;
  }
}

/* Floating Call Button */
.floating-call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.floating-call-button .call-button {
  background: linear-gradient(135deg, #6B8E3A, #80AB40, #95C04A);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 20px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(128, 171, 64, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  min-width: 60px;
  height: 60px;
  position: relative;
  overflow: visible;
  animation: bell-ring 4s infinite;
}

/* Bell ring shake animation with pauses */
@keyframes bell-ring {
  0%,
  15% {
    transform: translateX(0) rotate(0deg);
  }

  1%,
  3%,
  5%,
  7%,
  9%,
  11%,
  13% {
    transform: translateX(-1.5px) rotate(-4deg);
  }

  2%,
  4%,
  6%,
  8%,
  10%,
  12%,
  14% {
    transform: translateX(1.5px) rotate(4deg);
  }

  15%,
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.floating-call-button .call-button:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(128, 171, 64, 0.5);
}

.floating-call-button .call-button .phone-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.floating-call-button .call-button .button-text {
  white-space: nowrap;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: all 0.2s ease-out;
  color: white;
}

.floating-call-button .call-button.expanded {
  min-width: 60px;
  width: 60px;
  height: 60px;
  padding: 15px;
  border-radius: 50%;
  animation: none;
}

.floating-call-button .call-button.expanded .button-text {
  opacity: 0;
  transform: translateX(-20px) scale(0.8);
}

.floating-call-button .call-button.expanded .phone-icon.visible {
  opacity: 0;
  transform: scale(0.8);
}

.floating-call-button .call-button .close-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
}

.floating-call-button .call-button.expanded .close-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.floating-call-button .call-button .phone-icon.hidden {
  opacity: 0;
  transform: scale(0.8);
}

.floating-call-button .call-button.expanded .phone-icon.hidden {
  opacity: 0;
}

.floating-call-button .call-button .phone-icon.visible {
  opacity: 1;
  transform: scale(1);
}

.floating-call-button .call-button.expanded .phone-icon.visible {
  opacity: 0;
}

/* Contact Details Panel */
.floating-call-button .contact-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
  min-width: 280px;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid #e5e7eb;
}

.floating-call-button .contact-panel.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.floating-call-button .contact-panel .profile-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.floating-call-button .contact-panel .profile-avatar {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #6B8E3A, #80AB40, #95C04A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.floating-call-button .contact-panel .profile-info h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.floating-call-button .contact-panel .profile-info p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.floating-call-button .contact-panel .service-info {
  font-size: 14px;
  color: #374151;
  margin-bottom: 15px;
  font-weight: 500;
}

.floating-call-button .contact-panel .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f3f4f6;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #80AB40;
  font-weight: 600;
  transition: all 0.2s ease;
}

.floating-call-button .contact-panel .phone-link:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.floating-call-button .contact-panel .phone-link .phone-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.floating-call-button .contact-panel .quote-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #6B8E3A, #80AB40, #95C04A);
  color: white;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.2s ease;
}

.floating-call-button .contact-panel .quote-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(128, 171, 64, 0.3);
}

.floating-call-button .contact-panel .quote-link .quote-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile video zoom effect */
.mobile-video-zoom {
  transform: scale(1.2);
}

/* FAQ Accordion Styles */
.faq-container {
  max-width: 100%;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e5e7eb;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px !important;
  font-weight: 600;
  color: #1f2937;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.vert-icon,
.hor-icon {
  position: absolute;
  background: #639C0F;
  transition: all 0.3s ease;
}

.vert-icon {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.hor-icon {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

.faq-item.active .vert-icon {
  opacity: 0;
}

.faq-item.active .hor-icon {
  transform: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 20px 24px;
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  background: white;
}

/* Mobile FAQ adjustments */
@media (max-width: 768px) {
  .faq-question {
    padding: 16px 20px;
  }

  .faq-question h3 {
    font-size: 16px !important;
    padding-right: 16px;
  }

  .faq-answer p {
    padding: 16px 20px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .vert-icon {
    height: 14px;
    top: 3px;
    left: 9px;
  }

  .hor-icon {
    width: 14px;
    top: 9px;
    left: 3px;
  }
}

/* Certification images consistent sizing */
.certification-image {
  width: 128px !important;
  height: 80px !important;
  object-fit: contain;
  object-position: center;
}

.certification-container {
  width: 128px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Polaroid Style Images */
.polaroid {
  background: white;
  padding: 15px 15px 60px 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  position: relative;
}

.polaroid:nth-child(even) {
  transform: rotate(2deg);
}

.polaroid:nth-child(3n) {
  transform: rotate(-1deg);
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.polaroid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 2px;
}

.polaroid-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  text-align: center;
  font-family: 'Kalam', cursive;
  font-size: 14px;
  color: #374151;
  font-weight: 400;
}

/* Mobile polaroid adjustments */
@media (max-width: 768px) {
  .polaroid {
    padding: 12px 12px 50px 12px;
  }

  .polaroid-image {
    height: 150px;
  }

  .polaroid-caption {
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 12px;
  }
}

/* Floating Reviews Button */
.floating-reviews-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.floating-reviews-button .reviews-button {
  display: block;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #f3f4f6;
  min-width: 120px;
}

.floating-reviews-button .reviews-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  border-color: #639C0F;
}

.floating-reviews-button .reviews-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-reviews-button .reviews-logo {
  width: 120px;
  object-fit: contain;
}

.floating-reviews-button .reviews-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.floating-reviews-button .reviews-rating {
  font-size: 14px;
  font-weight: bold;
  color: #639C0F;
  line-height: 1.2;
}

.floating-reviews-button .reviews-label {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.2;
  margin-top: 4px;
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
  .floating-reviews-button {
    bottom: 20px;
    left: 15px;
  }

  .floating-reviews-button .reviews-button {
    padding: 12px;
    min-width: 80px;
  }

  .floating-reviews-button .reviews-content {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .floating-reviews-button .reviews-logo {
    width: 120px;
  }

  .floating-reviews-button .reviews-text {
    align-items: center;
  }

  .floating-reviews-button .reviews-rating {
    font-size: 12px;
  }

  .floating-reviews-button .reviews-label {
    font-size: 10px;
  }

  .floating-call-button {
    bottom: 20px;
    right: 20px;
  }

  .floating-call-button .call-button {
    min-width: 56px;
    height: 56px;
    font-size: 14px;
    padding: 12px 16px;
  }

  .floating-call-button .call-button.expanded {
    min-width: 56px;
    width: 56px;
    height: 56px;
    padding: 12px;
  }

  .floating-call-button .call-button .phone-icon {
    width: 20px;
    height: 20px;
  }

  .floating-call-button .call-button .close-icon {
    width: 14px;
    height: 14px;
  }

  .floating-call-button .contact-panel {
    min-width: 280px;
    right: -20px;
    bottom: 70px;
    padding: 18px;
  }

  .floating-call-button .contact-panel .profile-avatar {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .floating-call-button .contact-panel .profile-info h3 {
    font-size: 12px;
  }

  .floating-call-button .contact-panel .profile-info p {
    font-size: 13px;
  }

  .floating-call-button .contact-panel .service-info {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .floating-call-button .contact-panel .phone-link,
  .floating-call-button .contact-panel .quote-link {
    padding: 10px 12px;
    font-size: 14px;
  }

  .floating-call-button .contact-panel .phone-link .phone-icon,
  .floating-call-button .contact-panel .quote-link .quote-icon {
    width: 18px;
    height: 18px;
  }
}

/* Very small mobile screens */
@media (max-width: 480px) {
  .floating-call-button {
    bottom: 15px;
    right: 15px;
  }

  .floating-call-button .call-button {
    min-width: 52px;
    height: 52px;
    font-size: 13px;
    padding: 10px 14px;
  }

  .floating-call-button .call-button.expanded {
    min-width: 52px;
    width: 52px;
    height: 52px;
    padding: 10px;
  }

  .floating-call-button .contact-panel {
    min-width: 260px;
    right: -15px;
    bottom: 65px;
    padding: 16px;
  }
}

/* Hide any duplicate dots from external CSS */
.reviews-carousel .owl-dots {
  display: none !important;
}

/* ===== Equal Height Cards ===== */
#reviewsCarousel .item {
  height: 100%;
}

#reviewsCarousel .item figure {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#reviewsCarousel .item blockquote {
  flex-grow: 1;
}

#reviewsCarousel .item figcaption {
  margin-top: auto;
}