/* ==========================================================================
   ChobirKobi — Luxury Wedding Photography & Cinematography Design System
   ========================================================================== */

:root {
  /* Colors */
  --color-white: #ffffff;
  --color-bg-light: #fbfaf8;
  --color-bg-alt: #f4f2ee;
  --color-dark: #121214;
  --color-dark-soft: #242429;
  --color-text: #27272a;
  --color-muted: #71717a;
  --color-border: #e4e4e7;
  --color-border-dark: #27272a;
  
  /* Gold & Luxury Accents */
  --color-gold: #d4af37;
  --color-gold-hover: #b8860b;
  --color-gold-light: #fcf6ba;
  --color-gold-bg: rgba(212, 175, 55, 0.1);
  --color-accent: #c59b27;
  --color-error: #ef4444;
  --color-success: #10b981;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Cinzel', Georgia, serif;
  --font-sans: 'Inter', 'Montserrat', -apple-system, sans-serif;
  --font-bengali: 'Hind Siliguri', 'Inter', sans-serif;

  /* Spacing */
  --container-width: 1280px;
  --container-narrow: 860px;
  --gutter: clamp(1rem, 3vw, 2.5rem);
  --radius: 6px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.bg-light {
  background-color: var(--color-bg-light);
}

.text-center { text-align: center; }
.text-accent { color: var(--color-gold); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.25;
}

p {
  color: #4b5563;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.5px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 650px;
  margin: 0.75rem auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-outline:hover {
  background: var(--color-dark);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background: #fff;
  color: #000;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: var(--transition);
}

.top-bar {
  background: #111113;
  color: #a1a1aa;
  font-size: 0.75rem;
  padding: 6px 0;
  border-bottom: 1px solid #27272a;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__contact {
  display: flex;
  gap: 20px;
}

.top-bar__contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d4d4d8;
}

.top-bar__contact a:hover {
  color: var(--color-gold);
}

.top-bar__social {
  display: flex;
  gap: 14px;
}

.top-bar__social a:hover {
  color: var(--color-gold);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem var(--gutter);
}

.header__brand {
  display: flex;
  flex-direction: column;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Cinzel', var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #111;
  line-height: 1.05;
}

.logo-bengali {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-gold-hover);
  text-transform: uppercase;
  margin-top: 1px;
}

.header__tagline {
  font-size: 0.62rem;
  color: var(--color-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header__link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3f3f46;
  position: relative;
  padding: 4px 0;
}

.header__link:hover, .header__link.active {
  color: var(--color-gold);
}

.header__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.mobile-menu__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: #18181b;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.active .mobile-menu__inner {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #27272a;
}

.mobile-menu__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 25px;
  flex: 1;
}

.mobile-menu__link {
  font-size: 1rem;
  font-weight: 500;
  color: #d4d4d8;
  padding: 6px 0;
}

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

.mobile-menu__cta {
  color: var(--color-gold);
  font-weight: 700;
}

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #27272a;
}

.mobile-contact-item {
  font-size: 0.85rem;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  color: #fff;
  padding: 80px 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 35px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.hero__scroll-line {
  width: 1px;
  height: 25px;
  background: var(--color-gold);
  animation: bounceLine 1.8s infinite;
}

@keyframes bounceLine {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ==========================================================================
   Categories Showcase Grid
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.category-card__img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
}

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

.category-card:hover img {
  transform: scale(1.08);
}

.category-card__content {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: #fff;
}

.category-card__bengali {
  font-family: var(--font-bengali);
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  display: block;
}

.category-card__title {
  font-size: 1.35rem;
  color: #fff;
  margin: 4px 0 6px;
}

.category-card__link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
}

.category-card:hover .category-card__link {
  color: var(--color-gold);
}

/* Category Navigation Pills */
.category-nav-wrap {
  padding: 20px 0;
  background: #fbfaf8;
  border-bottom: 1px solid var(--color-border);
}

.category-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.category-pill {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--color-border);
  color: #4b5563;
}

.category-pill:hover, .category-pill.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #000;
}

/* ==========================================================================
   Interactive Before / After Retouch Slider
   ========================================================================== */
.ba-slider-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  user-select: none;
  cursor: ew-resize;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-img.ba-before {
  z-index: 1;
}

.ba-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-after-wrap .ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 3px;
  background: #fff;
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--color-gold, #c9a87c);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-size: 0.85rem;
}

.ba-caption-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 10px 15px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.ba-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ba-badge-before {
  background: #e4e4e7;
  color: #3f3f46;
}

