/* Lumina Beauty — Main Stylesheet */

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7DB;
  --rose: #C4958A;
  --rose-light: #F2E4DE;
  --rose-dark: #A67870;
  --gold: #C9A84C;
  --gold-light: #E8D48A;
  --sage: #A8B5A0;
  --sage-light: #D4DDD0;
  --dark: #1A1410;
  --dark-soft: #2C231E;
  --text: #3D2E28;
  --text-muted: #7A6B65;
  --white: #FEFEFE;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(26,20,16,0.08);
  --shadow-lg: 0 8px 48px rgba(26,20,16,0.16);
  --transition: 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 24px;
  left: 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.3;
  font-weight: 600;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-muted);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--rose);
  font-weight: 600;
  margin: 0;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-top: 16px;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--dark);
  color: var(--cream);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(196, 149, 138, 0.2);
}

.announcement-track {
  display: flex;
  gap: 0;
}

.announcement-item {
  display: none;
  width: 100%;
  text-align: center;
}

.announcement-item.active {
  display: block;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0.7;
  padding: 8px;
  transition: opacity var(--transition);
}

.announcement-close:hover {
  opacity: 1;
}

/* Header / Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 149, 138, 0.15);
  transition: var(--transition);
  padding: 0 24px;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--dark);
  font-weight: 600;
}

.logo span {
  color: var(--rose);
}

nav.nav-menu {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose);
}

.nav-cta {
  background: var(--rose);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  border: none;
}

.nav-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  z-index: 200;
  padding: 80px 32px;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Section */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80&fm=webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.7) 0%, rgba(196, 149, 138, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--cream);
}

.hero-eyebrow {
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 640px;
}

.hero h1 em {
  color: var(--rose-light);
  font-style: italic;
}

.hero p {
  font-size: 1.1rem;
  max-width: 480px;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid var(--rose);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 149, 138, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid rgba(245, 240, 232, 0.4);
  transition: all var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.1);
}

.hero-badge {
  position: absolute;
  right: 48px;
  bottom: 80px;
  background: rgba(245, 240, 232, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  color: var(--cream);
  text-align: center;
}

.hero-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin: 0;
}

.hero-badge .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

/* Services Section (bento grid) */
.services {
  background: var(--cream);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  background: var(--rose);
  color: var(--white);
  grid-column: span 2;
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.85);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card.featured .service-title {
  color: var(--white);
}

.service-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.85);
}

.service-count {
  font-size: 0.75rem;
  color: var(--rose);
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.08em;
}

.service-card.featured .service-count {
  color: rgba(255, 255, 255, 0.7);
}

/* Gallery Strip (before/after preview) */
.gallery-strip {
  background: var(--dark);
  padding: 80px 0;
  overflow: hidden;
}

.gallery-strip-title {
  color: var(--cream);
  text-align: center;
  margin-bottom: 48px;
}

.gallery-strip-title .section-eyebrow {
  color: var(--gold);
}

.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 24px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  flex: 0 0 280px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

.gallery-thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.85), transparent);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* Team Preview */
.team-preview {
  background: var(--rose-light);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.04);
}

.team-card-info {
  padding: 24px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.team-role {
  font-size: 0.8rem;
  color: var(--rose);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-exp {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.team-tag {
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  background: var(--cream);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  display: none;
  text-align: center;
  padding: 0 40px;
  animation: fadeInScale 0.5s ease;
}

.testimonial-item.active {
  display: block;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-light);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-light);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--rose);
  width: 24px;
  border-radius: 4px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1400&q=60&fm=webp') center / cover;
  opacity: 0.08;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner h2 em {
  color: var(--rose-light);
}

.cta-banner p {
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  font-size: 0.9rem;
  padding: 18px 48px;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--cream);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--rose);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: 0.85rem;
  font-weight: 600;
}

.social-link:hover {
  background: var(--rose);
}

.footer-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-hours {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.9;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.4);
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  border: none;
}

.whatsapp-fab.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.3s ease;
  z-index: 300;
  white-space: nowrap;
  border-left: 3px solid var(--rose);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-badge {
    right: 32px;
    bottom: 60px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  nav.nav-menu {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .team-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-badge {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-scroll {
    padding: 0 16px 16px;
  }

  .testimonial-item {
    padding: 0 20px;
  }

  .cta-banner {
    padding: 64px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-bento {
    gap: 12px;
  }

  .footer-grid {
    gap: 24px;
  }

  .gallery-thumb {
    flex: 0 0 240px;
    height: 320px;
  }

  .whatsapp-fab {
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  .header-content {
    height: 64px;
  }

  .logo {
    font-size: 1.2rem;
  }
}

/* === FAZ 3: JS Destekli Animasyonlar === */

/* Announcement bar items */
.announcement-item { display: none; }
.announcement-item.active { display: inline; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.whatsapp-fab.visible {
  opacity: 1;
  transform: scale(1);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* Mobile menu open state */
.mobile-menu.open {
  display: flex;
}

/* Header scrolled */
#header {
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
#header.scrolled {
  background: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Testimonial carousel */
.testimonial-carousel {
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-item {
  min-width: 100%;
}
.testimonial-dot {
  cursor: pointer;
}
.testimonial-dot.active {
  background: var(--rose);
  transform: scale(1.2);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* Filter tabs active */
.filter-tab.active, .gallery-tab.active {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
