/* ==========================================================================
   Q-Tickets clone — style.css
   ========================================================================== */

/* ---------- 1. Reset / base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: #171616;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  padding-bottom: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
select,
input,
textarea {
  font-family: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- 2. Header ---------- */
header.sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #171616;
  border-bottom: 1px solid rgba(238, 232, 232, 0.1);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

/* ---------- 3. Navigation ---------- */
.naviga .nviul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.naviga .nviul li a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #ffffff;
  opacity: 0.85;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.naviga .nviul li a:hover {
  color: #58469c;
  opacity: 1;
}

.logo a img {
  width: 237px;
  height: 43px;
  object-fit: contain;
}

.tp-rgt {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ---------- 4. Search bar ---------- */
.search {
  position: relative;
  display: flex;
  align-items: center;
}

.search .search-toggle {
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.search .search-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.search input[type="text"] {
  width: 0;
  opacity: 0;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid #58469c;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  transition:
    width 0.3s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

.search.active input[type="text"] {
  width: 220px;
  opacity: 1;
  padding: 8px 10px;
  margin-left: 8px;
}

.divSearch {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  max-height: 360px;
  overflow-y: auto;
  background: #1e1e1e;
  border: 1px solid rgba(238, 232, 232, 0.15);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 200;
}

.divSearch.show {
  display: block;
}

#tblEvent {
  width: 100%;
  border-collapse: collapse;
}

#tblEvent tr {
  border-bottom: 1px solid rgba(238, 232, 232, 0.08);
  transition: background 0.15s ease;
}

#tblEvent tr:hover {
  background: rgba(88, 70, 156, 0.15);
}

#tblEvent td {
  padding: 10px 12px;
  font-size: 13px;
  color: #ffffff;
}

#tblEvent td.no-results {
  color: #b0b0b0;
  text-align: center;
  padding: 16px;
}

#tblEvent img {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
}

#tblEvent .sr-name-loc {
  display: flex;
  flex-direction: column;
}
#tblEvent .sr-loc {
  color: #b0b0b0;
  font-size: 11px;
}
#tblEvent .sr-row-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- 5. Country selector ---------- */
.country {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.country img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------- lang toggle ---------- */
.changelang a.lang {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.changelang a.lang:hover {
  border-color: #58469c;
  color: #58469c;
}

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  font-size: 22px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

/* ---------- 6. Filter tabs ---------- */
section.mvein-sec1 {
  padding: 32px 0 60px;
}

.mvein-sec1-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.nav.nav-tabs {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(238, 232, 232, 0.1);
}

.nav.nav-tabs button {
  padding: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #7a7a7a;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.nav.nav-tabs button:hover {
  color: #ffffff;
}

.nav.nav-tabs button.active {
  color: #ffffff;
  border-bottom-color: #58469c;
}

/* ---------- 7. Category dropdown ---------- */
.evt-filt {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.evt-filt select#Category {
  appearance: none;
  background: #1e1e1e
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23b0b0b0' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E")
    no-repeat right 14px center;
  color: #ffffff;
  border: 1px solid rgba(238, 232, 232, 0.15);
  border-radius: 20px;
  padding: 10px 34px 10px 16px;
  font-size: 13px;
  min-width: 160px;
}

.evt-filt select#Category:focus {
  outline: none;
  border-color: #58469c;
}

/* ---------- 8. Min/Max price ---------- */
.evt-filt .row {
  display: flex;
  gap: 10px;
}

.evt-filt .row input[type="number"] {
  width: 110px;
  background: #1e1e1e;
  border: 1px solid rgba(238, 232, 232, 0.15);
  border-radius: 20px;
  color: #ffffff;
  padding: 10px 14px;
  font-size: 13px;
}

.evt-filt .row input[type="number"]:focus {
  outline: none;
  border-color: #58469c;
}
.evt-filt .row input::placeholder {
  color: #b0b0b0;
}

/* ---------- 8b. Hero banner carousel ---------- */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-track {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 1920 / 700;
  background: #111;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 110px 40px 34px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85) 60%);
}

.hero-caption-inner {
  max-width: 560px;
}

.hero-caption h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.25;
}

.hero-caption p {
  font-size: 14px;
  color: #d8d8d8;
  margin-bottom: 16px;
}

