/*
 * Chhatna Marriage Office - Main Stylesheet
 */

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.cmo-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px rgba(107, 17, 36, 0.06);
  z-index: 1000;
  transition: all 0.3s ease;
}

.cmo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.cmo-header__brand {
  display: flex;
  align-items: center;
}

.cmo-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cmo-logo__emblem {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  box-shadow: 0 2px 10px rgba(107, 17, 36, 0.2);
}

.cmo-logo__icon {
  font-size: 22px;
  width: 22px;
  height: 22px;
}

.cmo-logo__text {
  display: flex;
  flex-direction: column;
}

.cmo-logo__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--maroon-700);
  line-height: 1.15;
}

.cmo-logo__subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-700);
  text-transform: uppercase;
}

/* Desktop Nav Menu */
.cmo-header__nav {
  display: flex;
  align-items: center;
}

.cmo-nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.cmo-nav-list a {
  font-family: var(--font-bengali);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 4px;
  position: relative;
  transition: color 0.2s ease;
}

.cmo-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}

.cmo-nav-list a:hover {
  color: var(--maroon-700);
}

.cmo-nav-list a:hover::after {
  width: 100%;
}

.cmo-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cmo-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.cmo-menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--maroon-700);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.cmo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--font-bengali), var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cmo-btn:hover {
  transform: translateY(-2px);
}

.cmo-btn:active {
  transform: scale(0.98);
}

.cmo-btn--primary {
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-800));
  color: #fff;
  border-color: var(--gold-400);
  box-shadow: 0 4px 14px rgba(107, 17, 36, 0.25);
}

.cmo-btn--primary:hover {
  background: linear-gradient(135deg, var(--maroon-600), var(--maroon-700));
  color: var(--gold-100);
  box-shadow: 0 6px 20px rgba(107, 17, 36, 0.35);
}

.cmo-btn--secondary {
  background: #fff;
  color: var(--maroon-700);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.cmo-btn--secondary:hover {
  background: var(--gold-100);
  color: var(--maroon-800);
}

.cmo-btn--phone {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  box-shadow: 0 3px 12px rgba(13, 148, 136, 0.25);
}

.cmo-btn--phone:hover {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #fff;
}

.cmo-btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.cmo-btn--whatsapp:hover {
  background: linear-gradient(135deg, #2ecc71, #25d366);
  color: #fff;
}

.cmo-btn--outline {
  background: transparent;
  border-color: var(--maroon-700);
  color: var(--maroon-700);
}

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

.cmo-btn--lg {
  padding: 14px 28px;
  font-size: 16px;
}

.cmo-btn--sm {
  padding: 7px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.cmo-btn--block {
  width: 100%;
}

/* ==========================================================================
   Badges & Decorative Dividers
   ========================================================================== */
.cmo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.cmo-badge--gold {
  background: rgba(212, 175, 55, 0.12);
  color: var(--maroon-800);
  border: 1px solid var(--border-gold);
}

.cmo-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-600);
}

.cmo-gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  position: relative;
  width: 180px;
}

.cmo-gold-divider::before,
.cmo-gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500));
}

.cmo-gold-divider::after {
  background: linear-gradient(to left, transparent, var(--gold-500));
}

.cmo-gold-divider span {
  padding: 0 10px;
  font-size: 14px;
  color: var(--gold-600);
}

/* Cards */
.cmo-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.cmo-hero {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.7) 0%, rgba(247, 241, 229, 0.5) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.cmo-hero__decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cmo-floating-element {
  position: absolute;
  font-size: 24px;
  animation: cmoFloat 6s ease-in-out infinite;
  opacity: 0.6;
}

.cmo-floating-element--ring1 { top: 15%; left: 8%; animation-delay: 0s; }
.cmo-floating-element--ring2 { bottom: 20%; right: 12%; animation-delay: 2s; }
.cmo-floating-element--heart1 { top: 25%; right: 8%; animation-delay: 1s; }
.cmo-floating-element--heart2 { bottom: 25%; left: 15%; animation-delay: 3s; }
.cmo-floating-element--rose { top: 70%; right: 28%; animation-delay: 4s; }

