/* ============================================
   LuxeGlow Salon – Reusable Components
   components.css  |  v2.0.2 (Responsive Enhanced)
   ============================================ */

.why-card.whyus-hidden {
  display: none;
}

.left-contact-col{
  margin-left: 1rem;
}

/* Optional: smooth transition when showing/hiding */
.why-card.whyus-show-animation {
  animation: cardFadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ── Offer Cards Hidden State ───────────────── */
.offer-card.offer-hidden {
    display: none;
}

/* Smooth animation when showing */
.offer-card.offer-show-animation {
    animation: cardFadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ── Service Cards ────────────────────────── */
.service-card {
  background: var(--grad-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-spring);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card.service-hidden {
  display: none;
}
.service-card.service-show-animation {
  animation: serviceFadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 20px 60px rgba(201, 169, 110, 0.15);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
  color: var(--clr-white);
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  flex: 1;
  margin-bottom: 1rem;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.service-price {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--clr-gold);
}
.service-duration {
  font-size: var(--fs-xs);
  color: var(--clr-gray-400);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Product Cards ────────────────────────── */
.product-card {
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-spring);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow-gold);
}
.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.product-card:hover .product-card-img img {
  transform: scale(1.1);
}
.product-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
}
.product-card-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--t-base) var(--ease-spring);
  z-index: 2;
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: none;
}
.product-action-btn {
  width: 36px;
  height: 36px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--t-fast);
  backdrop-filter: blur(8px);
}
.product-action-btn:hover {
  background: var(--clr-gold);
  color: var(--clr-black);
}
.product-card-body {
  padding: 1.2rem;
}
.product-card h3 {
  font-size: var(--fs-md);
  color: var(--clr-white);
  margin-bottom: 0.3rem;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.product-rating .stars {
  font-size: 0.75rem;
}
.product-rating span {
  font-size: 0.7rem;
  color: var(--clr-gray-400);
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product-price {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--clr-gold);
}
.product-price-old {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  text-decoration: line-through;
}
.product-add-btn {
  width: 100%;
  padding: 0.7rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--clr-gold);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-smooth);
}
.product-add-btn:hover {
  background: var(--clr-gold);
  color: var(--clr-black);
}

/* ── Testimonial Cards ────────────────────── */
.testimonial-card {
  background: var(--grad-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--t-base) var(--ease-spring);
}
.testimonial-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(201, 169, 110, 0.15);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-text {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 169, 110, 0.3);
}
.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--clr-black);
  flex-shrink: 0;
}
.testimonial-info h4 {
  font-size: var(--fs-md);
  color: var(--clr-white);
  margin-bottom: 0.15rem;
}
.testimonial-info span {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  letter-spacing: 0.1em;
}

/* ── Blog Cards ───────────────────────────── */
.blog-card {
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-spring);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: var(--shadow-gold);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-card-meta span {
  font-size: 0.7rem;
  color: var(--clr-gray-400);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-cat {
  background: rgba(201, 169, 110, 0.12);
  color: var(--clr-gold);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-card h3 {
  font-size: var(--fs-lg);
  color: var(--clr-white);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.blog-card p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  margin-bottom: 1rem;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: gap var(--t-base);
}
.blog-card:hover .blog-read-more {
  gap: 0.7rem;
}

/* ── Stat / Counter Cards ─────────────────── */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: var(--fs-5xl);
  color: var(--clr-gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Why Choose Us Cards ──────────────────── */
.why-card {
  background: var(--grad-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--t-base) var(--ease-spring);
}

.why-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

/* Updated: Removed round background from sticker icons */
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  /* No background, no border-radius */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base) var(--ease-spring);
}

/* Hover only scales the sticker, no background change */
.why-card:hover .why-icon {
  transform: scale(1.1);
}

/* Sticker image styling */
.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.why-card h3 {
  font-size: var(--fs-lg);
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
}

/* ── Offer/Promo Cards ────────────────────── */
.offer-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #1a0f0a 0%, #2a1510 100%);
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: all var(--t-base) var(--ease-spring);
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: var(--shadow-gold);
}
.offer-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: opacity var(--t-base);
}
.offer-card:hover .offer-card-bg {
  opacity: 0.45;
}
.offer-card-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  width: 100%;
}
.offer-badge {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--clr-black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.offer-card h3 {
  font-size: var(--fs-xl);
  color: var(--clr-white);
  margin-bottom: 0.4rem;
}
.offer-card p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}