.hero-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #171616;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.4px;
  padding: 11px 24px;
  border-radius: 4px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.hero-book:hover {
  background: #58469c;
  color: #ffffff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 6;
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(88, 70, 156, 0.85);
}
.hero-prev {
  left: 20px;
}
.hero-next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
}

.hero-dot.active {
  width: 26px;
  background: #58469c;
}

@media (max-width: 768px) {
  .hero-caption {
    padding: 60px 16px 20px;
  }
  .hero-caption-inner {
    max-width: 84%;
  }
  .hero-caption h2 {
    font-size: 17px;
  }
  .hero-caption p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .hero-book {
    padding: 8px 18px;
    font-size: 11px;
  }
  .hero-arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .hero-prev {
    left: 10px;
  }
  .hero-next {
    right: 10px;
  }
}

[dir="rtl"] .hero-caption {
  text-align: right;
}
[dir="rtl"] .hero-caption-inner {
  margin-left: auto;
}
[dir="rtl"] .hero-book {
  flex-direction: row-reverse;
}

/* ---------- 9. Event card grid ---------- */
.tab-content #DivEvents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tab-content #DivEvents > li {
  min-width: 0;
}

.mve-sec1.evnt-sec1 {
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mve-sec1.evnt-sec1 figure,
.mve-sec1.evnt-sec1 figure a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ---------- 10. Hover effects ---------- */
.mve-sec1.evnt-sec1:hover {
  transform: translateY(-6px);
}

.mve-sec1-img {
  width: 100%;
  aspect-ratio: 330 / 176;
  overflow: hidden;
  background: #111;
}

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

.mve-sec1.evnt-sec1:hover .mve-sec1-img img {
  transform: scale(1.08);
}

.mve-sec1.evnt-sec1 figcaption {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mve-sec1.evnt-sec1 h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mve-sec1.evnt-sec1 h5 {
  font-size: 12.5px;
  font-weight: 400;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.mve-sec1.evnt-sec1 p {
  font-size: 12.5px;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.mve-sec1.evnt-sec1 p span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- 11. BOOK NOW button ---------- */
.mve-sec1.evnt-sec1 .bn {
  margin-top: auto;
  padding-top: 14px;
}

.mve-sec1.evnt-sec1 .bn span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ffffff;
  background: #58469c;
  padding: 12px 16px;
  border-radius: 6px;
  transition:
    background 0.2s ease,
    gap 0.2s ease;
}

.mve-sec1.evnt-sec1:hover .bn span {
  background: #6b56bd;
  gap: 12px;
}

.no-events {
  grid-column: 1 / -1;
  text-align: center;
  color: #b0b0b0;
  padding: 60px 0;
  font-size: 15px;
}

/* ---------- 12. Footer ---------- */
footer {
  background: #171616;
  border-top: 1px solid rgba(238, 232, 232, 0.08);
  margin-top: 60px;
}

.ftr-sec1 {
  background: linear-gradient(120deg, #241d3d 0%, #171616 70%);
  padding: 60px 0;
}

.dan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.dan-lft p {
  color: #b0b0b0;
  font-size: 13px;
  margin-bottom: 8px;
}
.dan-lft h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.dan-lft .stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dan-lft .stores img {
  height: 44px;
}

.dan-rgt img {
  max-width: 260px;
  margin-left: auto;
}

.ftr-sec2 {
  padding: 44px 0;
  border-top: 1px solid rgba(238, 232, 232, 0.08);
  border-bottom: 1px solid rgba(238, 232, 232, 0.08);
}

.ftr-sec2 h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 32px;
}

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

.ftr-sec2 .stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ftr-sec2 .stat img {
  width: 44px;
  height: 44px;
}
.ftr-sec2 .stat strong {
  font-size: 20px;
  font-weight: 700;
}
.ftr-sec2 .stat span {
  font-size: 12.5px;
  color: #b0b0b0;
}

.ftr-sec4 {
  padding: 56px 0 30px;
}

.ftr-sec4 .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.ftr-sec4 .copyright {
  grid-column: 1 / -1;
}

.ftrsec4-lft {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 46px;
}

.ftrsec4-lft h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.ftrsec4-lft ul li {
  margin-bottom: 12px;
}

.ftrsec4-lft ul li a {
  font-size: 13px;
  color: #b0b0b0;
  transition: color 0.2s ease;
}

.ftrsec4-lft ul li a:hover {
  color: #58469c;
}

.ftrsec4-rgt {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid rgba(238, 232, 232, 0.08);
  padding-left: 40px;
}

.ftrsec4-rgt h3 {
  font-size: 16px;
  margin-bottom: 16px;
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter input[type="email"] {
  flex: 1;
  background: #1e1e1e;
  border: 1px solid rgba(238, 232, 232, 0.15);
  border-radius: 20px;
  padding: 10px 16px;
  color: #ffffff;
  font-size: 13px;
}

.newsletter button {
  background: #58469c;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.social {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.2s ease;
}

.social a:hover {
  background: #58469c;
}

.badge-theqa {
  height: 40px;
  margin-bottom: 20px;
}

.payments {
  display: flex;
  align-items: center;
  gap: 16px;
}
.payments img {
  height: 26px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: #b0b0b0;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid rgba(238, 232, 232, 0.08);
}

/* ---------- 13. Mobile bottom nav ---------- */
section.mob-ftr {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1e1e;
  border-top: 1px solid rgba(238, 232, 232, 0.1);
  z-index: 150;
}

.mob-ftr-sec1 ul {
  display: flex;
  justify-content: space-between;
}

.mob-ftr-sec1 ul li {
  flex: 1;
}

.mob-ftr-sec1 ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 12px;
  font-size: 10.5px;
  color: #b0b0b0;
}

.mob-ftr-sec1 ul li a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}
.mob-ftr-sec1 ul li a.active-nav img {
  opacity: 1;
}
.mob-ftr-sec1 ul li a.active-nav {
  color: #ffffff;
}

/* ---------- 14. Off-canvas menu ---------- */
.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 82vw;
  background: #1e1e1e;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.offcanvas.show {
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  justify-content: flex-end;
  padding: 16px;
}

.offcanvas-close {
  font-size: 22px;
}

.offcanvas-body {
  padding: 0 24px;
  flex: 1;
  overflow-y: auto;
}

.offcanvas-body ul li a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(238, 232, 232, 0.08);
}

