.res-pricing-v2 {
  background: #fdfdfd;
  padding-bottom: 5rem;
  font-family: 'Inter', sans-serif;
}

.max-1400 {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 2rem;
}

main#main-content {
  max-width: 100% !important;
}

/* Hero */
.res-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(to bottom, #f0f7ff, #ffffff);
}

.hero-text-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.premium-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.res-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.gradient-blue {
  background: linear-gradient(135deg, #2563eb, #0d9488);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
}

/* Info Bar */
.info-bar-wrapper {
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.info-bar {
  background: white;
  border-radius: 16px;
  box-shadow: none;
  display: flex;
  padding: 1.25rem 2.5rem;
  gap: 2rem;
  border: 1px solid #f1f5f9;
}

.info-item {
  flex: 1;
  display: flex;
  align-items: center; gap: 1.25rem;
}

.info-item i, .info-item svg {
  width: 24px;
  height: 24px;
  color: #2563eb;
}

.info-content strong {
  display: block;
  color: #1e293b;
  font-size: 1rem;
}

.info-content span {
  color: #64748b;
  font-size: 0.85rem;
}

.info-divider {
  width: 1px;
  background: #f1f5f9;
}

/* Service Selector - Compact like Commercial */
.service-selector-section {
  padding: 2rem 0 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-shadow: none;
}

.service-card:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
}

.service-card.active {
  border-color: #2563eb;
  background: #f0f7ff;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #2563eb;
  transition: 0.3s;
}

.card-icon i, .card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card.active .card-icon {
  background: #2563eb;
  color: white;
}

.service-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0;
  color: #1e293b;
}

/* Pricing Content */
.pricing-content-hub {
  padding: 2rem 0 6rem;
}

.pricing-panel {
  display: none;
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 32px;
  padding: 4rem;
  box-shadow: none;
}

.pricing-panel.active {
  display: block;
  animation: resPricingFadeIn 0.5s ease;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.header-main h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.header-main p {
  font-size: 1.1rem;
  color: #64748b;
}

.tab-toggle {
  display: flex;
  background: #f1f5f9;
  padding: 0.4rem;
  border-radius: 14px;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #64748b;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: white;
  color: #2563eb;
  box-shadow: none;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
  transition: 0.2s;
}

.price-row:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.item-info strong {
  font-size: 1.1rem;
  color: #1e293b;
}

.item-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2563eb;
}

/* Layout with Scrolling Right Side */
.grid-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4rem;
  align-items: start;
}

.category-main {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}

.category-main::-webkit-scrollbar {
  width: 6px;
}

.category-main::-webkit-scrollbar-thumb {
  background-color: #e2e8f0;
  border-radius: 10px;
}

.category-sidebar {
  position: sticky;
  top: 2rem;
}

.cat-link {
  display: block;
  padding: 1rem 0;
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid #f1f5f9;
  transition: 0.3s;
}

.cat-link:hover {
  color: #2563eb;
  padding-left: 0.5rem;
}

.category-block {
  margin-bottom: 4rem;
}

.category-block h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #f1f5f9;
  color: #1e293b;
}

/* Wash Layout Specifics */
.wash-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.main-prices {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 1.5rem;
}

/* Bundles */
.bundle-box {
  background: #0f172a;
  color: white;
  border-radius: 24px;
  padding: 2.5rem;
}

.bundle-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #38bdf8;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.bundle-box h3 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.bundle-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bundle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
}

.new-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #38bdf8;
}

.bundle-highlight {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.bundle-highlight .item-price {
  color: #16a34a;
}

/* About Service */
.tab-content { display: none; }
.tab-content.active { display: block; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 24px;
}

.about-card i, .about-card svg {
  color: #2563eb;
  margin-bottom: 1.5rem;
  width: 32px;
  height: 32px;
}

.about-card h4 {
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.about-card ul, .about-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Panel CTA */
.panel-cta {
  margin-top: 4rem;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid #f1f5f9;
}

.order-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: none;
  width: auto;
  max-width: none;
  text-decoration: none;
}

.order-btn:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

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

/* Responsive */
@media (max-width: 1200px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-layout { grid-template-columns: 1fr; }
  .category-sidebar { display: none; }
  .category-main, .main-prices { max-height: none; overflow: visible; padding-right: 0; }
}

@media (max-width: 992px) {
  .info-bar { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .info-divider { display: none; }
  .wash-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .pricing-panel { padding: 2.5rem 1.5rem; }
  .panel-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .max-1400 { padding: 0 1rem; }
  .hero-text-center h1 { font-size: 2.25rem; }
  .order-btn { width: 100%; }
}
