/* ══ INNER PAGES — shared styles ════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Page hero (shared) */
.page-hero {
  position: relative;
  padding: 5rem 0 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ph-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ph-orb-1 {
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 184, 212, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -80px;
}

.ph-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 42, 0.07) 0%, transparent 70%);
  bottom: -60px;
  left: 10%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.page-hero-content h1 {
  margin: 0.4rem 0 1rem;
}

.page-hero-desc {
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.8;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header-center h2 {
  margin-top: 0.5rem;
}

/* Cat tabs (shared with services) */
.cat-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cat-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--mist);
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-fast);
}

.cat-tab:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cat-tab.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ══ PRICING ══════════════════════════════════════════════════════ */
.pricing-section {
  padding: 4rem 0 5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.price-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform var(--t-mid), border-color var(--t-mid);
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: rgba(212, 168, 42, 0.4);
  background: rgba(212, 168, 42, 0.04);
}

.price-card.featured:hover {
  border-color: var(--gold);
}

.price-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.price-tier {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.price-amount {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-amount sup {
  font-size: 1.3rem;
  vertical-align: top;
  margin-top: 0.5rem;
}

.price-period {
  font-size: 0.82rem;
  color: var(--mist);
  margin-bottom: 1rem;
}

.price-desc {
  font-size: 0.87rem;
  color: var(--mist);
  line-height: 1.75;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.price-features li {
  font-size: 0.87rem;
  color: var(--fog);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.price-btn {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  text-align: center;
}

.pricing-note p {
  color: var(--mist);
  font-size: 0.92rem;
  line-height: 1.8;
}

.pricing-note strong {
  color: var(--gold);
  font-family: var(--ff-display);
}

/* FAQ */
.faq-section {
  padding: 4rem 0 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--fog);
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--t-fast);
}

.faq-q:hover {
  color: var(--white);
}

.faq-q .faq-caret {
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform var(--t-mid);
  flex-shrink: 0;
}

.faq-item.open .faq-caret {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out), padding var(--t-mid);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.8;
}

/* ══ GALLERY ══════════════════════════════════════════════════════ */
.gallery-section {
  padding: 3rem 0 6rem;
}

.gallery-masonry {
  columns: 3;
  column-gap: 12px;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform var(--t-mid), border-color var(--t-mid);
  display: block;
  position: relative;
}

.gallery-card:hover {
  transform: scale(1.02);
  border-color: rgba(212, 168, 42, 0.25);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.gallery-big .gallery-visual {
  padding: 5rem 1rem;
}

.gallery-emoji {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 12px rgba(26, 184, 212, 0.3));
}

.gallery-big .gallery-emoji {
  font-size: 5rem;
}

.gallery-label {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-align: center;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-mid);
  padding: 1.5rem;
}

.gallery-overlay-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  text-align: center;
}

.gallery-overlay-cat {
  font-size: 0.78rem;
  color: var(--mist);
  text-align: center;
}

/* ══ ABOUT ════════════════════════════════════════════════════════ */
.about-story {
  padding: 5rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.about-logo-frame {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.about-logo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(26, 184, 212, 0.08) 0%, transparent 70%);
}

.about-logo-frame img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(26, 184, 212, 0.4));
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-year {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  width: 44px;
}

.timeline-text {
  font-size: 0.83rem;
  color: var(--mist);
  line-height: 1.65;
}

.about-story-text {}

.about-story-text h2 {
  margin: 0.5rem 0 1.5rem;
}

.about-para {
  font-size: 0.97rem;
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.values-section {
  padding: 5rem 0;
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  transition: border-color var(--t-mid);
  text-align: center;
}

.value-card:hover {
  border-color: rgba(212, 168, 42, 0.25);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-title {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.7;
}

.team-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-mid);
  text-align: center;
  padding-bottom: 1.5rem;
}

.team-card:hover {
  border-color: rgba(212, 168, 42, 0.2);
}