.daios {
  display: flex;
  gap: 10px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.daios img {
  height: 40px;
}

.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.offcanvas-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- 16. Chat button ---------- */
.chat-btn {
  position: fixed;
  bottom: 130px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #58469c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 160;
  transition: transform 0.2s ease;
}

.chat-btn:hover {
  transform: scale(1.08);
}

.chat-popup {
  position: fixed;
  bottom: 200px;
  right: 30px;
  width: 320px;
  max-width: 88vw;
  max-height: 420px;
  background: #1e1e1e;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  z-index: 165;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-popup.show {
  display: flex;
}

.chat-popup-head {
  background: #58469c;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.chat-popup-body {
  flex: 1;
  padding: 14px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.chat-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  line-height: 1.4;
}
.chat-msg.bot {
  background: #2a2a2a;
  align-self: flex-start;
}
.chat-msg.user {
  background: #58469c;
  align-self: flex-end;
}

.chat-popup-foot {
  display: flex;
  border-top: 1px solid rgba(238, 232, 232, 0.08);
}

.chat-popup-foot input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 13px;
}

.chat-popup-foot button {
  padding: 0 16px;
  color: #58469c;
  font-size: 16px;
}

/* ---------- 15. RTL overrides ---------- */
[dir="rtl"] {
  text-align: right;
}
[dir="rtl"] .header {
  flex-direction: row-reverse;
}
[dir="rtl"] .naviga .nviul {
  flex-direction: row-reverse;
}
[dir="rtl"] .tp-rgt {
  flex-direction: row-reverse;
}
[dir="rtl"] .search.active input[type="text"] {
  margin-left: 0;
  margin-right: 8px;
}
[dir="rtl"] .divSearch {
  right: auto;
  left: 0;
}
[dir="rtl"] .dan {
  flex-direction: row-reverse;
}
[dir="rtl"] .dan-rgt img {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .ftrsec4-lft {
  direction: rtl;
}
[dir="rtl"] .ftrsec4-rgt {
  direction: rtl;
}
[dir="rtl"] .newsletter {
  flex-direction: row-reverse;
}
[dir="rtl"] .mob-ftr-sec1 ul {
  flex-direction: row-reverse;
}
[dir="rtl"] .offcanvas {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}
[dir="rtl"] .offcanvas.show {
  transform: translateX(0);
}
[dir="rtl"] .chat-btn,
[dir="rtl"] .chat-popup {
  right: auto;
  left: 30px;
}
[dir="rtl"] .evt-filt select#Category {
  background-position: left 14px center;
  padding: 10px 16px 10px 34px;
}
[dir="rtl"] .chat-msg.user {
  align-self: flex-start;
}
[dir="rtl"] .chat-msg.bot {
  align-self: flex-end;
}

