/* ===============================
   Color Palette (CSS Variables)
================================= */
:root {
  --color-primary: #0d6efd;
  --color-primary-dark: #0b5ed7;
  --color-primary-subtle: #cfe2ff;
  --color-primary-subtle-text: #084298;
  --color-yellow-500: #eab308;
  --color-yellow-600: #d97706;
  --color-green-dark: #2e7d32;
  --color-green-darker: #1b5e20;
  --color-brown-dark: #5d4037;
  --color-brown-medium: #795548;
  --color-gray-light: #f8f9fa;
  --color-gray-medium: #6c757d;
  --color-shadow-light: rgba(0, 0, 0, 0.075);
  --color-shadow-medium: rgba(0, 0, 0, 0.15);
  --color-shadow-dark: rgba(0, 0, 0, 0.175);
  --color-white: #fff;
  --color-black-transparent: rgba(0, 0, 0, 0.4);
  --color-blue-rgba: rgba(13, 110, 253, 0.9);
  --color-blue-rgba-light: rgba(13, 110, 253, 0.2);
}

/* ===============================
   Typography
================================= */
html, body {
  overflow-x: hidden;
}

h1 {
  font-size: 2rem;
}

.pc-body {
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}

.pc-heading {
  font-family: 'Playfair Display', serif;
}

.pc-fw-medium {
  font-weight: 500;
}

.pc-fw-bold {
  font-weight: 700;
}

.pc-text-center {
  text-align: center;
}

.pc-text-primary {
  color: var(--color-primary);
}

.pc-text-primary-subtle {
  color: var(--color-primary-subtle-text);
}

.pc-text-secondary {
  color: var(--color-gray-medium);
}

.pc-text-white {
  color: var(--color-white);
}

/* Font sizes */
.pc-fs-1 {
  font-size: 2.5rem;
}

.pc-fs-4 {
  font-size: 1.5rem;
}

.pc-fs-5 {
  font-size: 1.25rem;
}

.pc-display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.pc-display-5 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