.cmo-hero__container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cmo-hero__top-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.cmo-govt-emblem-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cmo-govt-emblem {
  height: 32px;
  width: auto;
}

.cmo-govt-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
}

.cmo-hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.cmo-hero__title-main {
  font-size: 48px;
  font-weight: 700;
  color: var(--maroon-700);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(107, 17, 36, 0.08);
}

.cmo-hero__title-sub {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-700);
  margin-top: 4px;
}

.cmo-hero__supporting {
  font-size: 19px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 500;
}

.cmo-hero__officer-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  max-width: 520px;
}

.cmo-hero__officer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  overflow: hidden;
  background: var(--cream-200);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmo-hero__officer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmo-hero__avatar-placeholder {
  color: var(--maroon-700);
}

.cmo-hero__officer-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-700);
  text-transform: uppercase;
}

.cmo-hero__officer-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--maroon-800);
  margin: 2px 0;
}

.cmo-hero__location {
  font-size: 13px;
  color: var(--text-muted);
}

.cmo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero Visual Column */
.cmo-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmo-hero__glow-sphere {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(107, 17, 36, 0.05) 70%, transparent 100%);
  filter: blur(20px);
  z-index: 1;
}

.cmo-hero__portrait-frame {
  position: relative;
  width: 340px;
  height: 380px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold-400);
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(107, 17, 36, 0.15), var(--shadow-gold);
  z-index: 2;
  overflow: visible;
}

.cmo-hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
}

.cmo-hero__portrait-art {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-900));
  border-radius: calc(var(--radius-lg) - 6px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.cmo-hero__wedding-crest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.cmo-hero__crest-rings {
  font-size: 42px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.cmo-hero__crest-title {
  font-family: var(--font-bengali);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-300);
}

.cmo-hero__crest-sub {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
}

.cmo-hero__crest-officer {
  font-size: 15px;
  color: var(--gold-400);
  margin-top: 10px;
}

.cmo-hero__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.cmo-hero__floating-card--top {
  top: -15px;
  right: -25px;
}

.cmo-hero__floating-card--bottom {
  bottom: -20px;
  left: -25px;
}

.cmo-hero__card-icon {
  font-size: 22px;
}

.cmo-hero__floating-card strong {
  display: block;
  font-size: 13px;
  color: var(--maroon-800);
  line-height: 1.2;
}

.cmo-hero__floating-card small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.cmo-section {
  padding: 80px 0;
}

.cmo-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.cmo-section-eyebrow {
  display: inline-block;
  font-family: var(--font-bengali);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-700);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.cmo-section-title {
  font-family: var(--font-bengali), var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--maroon-700);
  line-height: 1.3;
}

.cmo-section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   Marriage Registration at a Glance
   ========================================================================== */
.cmo-glance {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream-100) 100%);
  border-bottom: 1px solid var(--border-gold);
}

.cmo-glance__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cmo-glance__card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cmo-glance__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-400), var(--maroon-700));
}

.cmo-glance__card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-500);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.2);
}

.cmo-glance__number {
  font-family: var(--font-display), var(--font-body);
  font-size: 32px;
  font-weight: 800;
  color: var(--maroon-700);
  line-height: 1.1;
  margin-bottom: 8px;
}

.cmo-glance__label {
  font-family: var(--font-bengali);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.cmo-glance__sublabel {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.cmo-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cmo-service-card {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.cmo-service-card__icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--gold-100);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.cmo-service-card__emoji {
  font-size: 26px;
}

.cmo-service-card__title {
  font-family: var(--font-bengali);
  font-size: 20px;
  font-weight: 700;
  color: var(--maroon-800);
  margin-bottom: 6px;
}

.cmo-service-card__sub {
  font-size: 12px;
  color: var(--gold-700);
  margin-bottom: 12px;
  font-weight: 600;
}

.cmo-service-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 18px;
}

.cmo-service-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cmo-service-card__link:hover {
  color: var(--gold-700);
}

/* ==========================================================================
   Marriage Acts (Hindu vs Special)
   ========================================================================== */
.cmo-acts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cmo-act-card {
  padding: 32px 28px;
  position: relative;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.cmo-act-card__badge {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(107, 17, 36, 0.08);
  color: var(--maroon-700);
}

.cmo-act-card__badge--gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-700);
}