/* ---------- 17. Responsive ---------- */
@media (max-width: 1199px) {
  .tab-content #DivEvents {
    grid-template-columns: repeat(2, 1fr);
  }
  .ftr-sec2 .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .ftrsec4-lft {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .naviga .nviul {
    gap: 16px;
  }
  .naviga .nviul li a {
    font-size: 13px;
  }
  .dan-rgt img {
    max-width: 200px;
  }

  .ftr-sec4 .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ftrsec4-rgt {
    border-left: none;
    border-top: 1px solid rgba(238, 232, 232, 0.08);
    padding-left: 0;
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .naviga:not(.mobile-hidden-only) {
    display: none;
  }
  .header .naviga {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .country {
    display: none;
  }
  .changelang {
    display: none;
  }

  .mvein-sec1-head {
    flex-direction: column;
    align-items: stretch;
  }
  .nav.nav-tabs {
    justify-content: center;
  }
  .evt-filt {
    justify-content: center;
  }

  .tab-content #DivEvents {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  section.mob-ftr {
    display: block;
  }
  body {
    padding-bottom: 64px;
  }

  .chat-btn {
    bottom: 90px;
    right: 16px;
  }
  .chat-popup {
    bottom: 160px;
    right: 16px;
  }
  [dir="rtl"] .chat-btn,
  [dir="rtl"] .chat-popup {
    right: auto;
    left: 16px;
  }

  .dan {
    flex-direction: column;
    text-align: center;
  }
  [dir="rtl"] .dan {
    flex-direction: column;
  }
  .dan-lft .stores {
    justify-content: center;
  }
  .dan-rgt img {
    margin: 0 auto;
  }

  .ftrsec4-lft {
    grid-template-columns: 1fr 1fr;
    gap: 30px 16px;
  }
}

@media (max-width: 600px) {
  .logo a img {
    width: 170px;
    height: auto;
  }
  .ftr-sec2 .stats {
    grid-template-columns: 1fr 1fr;
  }
  .ftrsec4-lft {
    grid-template-columns: 1fr;
  }
  .mve-sec1.evnt-sec1 h4 {
    font-size: 14px;
  }
}

/* ---------- Event detail page ---------- */
.event-detail {
  padding-bottom: 60px;
}

.event-banner {
  width: 100%;
  background: #1e1e1e;
}

.event-banner img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.event-topbar {
  background: #1e1e1e;
  border-radius: 12px;
  margin: -60px auto 34px;
  position: relative;
  z-index: 5;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.event-topbar h1 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
}

.event-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.event-meta-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #d8d8d8;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.event-meta-inline i {
  color: #b0b0b0;
  margin-right: 4px;
}
.event-meta-inline .sep {
  color: rgba(255, 255, 255, 0.2);
}

.book-now {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #58469c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 12px 28px;
  border-radius: 6px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.book-now:hover {
  background: #6b56bd;
  transform: translateY(-2px);
}

.event-share {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #b0b0b0;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 232, 232, 0.08);
}

.event-share a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #171616;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  transition: background 0.2s ease;
}

.event-share a:hover {
  background: #58469c;
}

.event-summary h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.event-summary p {
  color: #c9c9c9;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 14px;
  max-width: 900px;
}

.event-not-found {
  text-align: center;
  padding: 100px 0;
  font-size: 18px;
  color: #b0b0b0;
}