/* ── Countdown Timer ──────────────────────── */
.countdown {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.countdown-unit {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 52px;
  backdrop-filter: blur(6px);
}
.countdown-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--clr-gold);
  line-height: 1;
}
.countdown-lbl {
  display: block;
  font-size: 0.55rem;
  color: var(--clr-gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ── Gallery Item ─────────────────────────── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: block;
  aspect-ratio: 4 / 3;
  height: auto !important;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 110, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-black);
  font-size: 1rem;
  transform: scale(0.7);
  transition: transform var(--t-base) var(--ease-spring);
}
.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* ── Lightbox ─────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base) var(--ease-smooth);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.lightbox-close:hover {
  background: var(--clr-gold);
  color: var(--clr-black);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.lightbox-prev {
  left: 1rem;
}
.lightbox-next {
  right: 1rem;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--clr-gold);
  color: var(--clr-black);
}

/* ── Team Cards ───────────────────────────── */
.team-card {
  text-align: center;
  transition:
    transform var(--t-base) var(--ease-spring),
    box-shadow var(--t-base);
  background: var(--grad-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow-gold);
}
.team-img-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.2rem;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(201, 169, 110, 0.3);
  transition: border-color var(--t-base);
}
.team-card:hover .team-img-wrap img {
  border-color: var(--clr-gold);
}
.team-card h3 {
  font-size: var(--fs-lg);
  color: var(--clr-white);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.team-experience {
  font-size: 0.8rem;
  color: var(--clr-gold);
  margin-top: 0.3rem;
}
.team-card.team-hidden {
  display: none;
}
.team-card.team-show-animation {
  animation: cardFadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.team-see-more-container {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ── Tabs ─────────────────────────────────── */
.tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}
.tab-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: transparent;
  color: var(--clr-gray-400);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-base);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--clr-gold);
  color: var(--clr-black);
  border-color: var(--clr-gold);
  font-weight: 600;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s var(--ease-out);
}

/* ── Booking Form ─────────────────────────── */
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  transition: all var(--t-base);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-control:focus {
  outline: none;
  border-color: var(--clr-gold);
  background: rgba(201, 169, 110, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}
select.form-control option {
  background: #1a1a1a;
  color: var(--clr-white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Toast Notification ───────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: var(--z-toast);
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-full);
  padding: 0.7rem 1.5rem;
  color: var(--clr-white);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.4s var(--ease-spring);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.toast.success {
  border-color: rgba(74, 222, 128, 0.3);
}
.toast.error {
  border-color: rgba(248, 113, 113, 0.3);
}
.toast-icon {
  color: var(--clr-gold);
}

/* ── See More Button Styles ───────────────── */
.btn-see-more {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid #333;
  border-radius: var(--radius-full);
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-see-more:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.15);
}
.btn-see-more:active {
  transform: translateY(0);
}
.btn-see-more i {
  transition: transform 0.3s ease;
}
.btn-see-more.loading i {
  animation: rotateIcon 1s linear infinite;
}

@keyframes rotateIcon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

/* ── Guarantee Grid ───────────────────────── */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.guarantee-card {
  background: var(--grad-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--t-base) var(--ease-spring);
}
.guarantee-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.guarantee-card .why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--clr-gold);
  transition: all var(--t-base) var(--ease-spring);
}
.guarantee-card:hover .why-icon {
  background: var(--clr-gold);
  color: var(--clr-black);
  transform: scale(1.1);
}
.guarantee-card h3 {
  font-size: var(--fs-lg);
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}
.guarantee-card p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
}
.guarantee-card.guarantee-hidden {
  display: none;
}
.guarantee-card.guarantee-show-animation {
  animation: cardFadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.guarantee-see-more-container {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ── Gallery Page Styles ──────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 3 / 4; /* taller cards — ~50px+ taller than 4/3 */
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.1) 60%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-bottom: 0;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-zoom-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-black);
  font-size: 1.2rem;
  transform: scale(0.7);
  transition: transform 0.3s var(--ease-spring);
  cursor: pointer;
  flex-shrink: 0;
}
.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}
.gallery-title {
  color: var(--clr-white);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1rem;
  cursor: pointer;
  background: rgba(201, 169, 110, 0.18);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.gallery-title:hover {
  background: rgba(201, 169, 110, 0.35);
  border-color: var(--clr-gold);
}
.gallery-item.gallery-hidden {
  display: none;
}
.gallery-see-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* ── Gallery Lightbox Modal (image + title popup) ── */
#gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
}
#gallery-modal.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}
#gallery-modal-inner {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #111;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}
#gallery-modal-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  background: #000;
}
#gallery-modal-title {
  padding: 1rem 1.25rem;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--clr-gold);
  text-align: center;
  letter-spacing: 0.05em;
  background: rgba(10, 8, 5, 0.95);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