.ba-badge-after {
  background: var(--color-gold-bg, rgba(201, 168, 124, 0.15));
  color: var(--color-gold-hover, #b8956a);
  border: 1px solid var(--color-gold, #c9a87c);
}

.ba-instruction {
  font-size: 0.8rem;
  color: var(--color-gray, #6b7280);
}

/* Retouch features */
.retouch-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.rf-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  text-align: center;
}

.rf-icon {
  width: 55px;
  height: 55px;
  background: var(--color-gold-bg);
  color: var(--color-gold-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 18px;
}

.rf-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.rf-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ==========================================================================
   Packages & Pricing Cards
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.package-card--featured {
  border: 2px solid var(--color-gold);
  background: #fdfcf9;
}

.package-card__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}

.package-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-card__photo {
  transform: scale(1.06);
}

.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.package-card__header {
  text-align: center;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--color-border);
}

.package-title {
  font-size: 1.6rem;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.package-price {
  margin-bottom: 8px;
}

.package-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.package-card__footer {
  padding: 0 24px 28px;
  margin-top: auto;
}

.addon-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold-hover);
  margin-top: 12px;
}

/* ==========================================================================
   Retouch Palettes Grid
   ========================================================================== */
.retouch-palettes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.palette-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.palette-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.palette-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.palette-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.palette-card:hover .palette-card__img-wrap img {
  transform: scale(1.06);
}

.palette-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.75);
  color: var(--color-gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.palette-card__content {
  padding: 20px 18px;
}

.palette-card__content h3 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.palette-card__content p {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.package-price__amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold-hover);
  font-family: var(--font-serif);
}

.package-price__currency {
  font-size: 1rem;
  font-weight: 600;
  color: #71717a;
  margin-left: 4px;
}

.package-subtitle {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.package-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.package-block__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-block__title i {
  color: var(--color-gold);
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-list li {
  font-size: 0.85rem;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.package-list li i {
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.package-card__footer {
  margin-top: 30px;
}

/* Addons Section */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.addon-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  text-align: center;
}

.addon-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.addon-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.addon-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ==========================================================================
   Asymmetric Portfolio Grid & Lightbox
   ========================================================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.work-item--large { grid-column: span 7; }
.work-item--medium { grid-column: span 5; }
.work-item--full { grid-column: span 12; }

.work-item__image-wrap {
  aspect-ratio: 16/10;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.work-item--large .work-item__image-wrap { aspect-ratio: 16/11; }
.work-item--medium .work-item__image-wrap { aspect-ratio: 4/3; }
.work-item--full .work-item__image-wrap { aspect-ratio: 21/9; }

.work-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item:hover .work-item__img {
  transform: scale(1.06);
}

.work-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0.9;
  transition: var(--transition);
}

.work-item__info {
  color: #fff;
}

.work-item__category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
}

.work-item__title {
  font-size: 1.4rem;
  color: #fff;
  margin: 4px 0 6px;
}

.work-item__meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox__content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 15px;
  z-index: 3010;
}

.lightbox__close { top: 20px; right: 25px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  height: 30px;
}

.testimonial__text {
  font-style: italic;
  color: #3f3f46;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial__author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.testimonial__author span {
  font-size: 0.75rem;
  color: var(--color-gold-hover);
}

/* ==========================================================================
   Modern Contact Page Styles
   ========================================================================== */
.page-header-light {
  padding: 70px 0 45px;
  background: #fbfaf8;
  border-bottom: 1px solid var(--color-border);
}

.page-header-light__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-dark);
  margin-bottom: 12px;
}

.page-header-light__subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Channels 3-Card Grid */
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.channel-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.channel-card--featured {
  border: 2px solid var(--color-gold);
  background: #fdfcf9;
}

.channel-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #25d366;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold-bg);
  color: var(--color-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 18px;
}

.channel-icon--whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.channel-title {
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.channel-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

.channel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--color-dark);
  color: #fff;
  transition: var(--transition);
}

.channel-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

.channel-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.channel-btn--whatsapp:hover {
  background: #1eb956;
}

.channel-btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}