/* ---------- Ticket booking flow ---------- */
.ticket-page {
  padding: 34px 0 100px;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.ticket-main h2 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.ticket-section {
  margin-bottom: 32px;
}

.ticket-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ticket-pill {
  min-width: 76px;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  background: #1e1e1e;
  border: 1px solid rgba(238, 232, 232, 0.12);
  color: #d8d8d8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.ticket-pill span {
  display: block;
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
}
.ticket-pill:hover {
  border-color: #58469c;
}
.ticket-pill.active {
  background: #58469c;
  border-color: #58469c;
  color: #ffffff;
}

.ticket-hint {
  color: #8a8a8a;
  font-size: 12.5px;
  margin-top: -6px;
  margin-bottom: 14px;
}

.ticket-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ticket-card {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.ticket-card.has-qty {
  border-color: rgba(88, 70, 156, 0.5);
}

.ticket-card-info h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
}

.ticket-card-info strong {
  font-size: 17px;
  font-weight: 800;
}
.ticket-card-info .sold-out {
  color: #ff6b6b;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.ticket-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticket-qty button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #171616;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.ticket-qty button:hover:not(:disabled) {
  background: #58469c;
}
.ticket-qty button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.ticket-qty .qty-val {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
}

/* Summary sidebar */
.ticket-summary {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 90px;
}

.ticket-summary h2 {
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ticket-summary > p.hint {
  color: #8a8a8a;
  font-size: 12.5px;
  margin-bottom: 18px;
}

.summary-event-card {
  background: #171616;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 18px;
}

.summary-event-card h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.4;
}

.summary-event-card p {
  color: #b0b0b0;
  font-size: 12.5px;
}

.promo-toggle {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 13px;
}

.promo-toggle label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.promo-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.promo-row input {
  flex: 1;
  background: #171616;
  border: 1px solid rgba(238, 232, 232, 0.15);
  border-radius: 6px;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 13px;
}

.promo-row button {
  background: #58469c;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 0 18px;
  border-radius: 6px;
  white-space: nowrap;
}

.promo-msg {
  font-size: 12px;
  margin: -10px 0 14px;
}
.promo-msg.ok {
  color: #7ee787;
}
.promo-msg.err {
  color: #ff6b6b;
}

.summary-lines {
  border-top: 1px solid rgba(238, 232, 232, 0.1);
  border-bottom: 1px solid rgba(238, 232, 232, 0.1);
  padding: 14px 0;
  margin-bottom: 18px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #d8d8d8;
  margin-bottom: 10px;
}

.summary-line:last-child {
  margin-bottom: 0;
}
.summary-line.total {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}
.summary-line .label-sub {
  color: #8a8a8a;
  font-size: 11.5px;
  display: block;
}

.guest-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.guest-tabs button {
  flex: 1;
  padding: 11px;
  border-radius: 6px;
  background: #171616;
  color: #b0b0b0;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.guest-tabs button.active {
  background: #58469c;
  color: #ffffff;
}

.guest-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.guest-form input {
  width: 100%;
  background: #171616;
  border: 1px solid rgba(238, 232, 232, 0.15);
  border-radius: 6px;
  padding: 11px 14px;
  color: #ffffff;
  font-size: 13px;
}

.guest-form input:focus {
  outline: none;
  border-color: #58469c;
}

.guest-phone-row {
  display: flex;
  gap: 8px;
}
.guest-phone-row select {
  background: #171616;
  border: 1px solid rgba(238, 232, 232, 0.15);
  border-radius: 6px;
  color: #ffffff;
  padding: 0 8px;
  font-size: 13px;
}

.login-note {
  background: #171616;
  border-radius: 6px;
  padding: 14px;
  color: #8a8a8a;
  font-size: 12.5px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.ticket-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.ticket-checks label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: #d8d8d8;
  cursor: pointer;
}

.ticket-checks input {
  margin-top: 2px;
}
.ticket-checks a {
  color: #58469c;
}

.proceed-btn {
  width: 100%;
  background: #58469c;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.proceed-btn:hover {
  background: #6b56bd;
}
.proceed-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ticket-form-error {
  color: #ff6b6b;
  font-size: 12.5px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: none;
}
.ticket-form-error.show {
  display: block;
}

.ticket-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #58469c;
  padding: 16px 0;
  z-index: 120;
}

.ticket-sticky-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* Payment (mock) page */
.payment-page {
  padding: 50px 0 80px;
}
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.payment-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 30px;
}