/* ===============================
   Layout Utilities
================================= */
.pc-container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.pc-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.pc-col {
  position: relative;
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .pc-col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .pc-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pc-col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

@media (min-width: 992px) {
  .pc-col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* Spacing Utilities */
.pc-mb-1 { margin-bottom: 0.25rem; }
.pc-mb-2 { margin-bottom: 0.5rem; }
.pc-mb-3 { margin-bottom: 1rem; }
.pc-mb-4 { margin-bottom: 1.5rem; }
.pc-mb-5 { margin-bottom: 3rem; }

.pc-mt-2 { margin-top: 0.5rem; }
.pc-mt-3 { margin-top: 1rem; }
.pc-mt-4 { margin-top: 1.5rem; }
.pc-mt-5 { margin-top: 3rem; }

.pc-ms-1 { margin-left: 0.25rem; }
.pc-ms-2 { margin-left: 0.5rem; }
.pc-ms-3 { margin-left: 1rem; }

.pc-me-2 { margin-right: 0.5rem; }
.pc-me-3 { margin-right: 1rem; }

.pc-p-2 { padding: 0.5rem; }
.pc-p-4 { padding: 1.5rem; }
.pc-p-5 { padding: 3rem; }

.pc-py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.pc-py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.pc-py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.pc-py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.pc-px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Flex Utilities */
.pc-d-flex { display: flex; }
.pc-flex-column { flex-direction: column; }
.pc-align-items-center { align-items: center; }
.pc-justify-content-center { justify-content: center; }
.pc-gap-3 { gap: 1rem; }

/* Width & Height */
.pc-w-100 { width: 100%; }
.pc-h-100 { height: 100%; }

/* Border Radius */
.pc-rounded { border-radius: 0.375rem; }
.pc-rounded-circle { border-radius: 50%; }

/* Shadows */
.pc-shadow-sm {
  box-shadow: 0 0.125rem 0.25rem var(--color-shadow-light);
}
.pc-shadow-lg {
  box-shadow: 0 1rem 3rem var(--color-shadow-dark);
}
.pc-hover-shadow-lg {
  transition: box-shadow 0.3s ease;
}
.pc-hover-shadow-lg:hover {
  box-shadow: 0 1rem 3rem var(--color-shadow-dark) !important;
}

/* Position */
.pc-position-relative { position: relative; }
.pc-position-absolute { position: absolute; }

/* Overflow */
.pc-overflow-hidden { overflow: hidden; }

/* ===============================
   Background Colors
================================= */
.pc-bg-white { background-color: var(--color-white); }
.pc-bg-light, .pc-bg-light-gray { background-color: var(--color-gray-light); }
.pc-bg-primary, .pc-bg-blue { background-color: var(--color-primary); }
.pc-bg-primary-subtle { background-color: var(--color-primary-subtle); }

/* ===============================
   Buttons
================================= */
.pc-btn-primary {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.pc-btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.pc-btn-outline-primary {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pc-btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ===============================
   Cards
================================= */
.pc-card {
  border: none;
  border-radius: 0.375rem;
  box-shadow: 0 0.125rem 0.25rem var(--color-shadow-light);
  transition: box-shadow 0.3s ease;
  height: 100%;
}
.pc-card:hover {
  box-shadow: 0 0.5rem 1rem var(--color-shadow-medium);
}
.pc-card-body {
  padding: 1.5rem;
}

/* ===============================
   Price Beat Article Styles
================================= */
.price-beat-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.price-beat-article {
  background: #FFE468;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  border: 1px solid #e6cd5e;
}

.price-beat-header {
  text-align: center;
  margin-bottom: 30px;
}

.price-beat-header h2 {
  font-size: 28px;
  color: var(--color-brown-dark);
  margin-bottom: 10px;
}

.price-beat-header p {
  font-size: 18px;
  color: var(--color-brown-medium);
  font-weight: 500;
}

.price-beat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .price-beat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.price-beat-card,
.price-beat-note,
.price-beat-process,
.price-beat-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.price-beat-visible {
  opacity: 1;
  transform: translateY(0);
}

.price-beat-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e6cd5e;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-beat-icon {
  font-size: 40px;
  color: var(--color-green-dark);
  margin-bottom: 15px;
}

.price-beat-card h3 {
  font-size: 20px;
  color: var(--color-brown-dark);
  margin-bottom: 12px;
}

.price-beat-card p {
  text-align: center;
  color: #555;
  margin: 0;
}

.price-beat-process {
  background-color: var(--color-brown-dark);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin-bottom: 30px;
  color: var(--color-white) !important;
}

.price-beat-process h3,
.price-beat-process ol,
.price-beat-process li {
  color: var(--color-white) !important;
}

.price-beat-process h3 {
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.price-beat-process i {
  margin-right: 12px;
  color: #8bc34a;
}

.price-beat-process ol {
  padding-left: 25px;
  margin: 0;
}

.price-beat-process li {
  margin-bottom: 8px;
}

.price-beat-note {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e6cd5e;
  display: flex;
  align-items: flex-start;
}

.price-beat-note-icon {
  font-size: 30px;
  color: var(--color-green-dark);
  margin-right: 15px;
  flex-shrink: 0;
}

.price-beat-note-content h3 {
  font-size: 20px;
  color: var(--color-brown-dark);
  margin: 0 0 10px 0;
}

.price-beat-note-content p {
  color: #555;
  margin: 0;
}

.price-beat-cta {
  margin-top: 30px;
  text-align: center;
}

.price-beat-button {
  display: inline-block;
  background-color: var(--color-green-dark);
  color: var(--color-white) !important;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.price-beat-button:hover {
  background-color: var(--color-green-darker);
  color: var(--color-white) !important;
  text-decoration: none;
}

.price-beat-button i {
  margin-right: 8px;
}

/* ===============================
   Hero Section
================================= */
.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section img.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.content-box {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px 30px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.tagline {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 32px;
}

.cta-button {
  background-color: #eab308; /* yellow-500 */
  color: #1a202c; /* gray-900 */
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 9999px;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #d97706; /* yellow-600 */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===============================
   Animations & Effects
================================= */
.pc-animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.pc-animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.pc-animate-pulse {
  animation: pc-pulse 2s infinite;
}
@keyframes pc-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

.pc-floating {
  animation: pc-floating 3s ease-in-out infinite;
}
@keyframes pc-floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.pc-rotating {
  animation: pc-rotating 10s linear infinite;
}
@keyframes pc-rotating {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pc-review-card {
  transition: transform 0.3s ease;
}
.pc-review-card:hover {
  transform: translateY(-10px);
}

/* ===============================
   Hero Section Styles
================================= */
.pc-hero-section {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, var(--color-gray-light), #e9ecef);
  overflow: hidden;
  position: relative;
}

/* ===============================
   Paint Drop Animation
================================= */
.pc-paint-drop {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  animation: pc-paint-drop 3s infinite ease-in;
  opacity: 0.8;
}

@keyframes pc-paint-drop {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(100px) scale(0);
    opacity: 0;
  }
}

/* Paint splash animation */
.pc-paint-splash {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--color-blue-rgba-light);
  transform: scale(0);
  animation: pc-paint-splash 6s infinite;
}

@keyframes pc-paint-splash {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* Brush stroke animation */
.pc-brush-stroke {
  position: absolute;
  height: 4px;
  background-color: var(--color-primary);
  transform-origin: left;
  animation: pc-brush-stroke 4s infinite;
}

@keyframes pc-brush-stroke {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

/* ===============================
   Carousel Styles
================================= */
.pc-carousel {
  scroll-behavior: smooth;
}

.pc-carousel-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.pc-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-custom-carousel-control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125rem 0.25rem var(--color-shadow-light);
}

.pc-custom-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #dee2e6;
  margin: 0 0.25rem;
  cursor: pointer;
}

.pc-custom-carousel-dot.active {
  background-color: var(--color-primary);
}

/* ===============================
   Navigation Link Hover Effect
================================= */
.pc-nav-link {
  position: relative;
}

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

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