.cmo-act-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.cmo-act-card__icon {
  font-size: 34px;
}

.cmo-act-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--maroon-800);
  line-height: 1.2;
}

.cmo-act-card__sub {
  font-size: 13px;
  color: var(--text-muted);
}

.cmo-act-card__body p {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 16px;
}

.cmo-act-card__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.cmo-act-card__points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-main);
}

.cmo-act-card__points span {
  color: #10b981;
  font-weight: bold;
}

.cmo-act-card__footer {
  margin-top: auto;
}

/* ==========================================================================
   Documents
   ========================================================================== */
.cmo-documents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.cmo-doc-card {
  padding: 28px 22px;
  background: #ffffff;
}

.cmo-doc-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}

.cmo-doc-card__icon {
  font-size: 28px;
}

.cmo-doc-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--maroon-800);
}

.cmo-doc-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cmo-doc-card__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(107, 17, 36, 0.1);
}

.cmo-doc-card__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cmo-doc-card__list strong {
  font-size: 14px;
  color: var(--maroon-900);
}

.cmo-doc-card__list span {
  font-size: 13px;
  color: var(--text-muted);
}

.cmo-badge-req {
  align-self: flex-start;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #dc2626;
  background: #fee2e2;
  padding: 2px 6px;
  border-radius: 4px;
}

.cmo-badge-opt {
  align-self: flex-start;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 2px 6px;
  border-radius: 4px;
}

.cmo-doc-disclaimer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fdfaf3;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: 18px 24px;
}

.cmo-doc-disclaimer__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.cmo-doc-disclaimer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Step-by-Step Process Timeline
   ========================================================================== */
.cmo-process__timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.cmo-process__step {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.cmo-process__step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.cmo-process__number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.cmo-process__icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-800));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border: 2px solid var(--gold-400);
}

.cmo-process__title {
  font-family: var(--font-bengali);
  font-size: 17px;
  font-weight: 700;
  color: var(--maroon-800);
  margin-bottom: 4px;
}

.cmo-process__en {
  display: block;
  font-size: 11px;
  color: var(--gold-700);
  margin-bottom: 8px;
  font-weight: 600;
}

.cmo-process__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Customer Photo Gallery & Lightbox
   ========================================================================== */
.cmo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.cmo-gallery__item {
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
}

.cmo-gallery__thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.cmo-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cmo-gallery__item:hover .cmo-gallery__thumb img {
  transform: scale(1.06);
}

.cmo-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 17, 36, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cmo-gallery__item:hover .cmo-gallery__overlay {
  opacity: 1;
}

.cmo-gallery__zoom-icon,
.cmo-gallery__heart-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.cmo-gallery__info {
  padding: 14px 16px;
}

.cmo-gallery__couple {
  font-size: 16px;
  font-weight: 700;
  color: var(--maroon-800);
  margin-bottom: 4px;
}

.cmo-gallery__date {
  font-size: 12px;
  color: var(--gold-700);
  display: block;
  margin-bottom: 6px;
}

.cmo-gallery__caption {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.cmo-gallery__privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* Lightbox Modal */
.cmo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.cmo-lightbox[aria-hidden="false"] {
  display: flex;
}

.cmo-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 3, 6, 0.88);
  backdrop-filter: blur(8px);
}

.cmo-lightbox__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 90%;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 2px solid var(--gold-400);
}

.cmo-lightbox__close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.cmo-lightbox__arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmo-lightbox__arrow--prev { left: 15px; }
.cmo-lightbox__arrow--next { right: 15px; }

.cmo-lightbox__media {
  max-height: 480px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmo-lightbox__media img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
}

.cmo-lightbox__details {
  padding: 20px 24px;
}

.cmo-lightbox__title {
  font-size: 20px;
  color: var(--maroon-700);
  margin-bottom: 4px;
}