.payment-card h2 {
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.payment-methods {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.payment-methods button {
  padding: 10px 18px;
  border-radius: 6px;
  background: #171616;
  color: #b0b0b0;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
}

.payment-methods button.active {
  border-color: #58469c;
  color: #ffffff;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.payment-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.payment-form label {
  font-size: 12.5px;
  color: #b0b0b0;
  display: block;
  margin-bottom: 6px;
}

.payment-form input {
  width: 100%;
  background: #171616;
  border: 1px solid rgba(238, 232, 232, 0.15);
  border-radius: 6px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 13px;
}

.payment-form input:focus {
  outline: none;
  border-color: #58469c;
}

.payment-disclaimer {
  font-size: 11.5px;
  color: #8a8a8a;
  margin-top: 6px;
  line-height: 1.6;
}

.pay-btn {
  width: 100%;
  background: #58469c;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 8px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.pay-btn:hover {
  background: #6b56bd;
}
.pay-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.pay-btn.loading .spinner {
  display: inline-block;
}
.pay-btn.loading .pay-btn-label {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Confirmation page */
.confirm-page {
  padding: 70px 0 90px;
}
.confirm-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.confirm-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(126, 231, 135, 0.15);
  color: #7ee787;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.confirm-wrap h1 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.confirm-wrap > p.lead {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 30px;
}

.confirm-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 26px;
  text-align: left;
  margin-bottom: 26px;
}

.confirm-card h4 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.confirm-card .confirm-meta {
  color: #b0b0b0;
  font-size: 13px;
  margin-bottom: 18px;
}

.confirm-ref {
  background: #171616;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.confirm-ref span {
  color: #8a8a8a;
  font-size: 12px;
  text-transform: uppercase;
  display: block;
}
.confirm-ref strong {
  font-size: 16px;
  letter-spacing: 1px;
}

.confirm-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #d8d8d8;
  margin-bottom: 8px;
}

