/* Love Your Home - Maid Service - Main Styles */

/* Brand Color Variables (Based on LYHMS Logo) */
:root {
  /* Primary Brand Colors */
  --bulldog-pink: #EB3672;
  --bulldog-red: #C8785A;
  --success-green: #21B24B;

  /* Supporting Colors */
  --sky-blue: #96A1AB;
  --cream: #F0F0DD;
  --soft-lavender: #F1EFF5;

  /* Neutrals */
  --charcoal: #231F20;
  --medium-gray: #646461;
  --light-gray: #BABABA;
  --white: #FFFFFF;
  --black: #010101;

  /* Interactive States */
  --bulldog-pink-hover: #D42E65;
  --bulldog-red-hover: #B56B4A;
  --success-green-hover: #1E9A42;

  /* Legacy Support (for gradual migration) */
  --primary-cta: var(--bulldog-pink);
  --primary-cta-hover: var(--bulldog-pink-hover);
}

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--white);
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--bulldog-pink);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Top Header Bar */
.top-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--bulldog-pink);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.top-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header-left {
  display: flex;
  align-items: center;
}

.top-header-text {
  font-weight: 500;
  color: var(--white);
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-header-phone,
.top-header-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.top-header-phone:hover,
.top-header-email:hover {
  color: var(--bulldog-pink);
  background: rgba(235, 52, 113, 0.1);
}

.phone-icon,
.email-icon {
  font-size: 1rem;
}

.phone-number,
.email-text {
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.5px;
}

/* Sticky Navigation Header */
.navbar {
  position: fixed;
  top: 42px; /* Account for top header height */
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(235, 52, 113, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.navbar-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.nav-logo-icon {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo-text {
  height: 24px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-link:hover .nav-logo-icon,
.logo-link:hover .nav-logo-text {
  transform: scale(1.05);
}

.logo-link:focus {
  outline: 2px solid var(--bulldog-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Desktop Navigation Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--bulldog-pink);
}

.nav-link:focus {
  outline: 2px solid var(--bulldog-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--bulldog-pink);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA Button Container */
.navbar-cta {
  display: flex;
  align-items: center;
}

.nav-cta-button {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Mobile Navigation */
.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.navbar-toggle:focus {
  outline: 2px solid var(--bulldog-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background-color: var(--charcoal);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-menu-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(235, 52, 113, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.navbar-menu-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navbar-menu-mobile ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.navbar-menu-mobile li {
  border-bottom: 1px solid rgba(235, 52, 113, 0.1);
}

.navbar-menu-mobile li:last-child {
  border-bottom: none;
}

.nav-link-mobile {
  display: block;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.nav-link-mobile:hover {
  background-color: rgba(235, 52, 113, 0.05);
  color: var(--bulldog-pink);
}

.nav-link-mobile:focus {
  outline: 2px solid var(--bulldog-pink);
  outline-offset: -2px;
}

/* Mobile Phone Link */
.nav-phone-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--bulldog-pink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 8px;
  background: rgba(235, 52, 113, 0.1);
  border: 2px solid var(--bulldog-pink);
  transition: all 0.3s ease;
  text-align: center;
  margin: 0.5rem 2rem;
}

.nav-phone-mobile:hover {
  background: var(--bulldog-pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(235, 52, 113, 0.3);
}

.nav-cta-button-mobile {
  display: block;
  margin: 1rem 2rem;
  text-align: center;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--charcoal);
}

h2 {
  font-size: 2rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--bulldog-pink);
  color: var(--white);
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary:hover {
  background-color: var(--bulldog-pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(235, 52, 113, 0.3);
}

.btn-primary:focus {
  outline: 2px solid var(--bulldog-pink);
  outline-offset: 2px;
}

.btn-primary.large {
  padding: 20px 40px;
  font-size: 1.3rem;
}

/* Hero Section */
.hero {
  padding: 0 0 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 58vh;
  height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(35, 31, 32, 0.8) 0%, rgba(35, 31, 32, 0.6) 100%);
  color: var(--white);
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Ken Burns Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 2s ease-in-out;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240, 240, 221, 0.7), rgba(241, 239, 245, 0.7));
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
}

/* Ken Burns Animations */
.hero-slide:nth-child(1) {
  animation: kenBurnsZoomIn 10s ease-in-out infinite;
}

.hero-slide:nth-child(2) {
  animation: kenBurnsPanRight 10s ease-in-out infinite;
}

.hero-slide:nth-child(3) {
  animation: kenBurnsZoomOut 10s ease-in-out infinite;
}

.hero-slide:nth-child(4) {
  animation: kenBurnsPanLeft 10s ease-in-out infinite;
}

.hero-slide:nth-child(5) {
  animation: kenBurnsZoomIn 10s ease-in-out infinite;
}

.hero-slide:nth-child(6) {
  animation: kenBurnsZoomOut 10s ease-in-out infinite;
}

@keyframes kenBurnsZoomIn {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(-2%, -1%);
  }
  100% {
    transform: scale(1.2) translate(-4%, -2%);
  }
}

@keyframes kenBurnsPanRight {
  0% {
    transform: scale(1.1) translate(-5%, 0);
  }
  50% {
    transform: scale(1.15) translate(0, -2%);
  }
  100% {
    transform: scale(1.2) translate(5%, -4%);
  }
}

@keyframes kenBurnsZoomOut {
  0% {
    transform: scale(1.2) translate(2%, 2%);
  }
  50% {
    transform: scale(1.1) translate(1%, 1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenBurnsPanLeft {
  0% {
    transform: scale(1.1) translate(5%, 0);
  }
  50% {
    transform: scale(1.15) translate(0, -2%);
  }
  100% {
    transform: scale(1.2) translate(-5%, -4%);
  }
}



.hero-logo {
  margin-bottom: 2rem;
}

.company-logo {
  height: 80px;
  width: auto;
  max-width: 300px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description a {
  color: white;
  text-decoration: underline;
}

.hero-description a:hover {
  color: var(--bulldog-pink);
}

.hero-trust {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-trust span {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Why Choose Us Section */
.why-section {
  padding: 80px 0;
  background-color: var(--soft-lavender);
}

/* Why Choose Us Section with Background Image */
.why-section-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/optimized/professional-cleaning-6196228-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;
}

/* Responsive why section background */
@media (max-width: 480px) {
  .why-section-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/optimized/professional-cleaning-6196228-mobile.jpg');
    background-attachment: scroll;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .why-section-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/optimized/professional-cleaning-6196228-tablet.jpg');
  }
}

.why-section-bg h2 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit p {
  color: var(--medium-gray);
  font-size: 1rem;
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service {
  background: var(--cream);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--bulldog-pink);
}

.service h3 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

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

.service li {
  padding: 0.5rem 0;
  color: var(--medium-gray);
  position: relative;
  padding-left: 1.5rem;
}

.service li:before {
  content: "";
  color: var(--bulldog-pink);
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23EB3471' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20,6 9,17 4,12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background-color: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--bulldog-pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem auto;
}

.step h3 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.step p {
  color: var(--medium-gray);
  font-size: 1rem;
}

/* Clean Results Section - Before/After Images */
.results-section {
  padding: 80px 0;
  background: white;
}

.results-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--charcoal);
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.before-after-container {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.before-after-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.before-after-container h3 {
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bulldog-pink);
  line-height: 1.3;
}

.comparison-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--light-gray);
  margin: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
  padding: 16px;
}

.before-after-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}

.image-container {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
}

.image-container.before {
  border: none;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.before-label {
  background: rgba(209, 35, 45, 0.95);
  border: 2px solid rgba(209, 35, 45, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.after-label {
  background: rgba(33, 178, 75, 0.95);
  border: 2px solid rgba(33, 178, 75, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.zoom-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 8px;
  border-radius: 50%;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.image-container:hover .zoom-indicator {
  opacity: 1;
}

.results-cta {
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.results-guarantee {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* New Guarantee Section Styles */
.guarantee-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.guarantee-container {
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guarantee-badge-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.guarantee-badge-new h3 {
  color: var(--charcoal);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.guarantee-icon {
  color: var(--success-green);
  font-size: 2.5rem;
  flex-shrink: 0;
}

.guarantee-description {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin: 0;
}

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--charcoal);
}

.feature-icon {
  color: var(--bulldog-pink);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.guarantee-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cleaner-headshot {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cleaner-headshot:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.image-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bulldog-pink);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(235, 52, 113, 0.3);
}

.guarantee-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

.guarantee-cta .cta-button {
  margin-bottom: 1rem;
}

.guarantee-cta .cta-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.guarantee-cta .support-text {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.guarantee-cta .support-phone {
  color: var(--bulldog-pink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.guarantee-cta .support-phone:hover {
  text-decoration: underline;
}

/* Service Badge Styles */
.service-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: none;
  color: var(--charcoal);
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  box-shadow: none;
  text-align: center;
}

.badge-icon {
  color: var(--bulldog-pink);
  flex-shrink: 0;
}

.badge-text {
  text-align: center;
  line-height: 1.2;
}

/* Transformation Details Styles */
.transformation-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--bulldog-pink);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--charcoal);
  min-height: 44px;
}

.detail-icon {
  color: var(--bulldog-pink);
  flex-shrink: 0;
}

.detail-text {
  font-weight: 500;
  line-height: 1.3;
}

/* Lazy loading placeholder */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Customer Reviews Section */
.reviews-section {
  min-height: 38vh;
  padding: 40px 0;
  background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--cream) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bulldog-pink) 0%, var(--bulldog-red) 100%);
}

.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
}

.reviews-header h2 {
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Platform Tabs */
.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 100%;
  flex-wrap: wrap;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 2px solid #e0e0e0;
  background: white;
  color: var(--charcoal);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  justify-content: center;
}

.tab-button.active {
  background: white;
  color: var(--charcoal);
  border-color: var(--bulldog-pink);
  border-width: 3px;
}

.tab-button:hover {
  border-color: var(--bulldog-pink);
  background: white;
}

.tab-button.active:hover {
  background: white;
  border-color: var(--bulldog-pink);
}

.tab-logo {
  height: 20px;
  width: auto;
}

.tab-rating {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bulldog-red);
}

/* Reviews Content */
.reviews-content {
  display: none;
}

.reviews-content.active {
  display: block;
}

/* Icon Styles */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.icon-star {
  color: #FFD700;
  width: 16px;
  height: 16px;
}

.icon-star-filled {
  fill: #FFD700;
  stroke: #FFD700;
}

.icon-star-empty {
  fill: none;
  stroke: #E5E5E5;
}

.icon-check {
  color: var(--bulldog-pink);
  width: 16px;
  height: 16px;
}

.hero-trust .icon-check {
  color: white;
}

.icon-shield {
  color: var(--bulldog-red);
  width: 20px;
  height: 20px;
}

.icon-leaf {
  color: var(--bulldog-pink);
  width: 20px;
  height: 20px;
}

.icon-zap {
  color: var(--bulldog-red);
  width: 20px;
  height: 20px;
}

.icon-phone {
  color: var(--bulldog-pink);
  width: 16px;
  height: 16px;
}

.icon-mail {
  color: var(--bulldog-pink);
  width: 16px;
  height: 16px;
}

.icon-clipboard-list {
  color: #6B7280; /* Gray color for clipboard icon */
  width: 16px;
  height: 16px;
}

/* Reviews Carousel */
.reviews-carousel {
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
  max-width: 100%;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  animation: scroll-reviews 25s linear infinite;
  width: fit-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-reviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + 100vw - 4rem));
  }
}

/* Reviews Grid (fallback for non-carousel) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  flex: 0 0 300px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.rating-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}

.review-stars {
  font-size: 1rem;
  line-height: 1;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.85rem;
}

.review-author strong {
  color: var(--charcoal);
}

.review-date {
  color: var(--medium-gray);
}

/* Reviews CTA */
.reviews-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.review-link {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.review-link:hover {
  color: var(--bulldog-pink);
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
  .reviews-section {
    padding: 30px 0;
    min-height: 40vh;
  }

  .reviews-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .platform-tabs {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  /* Hero Trust Mobile Styles */
  .hero-trust {
    gap: 1rem;
    margin-top: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .hero-trust span {
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
  }

  .tab-button {
    max-width: 320px;
    width: 90%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    /* Improve touch targets for mobile */
    min-height: 48px;
    touch-action: manipulation;
  }

  .tab-logo {
    height: 18px;
    width: auto;
  }

  .tab-rating {
    font-size: 1rem;
    font-weight: 700;
  }

  .reviews-carousel {
    margin-bottom: 1.5rem;
  }

  .reviews-track {
    gap: 1.5rem;
    animation-duration: 30s;
  }

  .review-card {
    flex: 0 0 280px;
    min-height: 180px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 10px;
  }

  .review-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .review-rating {
    margin-bottom: 0.75rem;
  }

  .rating-number {
    font-size: 1.1rem;
  }

  .review-stars {
    gap: 2px;
  }

  .icon-star {
    width: 14px;
    height: 14px;
  }

  .review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .review-author {
    font-size: 0.9rem;
  }

  .reviews-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .reviews-cta a {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    text-align: center;
  }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
  .reviews-section {
    padding: 20px 0;
  }

  .reviews-header h2 {
    font-size: 1.6rem;
  }

  .platform-tabs {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  /* Hero Trust Extra Small Mobile Styles */
  .hero-trust {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .hero-trust span {
    font-size: 0.85rem;
    padding: 0.25rem 0;
  }

  .hero-trust .icon-check {
    width: 14px;
    height: 14px;
    margin-right: 0.5rem;
  }

  .tab-button {
    max-width: 300px;
    width: 95%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .tab-logo {
    height: 16px;
  }

  .tab-rating {
    font-size: 0.95rem;
  }

  .reviews-track {
    gap: 1rem;
    animation-duration: 35s;
  }

  .review-card {
    flex: 0 0 260px;
    min-height: 160px;
    padding: 1rem;
  }

  .reviews-grid {
    padding: 0 5px;
    gap: 0.75rem;
  }

  .review-card {
    padding: 0.875rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .review-author {
    font-size: 0.85rem;
  }

  .icon-star {
    width: 12px;
    height: 12px;
  }
}



/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--cream);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid var(--bulldog-pink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  color: var(--medium-gray);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial cite {
  color: var(--charcoal);
  font-weight: 600;
  font-style: normal;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--soft-lavender);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--medium-gray);
  font-size: 1rem;
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--medium-gray) 100%);
  color: var(--white);
  text-align: center;
}

.final-cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info a {
  color: var(--bulldog-pink);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 40px 0 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--bulldog-pink);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--bulldog-pink);
}

.sister-company-description {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--bulldog-pink);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Navigation Responsive Styles */
@media (max-width: 1200px) {
  .phone-number {
    display: none;
  }

  .phone-link {
    padding: 6px 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .navbar-menu {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 15px;
    height: 60px;
  }

  .nav-logo-icon {
    height: 35px;
  }

  .nav-logo-text {
    height: 20px;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  /* Mobile Before/After Adjustments */
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .before-after-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .image-container.before {
    border: none;
  }

  .image-container {
    min-height: 300px;
    aspect-ratio: 16/9;
  }

  .service-badge {
    font-size: 1.1rem;
    padding: 0;
  }

  .transformation-details {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    height: 55px;
  }

  .nav-logo-icon {
    height: 30px;
  }

  .nav-logo-text {
    height: 18px;
  }

  .navbar-menu-mobile {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-link-mobile {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .nav-cta-button-mobile {
    margin: 0.8rem 1.5rem;
  }

  .before-after-container {
    padding: 1.5rem;
  }

  .image-container {
    min-height: 200px;
  }
}

/* Body padding to account for headers - handled by individual header CSS files */
/* Desktop header (≥1025px): 18vh padding set in desktop-header.css */
/* Tablet header (769px-1024px): 92px padding set below */
/* Mobile header (≤768px): 60px padding set below */

@media (min-width: 769px) and (max-width: 1024px) {
  body {
    padding-top: 92px; /* Legacy desktop header height for tablet */
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px; /* Single mobile header height */
  }

  /* Hide desktop headers on mobile */
  .top-header,
  .navbar {
    display: none !important;
  }
}

  .top-header-text {
    display: none; /* Hide tagline on smaller screens */
  }

  .top-header-right {
    gap: 1rem; /* Adequate gap between items */
    display: flex;
  }

  .top-header-phone,
  .top-header-email {
    font-size: 0.9rem;
    padding: 8px 12px;
    min-height: 44px; /* WCAG touch target */
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1; /* Equal width for both buttons */
    justify-content: center;
  }

  .top-header-phone {
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
  }

  .top-header-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .top-header-email {
    background: var(--bulldog-pink);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .top-header-email:hover {
    background: var(--bulldog-red);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(235, 52, 113, 0.3);
  }

  .phone-number,
  .email-text {
    font-weight: 600; /* Make text more prominent on mobile */
    display: inline; /* Ensure phone number is visible on mobile */
  }

  .top-header-email .email-text {
    display: inline; /* Show "Get Quote" text on mobile */
  }

  /* Override the 1200px breakpoint that hides phone number */
  .phone-number {
    display: inline !important;
    font-size: 0.9rem;
    color: inherit;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px; /* Single mobile header height */
  }

  /* Hide desktop headers on mobile */
  .top-header,
  .navbar {
    display: none !important;
  }
}

  .top-header-container {
    padding: 0 15px;
  }

  .top-header-left {
    display: none; /* Hide left side completely on mobile */
  }

  .top-header-right {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
  }

  .top-header-phone {
    flex: 1;
    justify-content: center;
    min-height: 44px; /* WCAG touch target */
    padding: 8px 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
  }

  .top-header-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .top-header-email {
    background: var(--bulldog-pink);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    min-height: 44px; /* WCAG touch target */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1; /* Equal width with phone button */
  }

  .top-header-email:hover {
    background: var(--bulldog-red);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(235, 52, 113, 0.3);
  }

  .top-header-email .email-text {
    display: inline; /* Show "Get Quote" text on mobile */
    font-weight: 600;
  }

  .phone-number {
    font-weight: 600;
    font-size: 0.85rem;
    display: inline !important; /* Override any hiding rules */
    color: inherit;
  }

  /* Ensure icons are properly sized */
  .top-header-phone .icon,
  .top-header-email .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-trust {
    gap: 3rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    max-width: 1400px;
  }

  .before-after-container {
    padding: 3rem;
  }

  .image-container {
    min-height: 500px;
  }

  .before-after-container h3 {
    font-size: 1.9rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* GLightbox Custom Styling */
.image-container {
  position: relative;
}

.image-container a {
  display: block;
  position: relative;
  text-decoration: none;
}

.image-container a:focus {
  outline: 3px solid var(--bulldog-pink);
  outline-offset: 3px;
  border-radius: 4px;
}

.before-after-container:focus-within {
  outline: 2px solid var(--bulldog-pink);
  outline-offset: 2px;
}

/* Improved accessibility for screen readers */
.image-label .label-text {
  position: relative;
}

.image-label .label-text::before {
  content: attr(data-label);
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--light-gray);
  padding: 4rem 0;
}

.contact-form-section h2 {
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.contact-form-section p {
  text-align: center;
  color: var(--medium-gray);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Markate widget styling */
#markate-widget-contact {
  min-height: 400px;
}

/* Embedded Form Button Styling - Match CTA Buttons */
#markate-widget-contact iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
}

/* Target form buttons inside the iframe */
#markate-widget-contact button,
#markate-widget-contact input[type="submit"],
#markate-widget-contact input[type="button"] {
  background-color: var(--bulldog-pink) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 16px 32px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  min-height: 44px !important;
  min-width: 120px !important;
}

#markate-widget-contact button:hover,
#markate-widget-contact input[type="submit"]:hover,
#markate-widget-contact input[type="button"]:hover {
  background-color: var(--bulldog-pink-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(235, 52, 113, 0.3) !important;
}

#markate-widget-contact button:focus,
#markate-widget-contact input[type="submit"]:focus,
#markate-widget-contact input[type="button"]:focus {
  outline: 2px solid var(--bulldog-pink) !important;
  outline-offset: 2px !important;
}

/* Accessibility and Focus States */
.cta-button:focus,
.btn-primary:focus {
  outline: 3px solid var(--bulldog-pink);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .hero,
  .final-cta-section,
  .footer {
    background: white !important;
    color: black !important;
  }

  .btn-primary {
    border: 2px solid var(--bulldog-pink);
    background: var(--white) !important;
    color: var(--bulldog-pink) !important;
  }
}

/* Stock Image Integration Styles */
.hero-background {
  position: relative;
  overflow: hidden;
}





.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.process-step-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-container-new {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(235, 52, 113, 0.1), rgba(209, 35, 45, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container-new:hover .image-overlay {
  opacity: 1;
}

/* Responsive hero background images */
@media (max-width: 768px) {
  .hero-background-pexels::before {
    background-attachment: scroll;
  }
}

/* Responsive adjustments for stock images */
@media (max-width: 768px) {
  .hero-background::before {
    background-attachment: scroll;
  }

  .process-step-image {
    max-width: 100%;
    height: 180px;
  }

  .why-choose-image {
    max-width: 100%;
    height: 200px;
  }
}

/* Service Images Showcase */
.service-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.service-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-showcase-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-image-container:hover .service-showcase-image {
  transform: scale(1.05);
}

.service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px;
  transform: translateY(0);
  transition: background 0.3s ease;
}

.service-image-container:hover .service-image-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.service-image-overlay h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
}

.service-image-overlay p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .process-step-image {
    height: 150px;
  }

  .why-choose-image {
    height: 180px;
  }

  .service-images-grid {
    grid-template-columns: 1fr;
  }

  .service-showcase-image {
    height: 200px;
  }
}

/* Pexels Attribution */
.pexels-attribution {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}

.pexels-attribution a {
  color: inherit;
  text-decoration: underline;
}

/* Universal Card Hover Effects */
.card-hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Subtle Card Hover Effect (for lighter cards) */
.card-hover-subtle {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-subtle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Enhanced Card Hover Effect (for important cards) */
.card-hover-enhanced {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Ensure icons inside primary (pink) buttons are white */
.btn-primary i,
.btn-primary .icon {
  color: var(--white) !important;
}

/* Desktop header CTA icon color */
.desktop-header-cta-button i,
.desktop-header-cta-button .icon {
  color: var(--white);
}

/* Top header pink button icon should be white */
.top-header-email i,
.top-header-email .icon {
  color: var(--white) !important;
}