#gallery-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
#gallery-modal-close:hover {
  background: var(--clr-gold);
  color: #000;
  border-color: var(--clr-gold);
}
@media (max-width: 600px) {
  #gallery-modal-inner {
    max-width: 100%;
  }
  #gallery-modal-img {
    max-height: 55vh;
  }
  #gallery-modal-title {
    font-size: var(--fs-md);
    padding: 0.75rem 1rem;
  }
}

/* ── Before & After Grid ──────────────────── */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ba-card {
  background: var(--grad-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-spring);
}
.ba-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow-gold);
}
.ba-card.ba-hidden {
  display: none;
}
.ba-card.ba-show-animation {
  animation: cardFadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
.ba-before,
.ba-after {
  position: relative;
  overflow: hidden;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.ba-before img {
  filter: grayscale(40%);
}
.ba-label {
  position: absolute;
  bottom: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}
.before-label {
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: #999;
}
.after-label {
  right: 0.75rem;
  background: var(--clr-gold);
  color: var(--clr-black);
}
.ba-content {
  padding: 1.25rem;
  text-align: center;
}
.ba-content h3 {
  font-size: var(--fs-md);
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}
.ba-content p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
}
.ba-see-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* ── Products Page ────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card.product-hidden {
  display: none;
}
.product-card.product-show-animation {
  animation: productFadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes productFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.products-see-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.product-search {
  position: relative;
  max-width: 400px;
  margin: 0 auto 2rem;
}
.product-search input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
}
.product-search input:focus {
  outline: none;
  border-color: var(--clr-gold);
}
.product-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-gray-400);
}

/* ── Blog Grid ────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card.blog-hidden {
  display: none;
}
.blog-card.blog-show-animation {
  animation: blogFadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes blogFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-see-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* ── Team Grid ────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  margin-bottom: 2rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1024px) {
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
  }
  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .before-after-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .guarantee-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .gallery-grid .gallery-item {
    aspect-ratio: 3 / 4;
  }
  .countdown-unit {
    min-width: 45px;
    padding: 0.4rem 0.6rem;
  }
  .countdown-num {
    font-size: 1.1rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .product-card-actions {
    opacity: 1;
    transform: none;
  } /* always visible on mobile */
  .product-action-btn {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .service-card-body {
    padding: 1rem;
  }
  .why-card,
  .guarantee-card {
    padding: 1.5rem 1rem;
  }
  .testimonial-text {
    font-size: var(--fs-sm);
  }
  .btn-see-more {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
  }
  .product-search {
    max-width: 100%;
  }
  .tabs .tab-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card.service-show-animation,
  .guarantee-card.guarantee-show-animation,
  .blog-card.blog-show-animation,
  .ba-card.ba-show-animation,
  .team-card.team-show-animation,
  .product-card.product-show-animation {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Services See More Button Spacing (override)
   ============================================ */
.services-see-more-container,
.guarantee-see-more-container,
.ba-see-more-container,
.team-see-more-container,
.products-see-more-container,
.blog-see-more-container {
  margin-top: 2.5rem !important;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================
   Service Card Text Truncation
   ============================================ */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* ensure consistent card height within grid */
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
  color: var(--clr-white);
  /* Truncate long titles */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.2em * 2); /* approximate 2 lines */
  line-height: 1.2;
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  flex: 1;
  margin-bottom: 1rem;
  /* Truncate long descriptions */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  min-height: calc(1.5em * 3);
}

/* Ensure footer stays at bottom */
.service-card-footer {
  margin-top: auto;
}

/* ============================================
   Booking Page - Complete Mobile Fix
   ============================================ */

/* Booking Main Layout */
.booking-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* Hero Section */
.booking-hero {
  padding: 12rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.booking-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.booking-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 3, 1, 0.92), rgba(10, 6, 2, 0.8));
}