.confirm-line.total {
  font-weight: 800;
  color: #ffffff;
  font-size: 15px;
  border-top: 1px solid rgba(238, 232, 232, 0.1);
  padding-top: 10px;
  margin-top: 10px;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.confirm-actions a,
.confirm-actions button {
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.confirm-actions .primary {
  background: #58469c;
  color: #ffffff;
}
.confirm-actions .primary:hover {
  background: #6b56bd;
}
.confirm-actions .secondary {
  background: #1e1e1e;
  color: #ffffff;
}

@media (max-width: 991px) {
  .ticket-grid {
    grid-template-columns: 1fr;
  }
  .ticket-summary {
    position: static;
  }
  .payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ticket-category-grid {
    grid-template-columns: 1fr;
  }
  .payment-form .row-2 {
    grid-template-columns: 1fr;
  }
  .ticket-page {
    padding-bottom: 120px;
  }
}

[dir="rtl"] .ticket-card {
  flex-direction: row-reverse;
}
[dir="rtl"] .summary-line {
  flex-direction: row-reverse;
}
[dir="rtl"] .confirm-ref {
  flex-direction: row-reverse;
}
[dir="rtl"] .confirm-line {
  flex-direction: row-reverse;
}
[dir="rtl"] .ticket-checks label {
  flex-direction: row-reverse;
}

/* ---------- Contact page ---------- */
.contact-page {
  padding: 50px 0 70px;
}
.contact-page h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info .item {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info .item i {
  font-size: 20px;
  color: #58469c;
  margin-top: 2px;
}
.contact-info .item h5 {
  font-size: 14px;
  margin-bottom: 6px;
}
.contact-info .item p,
.contact-info .item a {
  font-size: 13px;
  color: #b0b0b0;
}

.contact-form {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-size: 12.5px;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #171616;
  border: 1px solid rgba(238, 232, 232, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #58469c;
}

.contact-form button {
  background: #58469c;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 24px;
  width: fit-content;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: #6b56bd;
}

.contact-map {
  grid-column: 1 / -1;
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.form-success {
  color: #7ee787;
  font-size: 13px;
  margin-top: -6px;
  display: none;
}
.form-success.show {
  display: block;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* ---------- Static content pages (Services / Products / About) ---------- */
.static-page {
  padding: 50px 0 70px;
}
.static-page .eyebrow {
  color: #58469c;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.static-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.static-page .lead {
  color: #b0b0b0;
  font-size: 15px;
  max-width: 780px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.static-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 26px;
}
.static-card i {
  font-size: 22px;
  color: #58469c;
  margin-bottom: 14px;
  display: block;
}
.static-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.static-card p {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.6;
}

.static-page .faq-list {
  max-width: 820px;
}
.static-page details {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.static-page details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
}
.static-page details summary::-webkit-details-marker {
  display: none;
}
.static-page details summary::after {
  content: "+";
  float: right;
  color: #58469c;
}
.static-page details[open] summary::after {
  content: "\2212";
}
.static-page details p {
  margin-top: 12px;
  color: #b0b0b0;
  font-size: 13.5px;
  line-height: 1.6;
}

.static-page .policy-body {
  max-width: 820px;
  color: #b0b0b0;
  font-size: 13.5px;
  line-height: 1.8;
}
.static-page .policy-body h2 {
  color: #ffffff;
  font-size: 18px;
  margin: 28px 0 10px;
}
.static-page .policy-body h2:first-child {
  margin-top: 0;
}
.static-page .policy-body ul {
  padding-left: 20px;
  margin: 8px 0;
}
.static-page .policy-body li {
  margin-bottom: 6px;
}

.static-page .cta-box {
  background: #1e1e1e;
  border-radius: 14px;
  padding: 30px;
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.static-page .cta-box h4 {
  font-size: 17px;
  margin-bottom: 4px;
}
.static-page .cta-box p {
  color: #b0b0b0;
  font-size: 13px;
}
.static-page .cta-box a.btn {
  background: #58469c;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.static-page .cta-box a.btn:hover {
  background: #6b56bd;
}

.static-page .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}
.static-page .about-stats .stat {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}
.static-page .about-stats strong {
  display: block;
  font-size: 24px;
  color: #58469c;
  margin-bottom: 4px;
}
.static-page .about-stats span {
  font-size: 12.5px;
  color: #b0b0b0;
}

@media (max-width: 900px) {
  .static-grid {
    grid-template-columns: 1fr 1fr;
  }
  .static-page .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .static-grid {
    grid-template-columns: 1fr;
  }
  .static-page .about-stats {
    grid-template-columns: 1fr;
  }
  .static-page .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Service / product feature rows (with image) ---------- */
.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-row:last-child {
  border-bottom: none;
}
.svc-row-txt {
  flex: 1 1 50%;
  min-width: 0;
}
.svc-row-txt h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.svc-row-txt p {
  color: #d5d5d5;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.svc-row-txt ul {
  padding-left: 20px;
  margin: 6px 0;
}
.svc-row-txt li {
  color: #d5d5d5;
  font-size: 14px;
  line-height: 1.9;
}
.svc-row-img {
  flex: 1 1 42%;
  min-width: 0;
}
.svc-row-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

@media (max-width: 800px) {
  .svc-row {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 26px 0;
  }
  .svc-row-img img {
    height: 220px;
  }
}

/* Shared */

.confirm-wrap {
  width: 100%;
  max-width: 760px;
  margin: 70px auto;
  text-align: center;
}

.confirm-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;
}

.confirm-wrap h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}

.confirm-wrap .lead {
  color: #b9b9b9;
  font-size: 17px;
  margin-bottom: 34px;
}

.confirm-card {
  background: #202020;
  border-radius: 18px;
  padding: 34px;
}

.confirm-icon.otp {
  background: rgba(91, 84, 190, 0.18);
  color: #7d68ff;
}

.otp-card {
  max-width: 430px;
  margin: auto;
}

.otp-label {
  display: block;
  text-align: left;
  margin-bottom: 10px;

  color: #cfcfcf;
  font-size: 14px;
}

.otp-input {
  width: 100%;
  height: 58px;

  background: #141414;
  border: 1px solid #353535;
  border-radius: 12px;

  color: white;

  text-align: center;
  font-size: 28px;
  letter-spacing: 8px;

  transition: 0.2s;
}

.otp-input:focus {
  outline: none;
  border-color: #6d5cff;
  box-shadow: 0 0 0 4px rgba(109, 92, 255, 0.18);
}

.otp-btn {
  width: 100%;
  margin-top: 22px;

  height: 56px;

  border: none;
  border-radius: 12px;

  background: #6950e8;
  color: white;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.25s;
}

.otp-btn:hover {
  background: #7b63ef;
  transform: translateY(-2px);
}

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

.confirm-icon.push {
  background: rgba(59, 130, 246, 0.18);
  color: #5ca4ff;
}

.push-card {
  max-width: 480px;
  margin: auto;
  text-align: center;
}

.push-text {
  color: #bdbdbd;
  margin-top: 26px;
  font-size: 17px;
}

.spinner.large {
  width: 72px;
  height: 72px;

  margin: 0 auto;

  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.08);
  border-top-color: #6d5cff;

  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