.cmo-lightbox__date {
  font-size: 13px;
  color: var(--gold-600);
  margin-bottom: 8px;
}

.cmo-lightbox__caption {
  font-size: 14px;
  color: var(--text-muted);
}

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

.cmo-testi-card {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.cmo-testi-card__stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.cmo-testi-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-main);
  flex-grow: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.cmo-testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.cmo-testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cmo-testi-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--maroon-800);
}

.cmo-testi-card__loc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.cmo-faq__accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cmo-faq-item {
  background: #ffffff;
  overflow: hidden;
}

.cmo-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-bengali);
  font-size: 17px;
  font-weight: 700;
  color: var(--maroon-800);
}

.cmo-faq-question:hover {
  background: var(--cream-100);
}

.cmo-faq-icon {
  font-size: 20px;
  color: var(--gold-700);
  margin-left: 12px;
  font-weight: 700;
}

.cmo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fffdfa;
}

.cmo-faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   Appointment Booking Form
   ========================================================================== */
.cmo-appointment__wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 36px;
  background: #ffffff;
  border: 2px solid var(--border-gold);
}

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

.cmo-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cmo-label {
  font-family: var(--font-bengali);
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon-800);
}

.cmo-req {
  color: #dc2626;
}

.cmo-input,
.cmo-select,
.cmo-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cmo-input:focus,
.cmo-select:focus,
.cmo-textarea:focus {
  outline: none;
  border-color: var(--maroon-600);
  box-shadow: 0 0 0 3px rgba(107, 17, 36, 0.12);
}

.cmo-form-consent {
  margin: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.cmo-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cmo-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

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

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

/* ==========================================================================
   Contact Section
   ========================================================================== */
.cmo-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cmo-contact-card {
  padding: 32px 24px;
  text-align: center;
  background: #ffffff;
}

.cmo-contact-card__icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.cmo-contact-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon-800);
  margin-bottom: 8px;
}

.cmo-contact-card__val {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.cmo-contact-card__sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.cmo-footer {
  background: linear-gradient(180deg, var(--maroon-900) 0%, #240309 100%);
  color: rgba(255, 255, 255, 0.85);
  border-top: 3px solid var(--gold-500);
}

.cmo-footer__top {
  padding: 70px 0 50px;
}

.cmo-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1fr;
  gap: 36px;
}

.cmo-footer__brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.cmo-footer__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-300);
  letter-spacing: 0.05em;
}

.cmo-footer__tagline {
  font-size: 12px;
  color: var(--gold-400);
}

.cmo-footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.cmo-footer__officer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.cmo-footer__officer-badge strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.cmo-footer__officer-badge small {
  font-size: 11px;
  color: var(--gold-300);
}

.cmo-footer__heading {
  font-family: var(--font-bengali);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.cmo-footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-500);
}

.cmo-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cmo-footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.cmo-footer__links a:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

.cmo-footer__address {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.cmo-footer__contact-item {
  font-size: 14px;
  margin-bottom: 6px;
}

.cmo-footer__contact-item a {
  color: var(--gold-300);
}

.cmo-footer__banner {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 24px 0;
  text-align: center;
}

.cmo-footer__motto {
  font-family: var(--font-bengali);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 8px;
}

.cmo-footer__disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}

.cmo-footer__bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.cmo-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cmo-footer__admin-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.cmo-footer__admin-link:hover {
  color: var(--gold-300);
}

/* ==========================================================================
   Mobile Bottom Floating Fixed Action Bar
   ========================================================================== */
.cmo-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 2px solid var(--border-gold);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  z-index: 9999;
  justify-content: space-around;
  gap: 8px;
}

.cmo-mobile-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-bengali);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.cmo-mobile-bar__icon {
  font-size: 18px;
}

.cmo-mobile-bar__btn--call {
  background: #f0fdfa;
  color: #0f766e;
  border: 1px solid #99f6e4;
}

.cmo-mobile-bar__btn--wa {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.cmo-mobile-bar__btn--app {
  background: var(--maroon-700);
  color: #ffffff;
  border: 1px solid var(--gold-400);
}