.channel-btn--outline:hover {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

/* Contact Form Container */
.contact-form-container {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(30px, 5vw, 55px);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-form-header {
  margin-bottom: 35px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #9ca3af;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
}

.input-with-icon .form-input,
.input-with-icon .form-select {
  padding-left: 44px;
}

.form-label .required {
  color: var(--color-gold-hover);
  font-weight: 700;
}

.btn-submit-modern {
  min-width: 260px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note i {
  color: var(--color-success);
}

/* Trust Badges */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.trust-badge-item i {
  font-size: 2rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.trust-badge-item h4 {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.trust-badge-item p {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.form-alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
}

.form-alert--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #3f3f46;
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fafafa;
  color: #111;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   About Page & Team Styles
   ========================================================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  background: #fff;
  padding: 35px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.stat-item__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-gold-hover);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.team-member {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.team-member__image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

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

.team-member:hover .team-member__image img {
  transform: scale(1.05);
}

.team-member__info {
  padding: 25px 20px;
  text-align: center;
}

.team-member__name {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-member__role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-hover);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-member__bio {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Terms Card */
.terms-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.terms-block {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.terms-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-block h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-block ul {
  padding-left: 20px;
  list-style: disc;
  margin-top: 10px;
}

.terms-block li {
  margin-bottom: 6px;
  color: #4b5563;
}

/* ==========================================================================
   CTA Section & Page Header
   ========================================================================== */
.page-header {
  padding: 80px 0 50px;
  background: #111113;
  color: #fff;
  text-align: center;
}

.page-header__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 10px;
}

.page-header__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 650px;
  margin: 0 auto;
}

.cta-section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: #111;
  color: #fff;
  text-align: center;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.cta-section__content {
  position: relative;
  z-index: 10;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cta-section__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 15px;
}

.cta-section__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #111113;
  color: #a1a1aa;
  padding: 70px 0 30px;
  border-top: 1px solid #27272a;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
}

.footer__brand-link .logo-main {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.1;
}

.footer__brand-link .logo-bengali {
  color: var(--color-gold);
  font-size: 0.68rem;
  letter-spacing: 2px;
}

.mobile-menu__brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-menu__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   1-Second 100% Circular Preloader
   ========================================================================== */
.site-preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-preloader.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.preloader-circle-box {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.preloader-circle-bg {
  fill: none;
  stroke: #f1f1f1;
  stroke-width: 4.5;
}

.preloader-circle-progress {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 376.991;
  stroke-dashoffset: 376.991;
  transition: stroke-dashoffset 0.04s linear;
}

.preloader-logo-inner {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: preloaderPulse 1.2s ease-in-out infinite alternate;
}

.preloader-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes preloaderPulse {
  0% { transform: scale(0.96); opacity: 0.9; }
  100% { transform: scale(1.04); opacity: 1; }
}

.preloader-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.preloader-percent {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 1px;
}

.preloader-brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold-hover);
}

.footer__desc {
  font-size: 0.85rem;
  color: #71717a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__social-icons {
  display: flex;
  gap: 14px;
}

.footer__social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #27272a;
  color: #d4d4d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__social-icons a:hover {
  background: var(--color-gold);
  color: #000;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: #a1a1aa;
}

.footer__links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.footer__contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a1a1aa;
}

.footer__contact-info i {
  color: var(--color-gold);
  width: 16px;
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid #27272a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #71717a;
}

.footer__bottom-links {
  display: flex;
  gap: 12px;
}

.footer__bottom-links a:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1500;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background: #25d366;
}

.floating-call {
  background: var(--color-gold);
  color: #000;
}

.floating-tooltip {
  position: absolute;
  right: 65px;
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Multi-Device Responsive Design System
   ========================================================================== */

/* Prevent iOS Safari input zoom on focus */
@media screen and (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Laptops & Tablets Landscape (<= 1200px) */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
  }
}

/* Tablets Portrait & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .contact-channels-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .philosophy-content .section__title {
    margin-inline: auto;
  }

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

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

  .testimonials-grid,
  .addons-grid,
  .trust-badges-grid,
  .retouch-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

/* Standard Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  :root {
    --gutter: 1.25rem;
  }

  .top-bar {
    display: none;
  }

  .header__inner {
    padding: 0.55rem var(--gutter);
  }

  .header__logo-img {
    height: 32px;
  }

  .logo-main {
    font-size: 1.05rem;
    letter-spacing: 1px;
  }

  .logo-bengali {
    font-size: 0.56rem;
    letter-spacing: 1px;
  }

  .header__tagline {
    display: none;
  }

  .header__right .btn {
    display: none;
  }

  .hero {
    min-height: 75vh;
    padding: 60px 0;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .category-pills {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .category-pill {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .work-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .work-item--large,
  .work-item--medium,
  .work-item--full {
    width: 100%;
  }

  .work-item__image-wrap,
  .work-item--large .work-item__image-wrap,
  .work-item--medium .work-item__image-wrap,
  .work-item--full .work-item__image-wrap {
    aspect-ratio: 4/3;
  }

  .ba-slider {
    aspect-ratio: 4/3;
  }

  .ba-caption-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-form-container {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .btn-submit-modern {
    width: 100%;
  }

  .trust-badge-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  :root {
    --gutter: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .page-header, .page-header-light {
    padding: 45px 0 30px;
  }

  .page-header-light__title {
    font-size: 1.85rem;
  }

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

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

  .package-card {
    border-radius: var(--radius);
  }

  .package-card__header {
    padding: 18px 16px 14px;
  }

  .package-card__body {
    padding: 16px;
    gap: 16px;
  }

  .package-card__footer {
    padding: 0 16px 20px;
  }

  .package-price__amount {
    font-size: 1.85rem;
  }

  .package-title {
    font-size: 1.35rem;
  }

  .package-badge {
    top: 8px;
    right: 8px;
    font-size: 0.62rem;
    padding: 3px 10px;
  }

  .header__logo-img {
    height: 28px;
  }

  .logo-main {
    font-size: 0.95rem;
  }

  .logo-bengali {
    font-size: 0.52rem;
  }

  .mobile-menu__inner {
    width: 94%;
    padding: 20px 16px;
  }
}

/* ==========================================================================
   LUXURY PUBLIC BOOKING CONFIRMATION POPUP MODAL
   ========================================================================== */
