/* ===================================================
   OMIR NÜKTESI — Components
   Navbar, Buttons, Cards, Modals, Forms
   =================================================== */

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 0 var(--space-xl);
}

.navbar--transparent {
  background: transparent;
}

.navbar--solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  z-index: 1001;
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.navbar__logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--color-brand-500);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-switcher__btn {
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-switcher__btn:hover {
  color: var(--color-brand-500);
}

.lang-switcher__btn--active {
  background: var(--color-white);
  color: var(--color-brand-500);
  box-shadow: var(--shadow-sm);
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
  cursor: pointer;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.navbar__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle--active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu--active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-brand-500);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-brand-500);
  border: 2px solid var(--color-brand-200);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: var(--color-brand-500);
  background: var(--color-bg-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn--ghost {
  background: transparent;
  color: var(--color-brand-500);
  padding: 10px 20px;
}

.btn--ghost:hover {
  background: var(--color-bg-soft);
}

.btn--sm {
  padding: 10px 20px;
  font-size: var(--font-size-xs);
}

.btn--lg {
  padding: 18px 42px;
  font-size: var(--font-size-base);
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ==========================================
   CARDS
   ========================================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-200);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image {
  transform: scale(1.05);
}

.card__image-wrapper {
  overflow: hidden;
  position: relative;
}

.card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--gradient-primary);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.card__body {
  padding: var(--space-xl);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-lg);
  background: var(--color-bg-soft);
  transition: all var(--transition-base);
}

.card:hover .card__icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.card__price {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-brand-500);
}

.card__price small {
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
}

/* Glass card variant */
.card--glass {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Service card with icon */
.card--service {
  text-align: center;
  padding: var(--space-2xl);
}

.card--service .card__icon {
  margin: 0 auto var(--space-lg);
  width: 72px;
  height: 72px;
  font-size: 32px;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--navbar-height) + var(--space-xl));
  padding-bottom: var(--space-4xl);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
}

.hero__bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  background-image: radial-gradient(var(--color-brand-500) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero__bg-circle:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--color-brand-300);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero__bg-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  background: var(--color-brand-200);
  bottom: -80px;
  left: -80px;
  animation-delay: 2s;
}

.hero__bg-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  background: var(--color-gold-light);
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 1000px;
  text-align: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-brand-500);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--color-brand-200);
  animation: fadeInDown 0.8s ease;
}

.hero__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-500);
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.15;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 750px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__image {
  position: relative;
  flex: 1;
  max-width: 550px;
  z-index: 1;
  animation: fadeIn 1s ease 0.5s both;
  display: flex;
  justify-content: flex-end;
}

.hero__image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-brand-500);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  padding-top: calc(var(--navbar-height) + var(--space-4xl));
  padding-bottom: var(--space-4xl);
  background: var(--gradient-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-brand-200);
  opacity: 0.15;
  top: -80px;
  right: -80px;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--color-gold-light);
  opacity: 0.1;
  bottom: -50px;
  left: -50px;
}

.page-hero h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
  position: relative;
  transition: all var(--transition-base);
}

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

.testimonial__quote {
  font-size: var(--font-size-3xl);
  color: var(--color-brand-200);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.testimonial__text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.testimonial__name {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--font-size-sm);
}

.testimonial__role {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

.testimonial__stars {
  color: var(--color-gold);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

/* ==========================================
   TESTIMONIALS SLIDER
   ========================================== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials-slider__slide {
  min-width: 100%;
  padding: 0 var(--space-md);
}

.testimonials-slider__controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.testimonials-slider__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.testimonials-slider__btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.testimonials-slider__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.testimonials-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand-200);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.testimonials-slider__dot--active {
  background: var(--color-brand-500);
  width: 30px;
  border-radius: var(--radius-full);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: var(--space-2xl);
}

.cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -200px;
  right: -100px;
}

.cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -150px;
  left: -50px;
}

.cta h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  font-size: var(--font-size-lg);
  position: relative;
  z-index: 1;
}

.cta .btn {
  position: relative;
  z-index: 1;
}

/* ==========================================
   FORMS
   ========================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition-fast);
  font-family: inherit;
}

.form-input {
  height: 54px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-brand-400);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer__desc {
  font-size: var(--font-size-sm);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.5);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-xs) 0;
  transition: all var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-brand-400);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-md);
}

.footer__contact-icon {
  color: var(--color-brand-400);
  font-size: 16px;
  margin-top: 2px;
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.35);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__tooltip {
  position: absolute;
  left: 70px;
  background: var(--color-white);
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-text);
  transform: scale(0.8);
  transition: transform var(--transition-spring);
}

.gallery-item:hover .gallery-item__overlay-icon {
  transform: scale(1);
}

/* Gallery span variants for masonry-like layout */
.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox--active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.lightbox--active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ==========================================
   PRODUCT CARD (Shop)
   ========================================== */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-bg-soft);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-gold);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.product-card__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__category {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-brand-500);
  margin-bottom: var(--space-sm);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-brand-500);
}