.booking-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Booking Success */
.booking-success {
  background: linear-gradient(135deg, #0a1a0a, #0d1f0d);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
}

.booking-success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.booking-success-title {
  font-size: var(--fs-3xl);
  color: #4ade80;
  margin-bottom: 0.75rem;
}

.booking-success-ref {
  display: inline-block;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-success-ref span {
  font-size: 0.7rem;
  color: #4ade80;
  letter-spacing: 0.2em;
}

.booking-success-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.booking-success-table {
  width: 100%;
  border-collapse: collapse;
}

.booking-success-table td {
  padding: 0.5rem 0;
  color: var(--clr-gray-400);
  font-size: 0.82rem;
}

.booking-success-table td:first-child {
  width: 35%;
}

.booking-success-table td:last-child {
  color: var(--clr-white);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Booking Steps */
.booking-steps {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  counter-reset: step;
  flex-wrap: wrap;
  justify-content: center;
}

.booking-step {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 80px;
}

.booking-step::after {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 60%;
  width: 80%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.booking-step:last-child::after {
  display: none;
}

.booking-step.active .step-num {
  background: var(--clr-gold);
  color: var(--clr-black);
}

.booking-step.done .step-num {
  background: rgba(201, 169, 110, 0.3);
  color: var(--clr-gold);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 auto 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all var(--t-base);
}

.step-label {
  font-size: 0.65rem;
  color: var(--clr-gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Booking Form Actions */
.booking-form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-form-actions .btn {
  flex: 1;
  justify-content: center;
}

/* Sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

/* Popular Services */
.popular-services {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.popular-services h4 {
  font-size: var(--fs-sm);
  color: var(--clr-gold);
  margin-bottom: 1rem;
}

.popular-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

.popular-service-name {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.popular-service-name::before {
  content: "✦";
  color: var(--clr-gold);
}

.popular-service-price {
  color: var(--clr-gold);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .booking-main-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .booking-sidebar {
    position: relative !important;
    top: 0 !important;
  }

  .booking-steps {
    gap: 0.5rem;
  }

  .step-label {
    font-size: 0.6rem;
  }

  .step-num {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hero */
  .booking-hero {
    padding: 8rem 0 3rem !important;
  }

  .booking-hero .section-title {
    font-size: var(--fs-3xl) !important;
  }

  /* Steps - hide labels on mobile, show only numbers */
  .booking-steps {
    justify-content: center;
    gap: 0.75rem;
  }

  .step-label {
    display: none;
  }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 0;
  }

  .booking-step {
    min-width: auto;
    flex: none;
  }

  .booking-step::after {
    display: none !important;
  }

  /* Form Card */
  .booking-card {
    padding: 1.5rem;
  }

  .booking-card h3 {
    font-size: var(--fs-lg) !important;
    margin-bottom: 1rem !important;
  }

  /* Form Layout */
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .form-row .form-group {
    width: 100%;
  }

  /* Full width buttons */
  .booking-step-panel .btn,
  .booking-step-panel .btn-gold,
  .booking-step-panel .btn-dark {
    width: 100%;
    justify-content: center;
  }

  .booking-form-actions {
    flex-direction: column;
  }

  .booking-form-actions .btn {
    width: 100%;
    margin: 0.25rem 0;
  }

  /* Sidebar Images */
  .booking-sidebar .glass-gold img {
    height: 140px !important;
  }

  .booking-sidebar .glass-gold > div {
    padding: 1.25rem !important;
  }

  /* Success State */
  .booking-success {
    padding: 1.5rem !important;
  }

  .booking-success-title {
    font-size: var(--fs-2xl) !important;
  }

  .booking-success-table tr {
    display: block;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .booking-success-table td {
    display: block;
    width: 100% !important;
    padding: 0.3rem 0 !important;
  }

  .booking-success-table td:first-child {
    font-size: 0.7rem;
  }

  .booking-success-table td:last-child {
    font-size: 0.85rem;
  }

  /* Touch targets */
  .booking-step-panel .btn,
  .booking-step-panel select,
  .booking-step-panel input,
  .booking-step-panel textarea {
    min-height: 44px;
  }

  /* Prevent zoom on iOS */
  .booking-step-panel select,
  .booking-step-panel input,
  .booking-step-panel textarea {
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .booking-hero {
    padding: 6rem 0 2rem !important;
  }

  .booking-card {
    padding: 1rem;
  }

  .booking-card h3 {
    font-size: var(--fs-md) !important;
  }

  .booking-step-panel .form-group label {
    font-size: 0.75rem;
  }

  .booking-step-panel .form-control {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }

  .booking-sidebar .glass-gold > div {
    padding: 1rem !important;
  }

  .booking-sidebar h3 {
    font-size: var(--fs-md) !important;
  }

  .popular-services {
    padding: 0.75rem !important;
  }

  .popular-services h4 {
    font-size: 0.75rem;
  }

  .popular-service-item {
    font-size: 0.7rem;
  }

  .btn,
  .btn-gold,
  .btn-dark,
  .btn-outline {
    font-size: 0.7rem;
    padding: 0.6rem 1rem;
  }
}