.public-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

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

.public-modal-card {
  position: relative;
  background: #faf8f5;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 124, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.public-modal-overlay.is-active .public-modal-card {
  transform: scale(1) translateY(0);
}

.public-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.public-modal-close:hover {
  color: #111;
}

.public-modal-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.public-modal-icon-glow {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #10b981;
  animation: publicSuccessPulse 2.5s infinite;
}

@keyframes publicSuccessPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(16, 185, 129, 0); }
}

.public-modal-title {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}

.public-modal-subtitle {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 28px;
}

.public-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   Luxury Portfolio & Work Grid Styling
   ========================================================================== */
.portfolio-section {
  padding-bottom: 80px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  padding: 11px 24px;
  font-size: 0.88rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-weight: 600;
  border-radius: 35px;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filter-btn i {
  color: var(--color-gold, #c9a87c);
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--color-gold, #c9a87c);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 168, 124, 0.2);
}

.filter-btn:hover i {
  transform: scale(1.15);
}

.filter-btn.active {
  background: #0a0a0a;
  color: var(--color-gold, #c9a87c);
  border-color: #0a0a0a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

.filter-btn.active i {
  color: var(--color-gold, #c9a87c);
}

.filter-count {
  font-size: 0.78rem;
  opacity: 0.85;
  background: rgba(0,0,0,0.06);
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 2px;
}

.filter-btn.active .filter-count {
  background: rgba(201, 168, 124, 0.25);
  color: #ffffff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 25px;
}

.work-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #111111;
}

.work-item--large {
  grid-column: span 7;
  aspect-ratio: 16/10;
}

.work-item--medium {
  grid-column: span 5;
  aspect-ratio: 4/3;
}

.work-item--full {
  grid-column: span 12;
  aspect-ratio: 21/9;
}

.work-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.work-item__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.work-item__image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.work-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item:hover .work-item__img {
  transform: scale(1.06);
}

.work-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all 0.3s ease;
}

.work-item__category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold, #c9a87c);
  margin-bottom: 6px;
  display: block;
}

.work-item__title {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0 0 8px;
  font-weight: 600;
  line-height: 1.3;
}

.work-item__meta {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Project Detail & Lightbox Styling
   ========================================================================== */
.project-hero {
  height: 45vh;
  min-height: 350px;
  max-height: 520px;
  position: relative;
  overflow: hidden;
}

.project-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.project-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  background: #111;
}

.gallery-item.gallery-full {
  grid-column: 1 / -1;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.project-nav__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-nav__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold, #c9a87c);
  font-weight: 700;
}

.project-nav__title {
  font-family: var(--font-display, serif);
  font-size: 1.15rem;
  color: #111;
  font-weight: 600;
  transition: color 0.2s ease;
}

.project-nav__link:hover .project-nav__title {
  color: var(--color-gold-hover, #b8956a);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__content img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10001;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--color-gold, #c9a87c);
  color: #000;
}

.lightbox__close {
  top: 25px;
  right: 25px;
}

.lightbox__prev {
  left: 25px;
}

.lightbox__next {
  right: 25px;
}

@media (max-width: 992px) {
  .work-item--large,
  .work-item--medium,
  .work-item--full {
    grid-column: span 6;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 640px) {
  .work-item--large,
  .work-item--medium,
  .work-item--full {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }
  .project-gallery {
    grid-template-columns: 1fr;
  }
  .project-nav {
    flex-direction: column;
    text-align: center;
  }
}