/* ==========================================
   FEATURES / BENEFITS LIST
   ========================================== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-brand-500);
  transition: all var(--transition-base);
}

.feature-item:hover .feature-item__icon {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(-5deg) scale(1.1);
}

.feature-item__content h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
}

.feature-item__content p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* ==========================================
   PRICING TABLE
   ========================================== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.pricing-table thead {
  background: var(--gradient-primary);
  color: white;
}

.pricing-table th {
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  font-size: var(--font-size-sm);
}

.pricing-table td {
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.pricing-table tbody tr:hover {
  background: var(--color-bg-soft);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table .price-cell {
  font-weight: 700;
  color: var(--color-brand-500);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  white-space: nowrap;
}

/* ==========================================
   TABS
   ========================================== */
.tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  background: var(--color-bg-soft);
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--color-brand-500);
  background: var(--color-brand-100);
}

.tab-btn--active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.tab-content {
  display: none;
}

.tab-content--active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 800;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-brand-500);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ==========================================
   CUSTOM SELECT
   ========================================== */
.custom-select {
  position: relative;
  width: 100%;
  min-width: 0;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition-fast);
  font-family: inherit;
}

.custom-select__text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  padding-right: 10px;
}

.custom-select__text.is-placeholder {
  color: var(--color-text-light);
}

.custom-select__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select.open .custom-select__trigger {
  border-color: var(--color-brand-400);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  overflow: visible;
}

.custom-select.open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__option {
  padding: 12px 18px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text);
}

.custom-select__option:hover {
  background: var(--color-bg-soft);
  color: var(--color-brand-500);
}

.custom-select__option.selected {
  background: var(--color-brand-100);
  color: var(--color-brand-600);
  font-weight: 500;
}


.custom-select__group {
  position: relative;
}

.custom-select__group-label {
  padding: 12px 16px;
  cursor: default;
  font-weight: 500;
  transition: background var(--transition-base);
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select__group-label::after {
  content: '›';
  font-size: 1.2rem;
  line-height: 1;
}

.custom-select__group-label:hover {
  background: var(--color-brand-50);
  color: var(--color-primary);
}

.custom-select__group-items {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 320px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 101;
  max-height: 300px;
  overflow-y: auto;
}

.custom-select__group:hover .custom-select__group-items {
  display: block;
}

@media (max-width: 768px) {
  .custom-select__group-items {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-primary);
    border-radius: 0;
    max-height: none;
  }
  .custom-select__group-label::after {
    content: '↓';
  }
}




/* ===================================================
   PREMIUM CARD & VIP MODAL
   =================================================== */

/* Premium Card in Grid */
.card--premium {
  position: relative;
  border: 1px solid var(--color-brand-light);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card--premium .card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(200, 107, 44, 0.3);
}

.card--premium .card__title {
  color: var(--color-brand-dark);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Modal Content */
.modal-content {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: var(--space-xl);
}

.modal-overlay.is-active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background-color: var(--color-border);
  color: var(--color-text-dark);
}

/* Modal Inner Styles */
.vip-modal__header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.vip-modal__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-brand-dark);
}

.vip-modal__duration {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vip-modal__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand);
}

.vip-modal__body {
  margin-bottom: var(--space-lg);
}

.vip-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vip-modal__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.vip-modal__icon {
  flex-shrink: 0;
  color: var(--color-brand);
  margin-top: 2px;
}

.vip-modal__bonus {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--color-brand-light);
  border-radius: var(--radius-md);
  color: var(--color-brand-dark);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .modal-content {
    padding: var(--space-lg);
  }
}


/* ==========================================
   VIP TABLE ROW
   ========================================== */
.pricing-table tbody tr.vip-row {
  background: rgba(144, 91, 58, 0.05);
}

.pricing-table tbody tr.vip-row:hover {
  background: rgba(144, 91, 58, 0.08);
}

.pricing-table tbody tr.vip-row td {
  border-bottom: 2px solid var(--color-brand-light);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  vertical-align: top;
}

.vip-row__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-brand-dark);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vip-row__title::after {
  content: 'VIP';
  font-size: 0.65rem;
  background: linear-gradient(135deg, #e6c27a, #d4af37);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.vip-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.vip-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.4;
}

.vip-row__icon {
  flex-shrink: 0;
  color: var(--color-brand);
  margin-top: 2px;
}

.vip-row__bonus {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brand-dark);
  background: var(--color-brand-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.vip-row__bonus svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.vip-row__price {
  font-size: 1.4rem !important;
}

.vip-row__duration {
  font-weight: 600;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .vip-row__list {
    grid-template-columns: 1fr 1fr;
    gap: x-small;
  }
}
