/* Pricing Template Styles */
:root { 
  --brand-blue: #1b50b3; 
  --brand-sky: #52ade5; 
  --ink: #1f2a44; 
  --muted: #6b7280; 
  --bg: #f6f8fb; 
  --success: #10b981;
  --white: #ffffff;
  --yellow: #f4d03f;
  --light-gray: #f8f9fa;
}

/* Hero Section */
.pricing-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-sky) 100%);
  padding: 100px 20px;
  color: white;
}

.pricing-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  justify-items: center;
  text-align: center;
}

.pricing-content {
  max-width: 700px;
}

.pricing-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: white;
}

.pricing-content p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px 0;
  color: rgba(255, 255, 255, 0.95);
}

/* Pricing Highlights */
.pricing-highlights {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.pricing-highlights .highlight-item svg {
  color: white;
  flex-shrink: 0;
}

.pricing-highlights .highlight-item span {
  font-size: 15px;
  font-weight: 600;
  color: white;
}

/* CTA Button */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--brand-blue);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-contact .arrow {
  transition: transform 0.3s ease;
}

.btn-contact:hover .arrow {
  transform: translateX(4px);
}

/* Pricing Services Section */
.pricing-services {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--light-gray);
  padding: 40px 20px 80px;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
  margin-bottom: 24px;
}

.card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.includes-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features List */
.card-features {
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  color: var(--brand-sky);
  flex-shrink: 0;
  border: 1px solid var(--brand-sky);
  border-radius: 4px;
  width: 24px;
  height: 24px;
}

.feature-item span {
  color: var(--ink);
  font-weight: 500;
}

/* Pricing Footer */
.pricing-footer {
  background: var(--brand-sky);
  margin: 0 -24px -24px;
  padding: 20px 24px;
  border-radius: 0 0 12px 12px;
  text-align: center;
}

.service-type {
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  font-weight: 500;
  color: white;
}

/* Primary Button Styles (reused from airbnb template) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-sky);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.btn-primary:hover {
  background: #3ba3d9;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(82, 173, 229, 0.3);
}

.btn-primary .arrow {
  transition: all 0.3s ease;
  transform: translateX(0px);
}

.btn-primary:hover .arrow {
  transform: translateX(10px);
}

/* Custom Plan Section */
.custom-plan-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: white;
  padding: 80px 20px 0;
}

.custom-plan-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.custom-plan-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.custom-plan-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.custom-plan-header p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.custom-plan-content {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 48px 24px;
  border: 1px solid #e5e7eb;
  margin-bottom: 60px;
}

.plan-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.feature-column h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px 0;
}

.column-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-column .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.feature-column .check-icon {
  color:  var(--brand-sky);
  background: transparent;
  border-radius: 4px;
  padding: 2px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0;
  border: 1px solid var(--brand-sky);
}

.feature-column .feature-item span {
  color: var(--ink);
  font-weight: 500;
}

.custom-plan-cta {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.btn-custom-plan {
  display: inline-block;
  background: var(--brand-sky);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-custom-plan:hover {
  background: var(--brand-sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .pricing-content h1 {
    font-size: 40px;
  }
  
  .pricing-highlights {
    gap: 20px;
  }
  
  .plan-features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .custom-plan-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 60px 20px;
  }
  
  .pricing-services {
    padding: 40px 20px 60px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-content h1 {
    font-size: 36px;
  }
  
  .pricing-content p {
    font-size: 16px;
  }
  
  .pricing-highlights {
    gap: 16px;
  }
  
  .pricing-highlights .highlight-item {
    padding: 10px 16px;
  }
  
  .btn-contact {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .pricing-card {
    padding: 24px 20px 20px;
  }
  
  .pricing-footer {
    margin: 0 -20px -20px;
    padding: 16px 20px;
  }
  
  .custom-plan-section {
    padding: 60px 20px;
  }
  
  .custom-plan-content {
    padding: 32px 24px;
  }
  
  .custom-plan-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding: 40px 20px;
  }
  
  .pricing-content h1 {
    font-size: 32px;
  }
  
  .pricing-highlights {
    flex-direction: column;
    gap: 12px;
  }
  
  .pricing-highlights .highlight-item {
    width: 100%;
  }
  
  .btn-contact {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  
  .pricing-card {
    padding: 20px 16px 16px;
  }
  
  .pricing-footer {
    margin: 0 -16px -16px;
    padding: 16px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .custom-plan-content {
    padding: 24px 20px;
  }
  
  .custom-plan-header h2 {
    font-size: 28px;
  }
}
