/* ==========================================
   AESTHETICS PAGES - MINIMAL ADDITIONS
   Only styles not covered by main.css
   ========================================== */

/* Quick Nav Chips */
.aes-quick-nav {
  padding: 20px 0;
  background: var(--navy-light);
  border-bottom: 1px solid var(--white-10);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}

.aes-quick-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.aes-nav-chip {
  padding: 10px 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white-70);
  transition: all var(--transition);
}

.aes-nav-chip:hover {
  background: var(--teal-dim);
  border-color: var(--teal);
  color: var(--teal);
}

/* Two Column Content */
.aes-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .aes-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  
  .aes-two-col.reverse {
    direction: rtl;
  }
  
  .aes-two-col.reverse > * {
    direction: ltr;
  }
}

.aes-two-col-text p {
  font-size: 1.0625rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 16px;
}

.aes-two-col-text p.muted {
  font-size: 0.9375rem;
  color: var(--white-50);
}

.aes-two-col-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-10);
}

/* Info Cards (inline with text) */
.aes-info-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 20px 0;
}

.aes-info-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.aes-info-card h4 svg {
  color: var(--teal);
  flex-shrink: 0;
}

.aes-info-card p {
  font-size: 0.9375rem;
  color: var(--white-70);
  margin: 0;
  line-height: 1.6;
}

/* Timeline Section */
.aes-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.aes-timeline-card {
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.aes-timeline-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.aes-timeline-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--teal-dim);
  border: 2px solid var(--teal);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 16px;
}

.aes-timeline-card h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.aes-timeline-card p {
  font-size: 0.9375rem;
  color: var(--white-70);
  margin: 0;
}

/* Tip Box */
.aes-tip-box {
  display: flex;
  gap: 16px;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.aes-tip-box > svg {
  color: var(--teal);
  flex-shrink: 0;
}

.aes-tip-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.aes-tip-box p {
  font-size: 0.9375rem;
  color: var(--white-70);
  margin: 0;
}

/* Pricing Table (Morpheus8) */
.aes-pricing-table-wrap {
  overflow-x: auto;
  margin: 40px -24px 0;
  padding: 0 24px;
}

.aes-pricing-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--white-05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-10);
}

.aes-pricing-table th,
.aes-pricing-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--white-05);
}

.aes-pricing-table thead th {
  background: rgba(255,255,255,0.03);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-50);
  border-bottom: 1px solid var(--white-10);
}

.aes-pricing-table tbody tr:hover {
  background: var(--white-05);
}

.aes-pricing-table td strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.aes-table-sub {
  display: block;
  font-size: 0.8125rem;
  color: var(--white-50);
  margin-top: 4px;
}

.aes-table-per {
  font-size: 0.8125rem;
  color: var(--white-50);
  margin-left: 4px;
}

.aes-savings-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.3);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal);
}

/* Before/After Gallery */
.aes-gallery {
  margin-top: 60px;
  text-align: center;
}

.aes-gallery > h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.aes-gallery-sub {
  font-size: 0.9375rem;
  color: var(--white-50);
  margin-bottom: 32px;
}

.aes-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.aes-gallery-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.aes-gallery-card:hover {
  border-color: var(--white-20);
  transform: translateY(-4px);
}

.aes-gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--navy-lighter);
}

.aes-gallery-info {
  padding: 20px;
  text-align: left;
}

.aes-gallery-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.aes-gallery-info p {
  font-size: 0.875rem;
  color: var(--white-70);
  margin: 0;
}

.aes-gallery-disclaimer {
  font-size: 0.8125rem;
  color: var(--white-50);
  font-style: italic;
}

/* Location Card (single) */
.aes-location-card {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (min-width: 768px) {
  .aes-location-card {
    grid-template-columns: 1fr 1fr;
  }
}

.aes-location-info {
  padding: 40px;
}

.aes-location-info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.aes-location-meta p {
  font-size: 0.9375rem;
  color: var(--white-70);
  margin-bottom: 12px;
}

.aes-location-meta a {
  color: var(--teal);
}

.aes-location-meta a:hover {
  text-decoration: underline;
}

.aes-location-info .btn {
  margin-top: 24px;
}

.aes-location-map {
  min-height: 300px;
  background: var(--navy-lighter);
}

.aes-location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  filter: saturate(0.85) brightness(0.92);
}

.aes-serving-areas {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--white-05);
  border-radius: var(--radius-md);
}

.aes-serving-areas h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.aes-serving-areas p {
  font-size: 0.9375rem;
  color: var(--white-70);
  margin: 0;
}

/* FAQ with details/summary */
.aes-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.aes-faq-item {
  border-bottom: 1px solid var(--white-10);
}

.aes-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}

.aes-faq-item summary::-webkit-details-marker {
  display: none;
}

.aes-faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--teal);
  transition: transform var(--transition);
}

.aes-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.aes-faq-item summary:hover {
  color: var(--teal);
}

.aes-faq-item p {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  color: var(--white-70);
  line-height: 1.75;
}

/* CTA Location Line */
.cta-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: var(--white-50);
}

.cta-location svg {
  color: var(--teal);
}

/* Treatment Cards (for overview page) */
.aes-treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .aes-treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aes-treatment-card {
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}

.aes-treatment-card:hover {
  border-color: var(--white-20);
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.aes-treatment-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.aes-treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aes-treatment-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
}

.aes-treatment-badge.featured {
  background: var(--pink);
  color: var(--white);
}

.aes-treatment-content {
  padding: 32px;
}

.aes-treatment-header h3 {
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.aes-treatment-type {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
}

.aes-treatment-type.pink {
  color: var(--pink);
}

.aes-treatment-desc {
  font-size: 0.9375rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 20px;
}

.aes-treatment-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.aes-treatment-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--white-70);
}

.aes-treatment-benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

.aes-treatment-benefits.pink li svg {
  color: var(--pink);
}

.aes-treatment-pricing {
  padding: 20px;
  background: var(--white-05);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.aes-price-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.aes-price-label {
  font-size: 0.8125rem;
  color: var(--white-50);
}

.aes-price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.aes-member-discount {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 8px;
}

.aes-member-discount.teal {
  color: var(--teal);
}

.aes-member-discount.pink {
  color: var(--pink);
}

.aes-treatment-cta {
  display: flex;
  gap: 12px;
}

.aes-treatment-cta .btn {
  flex: 1;
  padding: 14px 20px;
}

/* Why Cards (for overview page) */
.aes-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.aes-why-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.aes-why-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.aes-why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.25);
  border-radius: var(--radius-md);
}

.aes-why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.aes-why-icon.pink {
  background: var(--pink-dim);
  border-color: rgba(237, 110, 160, 0.25);
}

.aes-why-icon.pink svg {
  color: var(--pink);
}

.aes-why-card h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.aes-why-card p {
  font-size: 0.9375rem;
  color: var(--white-70);
  margin: 0;
}

/* Highlight Variants */
.highlight-teal {
  color: var(--teal);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .aes-quick-nav {
    padding: 16px 0;
  }
  
  .aes-nav-chip {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
  
  .aes-treatment-benefits {
    grid-template-columns: 1fr;
  }
  
  .aes-treatment-cta {
    flex-direction: column;
  }
  
  .aes-tip-box {
    flex-direction: column;
    text-align: center;
  }
  
  .aes-location-info {
    padding: 28px;
  }
}