.team-avatar {
  height: 120px;
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.team-name {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.25rem 1rem 0.25rem;
}

.team-role {
  font-size: 0.78rem;
  color: var(--mist);
  padding: 0 1rem;
}

/* ══ CONTACT ══════════════════════════════════════════════════════ */
.contact-section {
  padding: 4rem 0 6rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ci-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 42, 0.1);
  border: 1px solid rgba(212, 168, 42, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ci-label {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 4px;
}

.ci-val {
  font-size: 0.9rem;
  color: var(--fog);
}

.contact-map-placeholder {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner {
  text-align: center;
}

.map-pin {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.map-inner p {
  font-size: 0.88rem;
  color: var(--mist);
}

.contact-form-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

.contact-form-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-form-card>p {
  font-size: 0.88rem;
  color: var(--mist);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-full {
  grid-column: 1/-1;
}

/* ══ BOOKING ══════════════════════════════════════════════════════ */
.booking-section {
  padding: 3rem 0 6rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-sidebar {
  position: sticky;
  top: 130px;
}

.stepper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 2rem;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}

.stepper-step.active {
  background: rgba(212, 168, 42, 0.08);
}

.stepper-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--mist);
  flex-shrink: 0;
  transition: all var(--t-fast);
}

.stepper-step.active .stepper-num {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 42, 0.1);
}

.stepper-step.done .stepper-num {
  border-color: var(--cyan);
  color: var(--ink);
  background: var(--cyan);
}

.stepper-label {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mist);
  letter-spacing: 0.06em;
  transition: color var(--t-fast);
}

.stepper-step.active .stepper-label {
  color: var(--white);
}

.booking-help-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
}

.help-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.booking-help-card p {
  font-size: 0.82rem;
  color: var(--mist);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.btn-sm {
  padding: 8px 18px !important;
  font-size: 0.75rem !important;
}

.booking-main {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.booking-step-panel {
  display: none;
  padding: 2.5rem;
}

.booking-step-panel.active {
  display: block;
}

.step-panel-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cal-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Calendar widget styles */
.booking-cal {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.cal-nav-row {
  background: var(--ink-3);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cal-month-label {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.cal-nav-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--fog);
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}

.cal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.cal-day-names {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--ink-2);
}

.cal-day-names div {
  text-align: center;
  padding: 6px 0;
  font-family: var(--ff-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.cal-cell {
  text-align: center;
  padding: 7px 0;
  font-size: 0.82rem;
  color: var(--fog);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  border: 0.5px solid rgba(255, 255, 255, 0.03);
}

.cal-cell:hover:not(.empty):not(.past) {
  background: rgba(212, 168, 42, 0.1);
  color: var(--gold);
}

.cal-cell.today {
  color: var(--cyan);
  font-weight: 700;
}

.cal-cell.selected {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}

.cal-cell.empty,
.cal-cell.past {
  color: rgba(255, 255, 255, 0.18);
  cursor: default;
}

.time-picker-label {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  display: block;
  margin-bottom: 1rem;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.time-slot {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  padding: 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fog);
  cursor: pointer;
  transition: all var(--t-fast);
}

.time-slot:hover:not(.unavail) {
  border-color: var(--gold);
  color: var(--gold);
}

.time-slot.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.time-slot.unavail {
  color: rgba(255, 255, 255, 0.18);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.02);
}

/* Review card */
.review-card {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.review-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
}

.review-row:last-child {
  border-bottom: none;
}

.review-key {
  color: var(--mist);
}

.review-val {
  color: var(--fog);
  font-weight: 600;
  text-align: right;
  max-width: 260px;
}

.booking-policy {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Success */
.booking-success {
  text-align: center;
  padding: 4rem 2rem;
}

.success-anim {
  font-size: 5rem;
  display: block;
  margin-bottom: 1.5rem;
  animation: floatY 3s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(26, 184, 212, 0.5));
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.booking-success h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.booking-success p {
  color: var(--mist);
  margin-bottom: 2rem;
}

.booking-ref {
  background: rgba(212, 168, 42, 0.1);
  border: 1px solid rgba(212, 168, 42, 0.3);
  border-radius: var(--r-md);
  padding: 1rem 2rem;
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 2rem;
}

/* Responsive */
@media(max-width:1100px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .gallery-masonry {
    columns: 2;
  }
}

@media(max-width:900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

  .stepper {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cal-time-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:640px) {
  .gallery-masonry {
    columns: 1;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-full {
    grid-column: 1;
  }
}