@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Kanit:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #2695f2;
  --color-primary-deep: #3c7bf7;
  --color-secondary: #5858fe;
  --color-accent-soft: #cccdfd;
  --color-ink: #5a5b6f;
  --color-ink-strong: #3b3d4c;
  --color-surface: #ffffff;
  --color-surface-soft: #fafaff;
  --color-surface-muted: #f4f5fb;
  --color-border: rgba(90, 91, 111, 0.12);
  --color-success: #16a34a;
  --color-error: #dc2626;
  --gradient-brand: linear-gradient(180deg, #24a2f2 0%, #3c7bf7 45%, #5858fe 100%);
  --gradient-soft: radial-gradient(circle at top, rgba(36, 162, 242, 0.25), rgba(88, 88, 254, 0) 58%);
  --shadow-card: 0 24px 60px rgba(55, 63, 111, 0.1);
  --shadow-soft: 0 16px 36px rgba(55, 63, 111, 0.08);
  --shadow-button: 0 14px 30px rgba(57, 103, 247, 0.26);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --container: min(1180px, calc(100% - 2rem));
  --section-space: clamp(4.5rem, 8vw, 7rem);
  --grid-gap: clamp(1rem, 2vw, 1.5rem);
  --header-height: 88px;
  --font-latin: 'Kanit', sans-serif;
  --font-arabic: 'IBM Plex Sans Arabic', sans-serif;
  --transition: 220ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(36, 162, 242, 0.12), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(88, 88, 254, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
  font-family: var(--font-latin);
  text-rendering: optimizeLegibility;
}

body.lang-ar {
  font-family: var(--font-arabic);
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  overflow: clip;
}

::selection {
  background: rgba(88, 88, 254, 0.2);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section.compact {
  padding-top: calc(var(--section-space) * 0.72);
  padding-bottom: calc(var(--section-space) * 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--color-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

html[lang='ar'] .eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  display: none;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2,
.hero-copy h1,
.page-hero-copy h1,
.cta-banner h2,
.article-layout h1,
.error-panel h1 {
  margin: 0;
  line-height: 0.95;
  color: var(--color-ink-strong);
  font-weight: 600;
}

html[lang='ar'] .section-head h2,
html[lang='ar'] .hero-copy h1,
html[lang='ar'] .page-hero-copy h1,
html[lang='ar'] .cta-banner h2,
html[lang='ar'] .article-layout h1,
html[lang='ar'] .error-panel h1 {
  line-height: 1.12;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 12ch;
}

.section-head p,
.hero-copy p,
.page-hero-copy p,
.lead,
.article-layout p,
.card p,
.form-card p,
.footer-panel p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(90, 91, 111, 0.82);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
}

.hero::before,
.page-hero::before,
.cta-banner::before,
.featured-spotlight::before {
  content: '';
  position: absolute;
  inset: auto 0 0 auto;
  width: clamp(220px, 34vw, 500px);
  aspect-ratio: 1;
  background: var(--gradient-soft);
  z-index: -2;
  transform: translate(25%, 15%);
}

.hero-grid,
.page-hero-grid,
.two-col,
.contact-grid,
.quote-grid,
.article-grid,
.footer-grid,
.service-detail-grid,
.project-grid,
.about-story-grid {
  display: grid;
  gap: var(--grid-gap);
}

.hero-grid,
.page-hero-grid,
.about-story-grid,
.service-detail-grid,
.project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 1.4rem;
}

.hero-copy h1,
.page-hero-copy h1,
.article-layout h1,
.error-panel h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.hero-copy p,
.page-hero-copy p {
  max-width: 56ch;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

html[lang='ar'] .hero-copy p,
html[lang='ar'] .page-hero-copy p,
html[lang='ar'] .section-head p,
html[lang='ar'] .card p,
html[lang='ar'] .form-card p,
html[lang='ar'] .testimonial-card blockquote {
  line-height: 1.95;
}

.hero-actions,
.inline-actions,
.card-actions,
.form-actions,
.pricing-actions,
.quote-actions,
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  font-weight: 500;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-button);
}

.btn-secondary {
  background: rgba(88, 88, 254, 0.08);
  color: var(--color-secondary);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(90, 91, 111, 0.16);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink-strong);
}

.stat-row,
.logo-strip,
.filter-bar,
.tag-list,
.meta-list,
.trust-grid,
.package-features,
.social-list,
.breadcrumbs,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.stat-pill,
.logo-chip,
.filter-chip,
.tag,
.meta-chip,
.pagination a,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.72);
}

.stat-pill {
  gap: 0.8rem;
  min-width: 180px;
  justify-content: flex-start;
}

.stat-pill strong {
  color: var(--color-ink-strong);
  font-size: 1.3rem;
}

.hero-visual,
.page-hero-visual,
.mock-card,
.quote-highlight,
.media-panel,
.project-visual,
.featured-spotlight,
.empty-state,
.error-panel,
.contact-card,
.form-card,
.legal-sheet,
.article-layout,
.card,
.pricing-card,
.testimonial-card,
.process-card,
.service-card,
.blog-card,
.portfolio-card,
.story-panel,
.metrics-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(90, 91, 111, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.hero-visual,
.page-hero-visual,
.project-visual,
.featured-spotlight {
  min-height: 540px;
}

.photo-hero {
  background:
    linear-gradient(180deg, rgba(20, 23, 39, 0.2), rgba(20, 23, 39, 0.42)),
    url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.brand-tower,
.brand-window,
.brand-grid,
.motif-stack {
  position: absolute;
  background: var(--gradient-brand);
}

.brand-tower {
  inset: 0 auto 0 16%;
  width: clamp(58px, 8vw, 92px);
  opacity: 0.94;
}

.brand-tower.secondary {
  inset-inline-start: 40%;
}

.brand-window {
  inset: auto 12% 0 auto;
  width: min(40%, 220px);
  height: 46%;
  border-radius: 28px 28px 0 0;
  opacity: 0.14;
  filter: blur(0.5px);
}

.motif-stack {
  inset: auto 8% 10% auto;
  width: clamp(120px, 18vw, 200px);
  aspect-ratio: 1;
  background: none;
}

.motif-stack::before,
.motif-stack::after,
.motif-stack span,
.project-motif::before,
.project-motif::after,
.project-motif span {
  content: '';
  position: absolute;
  inset: 0;
  border: 10px solid rgba(204, 205, 253, 0.96);
  clip-path: polygon(50% 0%, 100% 50%, 86% 64%, 50% 28%, 14% 64%, 0% 50%);
}

.motif-stack::after,
.project-motif::after {
  inset: 16%;
}

.motif-stack span,
.project-motif span {
  inset: 32%;
}

.hero-badge {
  position: absolute;
  inset: 2rem auto auto 2rem;
  display: grid;
  gap: 0.5rem;
  min-width: 180px;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.visual-note {
  position: absolute;
  inset: auto auto 1.6rem 1.6rem;
  max-width: 240px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(31, 35, 60, 0.5);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  line-height: 1.7;
}

.hero-badge strong,
.metric strong,
.pricing-price strong,
.contact-list strong,
.service-metric strong {
  color: var(--color-ink-strong);
  font-size: 1.6rem;
}

.grid-3,
.grid-4,
.metrics-grid,
.package-grid,
.contact-list,
.faq-grid,
.blog-grid,
.portfolio-grid,
.service-grid,
.stats-grid,
.values-grid,
.team-grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid-3,
.service-grid,
.blog-grid,
.portfolio-grid,
.metrics-grid,
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.contact-list,
.values-grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.process-card,
.testimonial-card,
.blog-card,
.portfolio-card,
.pricing-card,
.story-panel,
.metrics-panel,
.contact-card,
.form-card,
.legal-sheet,
.article-layout,
.empty-state,
.error-panel {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.card h3,
.service-card h3,
.process-card h3,
.testimonial-card h3,
.blog-card h3,
.portfolio-card h3,
.pricing-card h3,
.story-panel h3,
.contact-card h3,
.form-card h3,
.empty-state h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--color-ink-strong);
}

.icon-tile {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(88, 88, 254, 0.08);
  color: var(--color-secondary);
  font-weight: 700;
}

.kicker {
  color: var(--color-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang='ar'] .kicker {
  letter-spacing: 0;
  text-transform: none;
}

.metrics-panel {
  min-height: 100%;
  align-content: space-between;
}

.metrics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(250, 250, 255, 0.86);
  border: 1px solid rgba(90, 91, 111, 0.08);
}

.process-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 162, 242, 0), rgba(36, 162, 242, 0.5), rgba(88, 88, 254, 0));
  margin: 1rem 0;
}

.testimonial-card blockquote,
.article-intro {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--color-ink-strong);
}

.logo-strip {
  justify-content: center;
}

.logo-chip {
  min-width: 140px;
  color: rgba(90, 91, 111, 0.64);
  font-weight: 500;
}

.featured-spotlight {
  min-height: 380px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid;
  align-content: end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(31, 35, 60, 0.1), rgba(31, 35, 60, 0.74)),
    var(--gradient-brand);
}

.featured-spotlight.banner-case {
  background:
    linear-gradient(180deg, rgba(16, 20, 36, 0.18), rgba(16, 20, 36, 0.8)),
    linear-gradient(90deg, rgba(36, 162, 242, 0.2), rgba(88, 88, 254, 0.08)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.featured-spotlight h3,
.featured-spotlight p,
.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.portfolio-card .portfolio-media,
.blog-card .blog-media,
.service-hero-mini,
.project-media-grid .media-panel {
  min-height: 220px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(31, 35, 60, 0.14), rgba(31, 35, 60, 0.18)),
    var(--gradient-brand);
}

.portfolio-media.media-edit {
  background:
    linear-gradient(180deg, rgba(19, 22, 35, 0.12), rgba(19, 22, 35, 0.4)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80') center/cover;
}

.portfolio-media.media-food {
  background:
    linear-gradient(180deg, rgba(19, 22, 35, 0.12), rgba(19, 22, 35, 0.34)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=900&q=80') center/cover;
}

.portfolio-media.media-event {
  background:
    linear-gradient(180deg, rgba(19, 22, 35, 0.12), rgba(19, 22, 35, 0.42)),
    url('https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=900&q=80') center/cover;
}

.blog-card .blog-media,
.media-panel.photo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(90, 91, 111, 0.16)),
    linear-gradient(135deg, rgba(36, 162, 242, 0.72), rgba(88, 88, 254, 0.88));
}

.service-hero-mini {
  min-height: 280px;
}

.filter-bar {
  margin-bottom: 2rem;
}

.filter-chip,
.language-toggle button {
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.filter-chip.active,
.language-toggle button.active {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}

.pricing-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 246, 255, 0.96));
  border-color: rgba(88, 88, 254, 0.26);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.package-features {
  flex-direction: column;
}

.package-features span,
.contact-list li,
.check-list li,
.deliverables-list li,
.faq-item summary {
  list-style: none;
}

.package-features span::before,
.check-list li::before,
.deliverables-list li::before {
  content: '•';
  color: var(--color-secondary);
  margin-inline-end: 0.55rem;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-panel,
.quote-highlight {
  padding: clamp(1.6rem, 3vw, 2rem);
}

.check-list,
.deliverables-list,
.contact-list,
.meta-list,
.package-features {
  margin: 0;
  padding: 0;
}

.breadcrumbs {
  padding-top: calc(var(--header-height) + 1.2rem);
}

.breadcrumbs a,
.breadcrumbs span {
  opacity: 0.84;
}

.contact-grid,
.quote-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-list {
  gap: 1rem;
}

.contact-list li {
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: rgba(250, 250, 255, 0.84);
}

form {
  display: grid;
  gap: 1rem;
}

.form-row,
.quote-steps,
.faq-grid,
.project-media-grid,
.article-meta {
  display: grid;
  gap: 1rem;
}

.form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--color-ink-strong);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(90, 91, 111, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.95rem 1rem;
  color: var(--color-ink-strong);
  transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(88, 88, 254, 0.4);
  box-shadow: 0 0 0 4px rgba(88, 88, 254, 0.12);
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  font-size: 0.95rem;
}

.form-status.success {
  display: block;
  background: rgba(22, 163, 74, 0.12);
  color: var(--color-success);
}

.form-status.error {
  display: block;
  background: rgba(220, 38, 38, 0.12);
  color: var(--color-error);
}

.quote-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-chip {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.7);
}

.project-grid {
  align-items: start;
}

.project-overview,
.project-summary,
.article-sidebar {
  display: grid;
  gap: 1rem;
}

.project-media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-motif {
  position: absolute;
  inset: auto 8% 10% auto;
  width: 170px;
  aspect-ratio: 1;
}

.article-grid {
  grid-template-columns: 1.15fr 0.55fr;
  align-items: start;
}

.article-layout,
.legal-sheet {
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

.article-layout h2,
.legal-sheet h2 {
  margin: 2rem 0 0.8rem;
  color: var(--color-ink-strong);
}

.article-layout ul,
.legal-sheet ul {
  padding-inline-start: 1.2rem;
  line-height: 1.8;
}

.faq-item {
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.8);
  padding: 0 1.15rem;
}

.faq-item summary {
  padding: 1.1rem 0;
  font-weight: 500;
  color: var(--color-ink-strong);
  cursor: pointer;
}

.faq-item p {
  padding-bottom: 1rem;
}

.cta-banner,
.footer-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.cta-banner {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 35, 60, 0.14), rgba(31, 35, 60, 0.18)),
    var(--gradient-brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(90, 91, 111, 0.08);
}

.site-header > .container:not(.mobile-menu),
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  color: var(--color-ink-strong);
}

.site-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-nav ul,
.mobile-menu nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links,
.footer-links ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-items: flex-end;
}

.footer-links li {
  list-style: none;
}

.site-nav a,
.footer-links a,
.mobile-menu a {
  position: relative;
  color: rgba(90, 91, 111, 0.84);
}

.footer-links a {
  display: inline-flex;
  justify-content: flex-end;
  text-align: end;
}

.site-nav a.active,
.site-nav a:hover,
.footer-links a:hover,
.mobile-menu a:hover {
  color: var(--color-ink-strong);
}

.header-actions,
.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.language-toggle {
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(90, 91, 111, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.language-toggle button,
.menu-toggle {
  border: 0;
  background: transparent;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(90, 91, 111, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.mobile-menu {
  display: none;
  gap: 1rem;
  padding-bottom: 1rem;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav ul {
  flex-direction: column;
  align-items: flex-start;
}

.section-actions {
  margin-top: 1.5rem;
}

html[dir='rtl'] .hero-badge {
  inset: 2rem 2rem auto auto;
}

html[dir='rtl'] .visual-note {
  inset: auto 1.6rem 1.6rem auto;
}

html[dir='rtl'] .brand-window {
  inset: auto auto 0 12%;
}

html[dir='rtl'] .motif-stack,
html[dir='rtl'] .project-motif {
  inset: auto auto 10% 8%;
}

.virtual-tour-hero {
  overflow: clip;
}

.virtual-tour-hero-grid,
.tour-offer-grid,
.tour-reason-grid {
  display: grid;
  gap: var(--grid-gap);
}

.virtual-tour-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.tour-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 42rem;
}

.tour-stat-chip {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(90, 91, 111, 0.1);
  box-shadow: var(--shadow-soft);
}

.tour-stat-chip strong {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1;
  color: var(--color-ink-strong);
}

.tour-stat-chip span {
  line-height: 1.6;
  color: rgba(90, 91, 111, 0.76);
}

.virtual-tour-stage {
  position: relative;
  min-height: 610px;
  padding: 2rem 0 1rem;
  isolation: isolate;
}

.virtual-tour-stage::before,
.virtual-tour-stage::after {
  content: '';
  position: absolute;
  inset-inline: 1rem;
  border-radius: 40px;
}

.virtual-tour-stage::before {
  inset-block: 4rem 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 245, 251, 0.9));
  border: 1px solid rgba(90, 91, 111, 0.08);
  box-shadow: var(--shadow-card);
  z-index: -2;
}

.virtual-tour-stage::after {
  inset-block: 1.5rem 0.5rem;
  background:
    radial-gradient(circle at 70% 78%, rgba(60, 123, 247, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(36, 162, 242, 0.08), rgba(88, 88, 254, 0.02)),
    repeating-linear-gradient(135deg, rgba(88, 88, 254, 0.05) 0 14px, transparent 14px 28px);
  z-index: -3;
}

.tour-price-badge {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 1.5rem;
  width: min(240px, 48%);
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #24a2f2 0%, #3c7bf7 46%, #5858fe 100%);
  color: #fff;
  box-shadow: var(--shadow-button);
  z-index: 3;
}

.tour-price-badge span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

html[lang='ar'] .tour-price-badge span {
  letter-spacing: 0;
  text-transform: none;
}

.tour-price-badge strong {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.tour-price-badge small {
  line-height: 1.7;
  opacity: 0.95;
}

.tour-photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(90, 91, 111, 0.08);
}

.tour-photo-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(19, 22, 35, 0), rgba(19, 22, 35, 0.56));
  pointer-events: none;
}

.tour-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-photo-card.primary {
  inset-inline-start: 1rem;
  inset-inline-end: 8.5rem;
  inset-block-start: 6.2rem;
  height: 402px;
}

.tour-photo-card.secondary {
  inset-inline-start: 0;
  inset-inline-end: 1.5rem;
  inset-block-end: 1.5rem;
  width: min(260px, 42%);
  height: 220px;
}

.tour-photo-card figcaption {
  position: absolute;
  inset-inline: 1rem;
  inset-block-end: 1rem;
  z-index: 1;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}

.tour-photo-card.secondary .tour-rotation-badge {
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
}

.tour-camera-card {
  position: absolute;
  inset-inline-start: 0.5rem;
  inset-block-start: 5rem;
  width: 128px;
  height: 392px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.75rem;
  padding: 1rem 0.9rem 5.7rem;
  border-radius: 34px;
  background: linear-gradient(180deg, #48506d 0%, #1a2031 42%, #0d1018 100%);
  box-shadow: 0 36px 60px rgba(17, 21, 34, 0.32);
  z-index: 2;
}

.tour-camera-lens {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #83ddff, #202638 42%, #080a10 70%);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.09);
}

.tour-camera-screen {
  width: 100%;
  min-height: 84px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #1d2335 0%, #0c1019 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.tour-camera-stem {
  width: 10px;
  height: 70px;
  margin-top: auto;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #394057 0%, #111620 100%);
}

.tour-camera-tripod {
  position: absolute;
  inset-block-end: -48px;
  width: 4px;
  height: 86px;
  border-radius: var(--radius-pill);
  background: #171c28;
  transform-origin: top;
}

.tour-camera-tripod.tripod-left {
  transform: translateX(-22px) rotate(24deg);
}

.tour-camera-tripod.tripod-center {
  transform: translateX(0) rotate(0);
}

.tour-camera-tripod.tripod-right {
  transform: translateX(22px) rotate(-24deg);
}

.tour-experience-card {
  position: absolute;
  inset-inline-start: 7.5rem;
  inset-inline-end: 3.5rem;
  inset-block-start: 8.5rem;
  min-height: 364px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  z-index: 1;
}

.tour-ui-bar {
  display: flex;
  gap: 0.4rem;
}

.tour-ui-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(90, 91, 111, 0.18);
}

.tour-room-scene,
.tour-thumb-row span,
.tour-phone-screen,
.tour-panorama-card {
  background:
    linear-gradient(180deg, rgba(19, 22, 35, 0.08), rgba(19, 22, 35, 0.36)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.tour-room-scene {
  position: relative;
  min-height: 258px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.1rem;
  border-radius: 24px;
  overflow: hidden;
}

.tour-room-scene::after,
.tour-panorama-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(19, 22, 35, 0), rgba(19, 22, 35, 0.36));
}

.tour-rotation-badge,
.tour-panorama-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink-strong);
  font-weight: 600;
}

.tour-scene-icons {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
}

.tour-scene-icons span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(90, 91, 111, 0.1);
  box-shadow: var(--shadow-soft);
}

.tour-thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.tour-thumb-row span {
  display: block;
  height: 52px;
  border-radius: 16px;
}

.tour-phone-card {
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 1.25rem;
  width: 122px;
  height: 240px;
  padding: 0.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #24283b 0%, #0f131d 100%);
  box-shadow: 0 28px 42px rgba(17, 21, 34, 0.28);
  z-index: 2;
}

.tour-phone-notch {
  display: block;
  width: 42%;
  height: 12px;
  margin: 0 auto 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
}

.tour-phone-screen {
  position: relative;
  height: calc(100% - 22px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem 0.5rem;
  border-radius: 22px;
  overflow: hidden;
}

.tour-phone-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.tour-offer-grid {
  grid-template-columns: minmax(0, 0.94fr) repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.tour-offer-card,
.tour-reason-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2rem);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 91, 111, 0.1);
  box-shadow: var(--shadow-soft);
}

.tour-offer-card.featured {
  color: #fff;
  background: linear-gradient(180deg, #24a2f2 0%, #3c7bf7 46%, #5858fe 100%);
  box-shadow: var(--shadow-button);
}

.tour-offer-card.featured .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.tour-offer-card.featured .eyebrow::before {
  background: #fff;
}

.tour-offer-card.featured p,
.tour-offer-card.featured .tour-note {
  color: rgba(255, 255, 255, 0.92);
}

.tour-price-lockup {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
}

.tour-price-lockup strong {
  font-size: clamp(4.2rem, 10vw, 5.8rem);
  line-height: 0.9;
  color: inherit;
}

.tour-price-lockup span {
  font-size: 1.4rem;
  font-weight: 600;
  color: inherit;
}

.tour-note {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 500;
}

.tour-offer-card h3 {
  margin: 0;
  font-size: 1.45rem;
  color: var(--color-ink-strong);
}

.tour-bullet-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.tour-bullet-list li {
  display: flex;
  gap: 0.7rem;
  list-style: none;
  line-height: 1.8;
  color: rgba(90, 91, 111, 0.86);
}

.tour-bullet-list li::before {
  content: '';
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 0.72rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 4px rgba(88, 88, 254, 0.08);
}

.tour-reason-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.tour-panorama-card {
  position: relative;
  min-height: 290px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.tour-panorama-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.tour-panorama-badge {
  position: absolute;
  inset-block-start: 1.25rem;
  inset-inline-start: 1.25rem;
}

.tour-panorama-track {
  position: absolute;
  inset-inline: 1.25rem;
  inset-block-end: 1.25rem;
  z-index: 1;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
}

.tour-panorama-track::after {
  content: '';
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.64));
}

.tour-reason-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-ink-strong);
}

.tour-use-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tour-use-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(36, 162, 242, 0.08);
  border: 1px solid rgba(60, 123, 247, 0.14);
  color: var(--color-ink-strong);
}

.tour-contact-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 34px;
  background: linear-gradient(90deg, #24a2f2 0%, #3c7bf7 52%, #5858fe 100%);
  box-shadow: var(--shadow-button);
  color: #fff;
}

.tour-phone-pill {
  display: grid;
  gap: 0.3rem;
  min-width: min(100%, 290px);
  padding: 0.95rem 1.25rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-ink-strong);
}

.tour-phone-pill span {
  color: var(--color-primary-deep);
}

.tour-phone-pill strong {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.9;
  direction: ltr;
  unicode-bidi: bidi-override;
}

.tour-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.tour-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tour-trust-row span::before {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #fff;
}

.tour-contact-bar .hero-actions {
  justify-content: flex-end;
}

.tour-contact-bar .btn-primary {
  background: #fff;
  color: var(--color-primary-deep);
  box-shadow: none;
}

.tour-contact-bar .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.tour-contact-bar .btn-outline:hover,
.tour-contact-bar .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.footer {
  padding: 2rem 0 1.6rem;
}

.footer-panel {
  padding: clamp(1.7rem, 4vw, 2.6rem);
  background: linear-gradient(180deg, #1f2235 0%, #2b2f49 100%);
}

.footer-grid {
  min-height: auto;
  align-items: start;
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid .site-logo,
.footer-grid h3,
.footer-bottom strong {
  color: #fff;
}

.footer-grid .site-logo img {
  width: 60px;
  height: 60px;
}

.footer-brand,
.footer-nav,
.footer-social {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
}

.footer-nav {
  width: max-content;
}

html[lang='ar'] .footer-brand,
html[lang='ar'] .footer-nav {
  justify-self: end;
  justify-items: end;
  text-align: end;
}

html[lang='en'] .footer-brand,
html[lang='en'] .footer-nav {
  justify-self: start;
  justify-items: start;
  text-align: start;
}

.footer-social {
  justify-self: start;
  justify-items: start;
}

.footer-links,
.footer-links ul,
.social-list {
  justify-content: flex-end;
}

.footer-nav .footer-links,
.footer-nav .footer-links ul {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1.4rem;
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
}

.footer-meta {
  display: grid;
  gap: 0.5rem;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.footer-brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-copy {
  display: grid;
  gap: 0.1rem;
}

.footer-brand-copy span {
  color: #fff;
}

.footer-brand-copy small {
  color: rgba(255, 255, 255, 0.66);
}

.social-link {
  min-width: 44px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.reveal,
.d-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible,
.d-reveal.is-visible,
.d-reveal.visible {
  opacity: 1;
  transform: none;
}

body:not(.lang-ar) .hold-lang-ar {
  display: none !important;
}

body.lang-ar .hold-lang-en {
  display: none !important;
}

.hold-bg-image-widget {
  background: none !important;
  overflow: hidden;
}

.hold-bg-image-widget .elementor-widget-container,
.hold-bg-image-widget .elementor-image {
  height: 100%;
}

.hold-bg-image-widget img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Elementor layout compatibility for seeded starter pages */
:is(
  .page-hero-grid,
  .hero-grid,
  .two-col,
  .contact-grid,
  .quote-grid,
  .article-grid,
  .service-detail-grid,
  .project-grid,
  .about-story-grid,
  .grid-3,
  .grid-4,
  .metrics-grid,
  .package-grid,
  .contact-list,
  .faq-grid,
  .blog-grid,
  .portfolio-grid,
  .service-grid,
  .stats-grid,
  .values-grid,
  .team-grid,
  .form-row,
  .quote-steps,
  .project-media-grid,
  .article-meta,
  .virtual-tour-hero-grid,
  .tour-offer-grid,
  .tour-reason-grid,
  .tour-stat-row,
  .tour-contact-bar
) > .elementor-element {
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
}

:is(
  .hero-actions,
  .inline-actions,
  .card-actions,
  .form-actions,
  .pricing-actions,
  .quote-actions,
  .error-actions,
  .stat-row,
  .logo-strip,
  .filter-bar,
  .tag-list,
  .meta-list,
  .trust-grid,
  .social-list,
  .breadcrumbs,
  .pagination,
  .tour-trust-row,
  .tour-use-grid
) {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

:is(
  .hero-actions,
  .inline-actions,
  .card-actions,
  .form-actions,
  .pricing-actions,
  .quote-actions,
  .error-actions,
  .stat-row,
  .logo-strip,
  .filter-bar,
  .tag-list,
  .meta-list,
  .trust-grid,
  .social-list,
  .breadcrumbs,
  .pagination,
  .tour-trust-row,
  .tour-use-grid
) > .elementor-element {
  flex: 0 0 auto;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
}

[data-dir-flip='true'] {
  transition: transform var(--transition);
}

html[dir='rtl'] [data-dir-flip='true'] {
  transform: scaleX(-1);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .grid-4,
  .contact-list,
  .values-grid,
  .stats-grid,
  .quote-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .service-grid,
  .blog-grid,
  .portfolio-grid,
  .metrics-grid,
  .team-grid,
  .project-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .page-hero-grid,
  .two-col,
  .contact-grid,
  .quote-grid,
  .article-grid,
  .service-detail-grid,
  .project-grid,
  .about-story-grid,
  .virtual-tour-hero-grid,
  .tour-offer-grid,
  .tour-reason-grid,
  .tour-contact-bar {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .page-hero-visual,
  .project-visual,
  .featured-spotlight {
    min-height: 420px;
  }

  .virtual-tour-stage {
    max-width: 760px;
    margin: 0 auto;
  }

  .tour-contact-bar .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header .container {
    grid-template-columns: auto auto auto;
  }

  .site-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-grid,
  .footer-bottom {
    justify-items: start;
  }

  .footer-brand,
  .footer-nav,
  .footer-social {
    width: 100%;
    justify-self: start;
    justify-items: start;
    text-align: start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-links,
  .social-list {
    justify-content: flex-start;
  }

  .footer-links,
  .footer-links ul {
    justify-items: flex-start;
  }

  .footer-links a {
    justify-content: flex-start;
    text-align: start;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 1.25rem, 1180px);
    --header-height: 76px;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .article-layout h1,
  .error-panel h1 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .section-head h2 {
    max-width: none;
  }

  .grid-3,
  .grid-4,
  .service-grid,
  .blog-grid,
  .portfolio-grid,
  .metrics-grid,
  .values-grid,
  .team-grid,
  .contact-list,
  .quote-steps,
  .project-media-grid,
  .form-row,
  .stats-grid,
  .tour-stat-row {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    position: relative;
    inset: auto;
    margin: 1.2rem;
  }

  .brand-tower {
    inset-inline-start: 10%;
  }

  .brand-tower.secondary {
    inset-inline-start: 34%;
  }

  .motif-stack,
  .project-motif {
    width: 120px;
  }

  .stat-pill,
  .btn,
  .filter-chip,
  .language-toggle button,
  .pagination a,
  .tour-phone-pill {
    width: 100%;
  }

  .virtual-tour-stage {
    min-height: 500px;
    padding-top: 5.25rem;
  }

  .virtual-tour-stage::before {
    inset-inline: 0;
    inset-block: 3.5rem 1.5rem;
  }

  .virtual-tour-stage::after {
    inset-inline: 0.35rem;
    inset-block: 2.25rem 0.35rem;
  }

  .tour-price-badge {
    inset-inline: 0.75rem;
    inset-block-start: 0;
    width: auto;
  }

  .tour-photo-card.primary {
    inset-inline-start: 0;
    inset-inline-end: 5.25rem;
    inset-block-start: 6.8rem;
    height: 310px;
  }

  .tour-photo-card.secondary {
    inset-inline-end: 0.35rem;
    inset-block-end: 0.75rem;
    width: min(180px, 38%);
    height: 150px;
  }

  .tour-photo-card figcaption {
    inset-inline: 0.8rem;
    inset-block-end: 0.8rem;
    font-size: 0.88rem;
  }

  .tour-camera-card {
    inset-inline-start: 0;
    inset-block-start: 6.2rem;
    width: 92px;
    height: 300px;
    padding: 0.75rem 0.6rem 4.8rem;
  }

  .tour-camera-lens {
    width: 40px;
    height: 40px;
  }

  .tour-camera-screen {
    min-height: 64px;
    font-size: 0.9rem;
  }

  .tour-camera-stem {
    height: 48px;
  }

  .tour-camera-tripod {
    height: 72px;
    inset-block-end: -42px;
  }

  .tour-experience-card {
    inset-inline-start: 3.75rem;
    inset-inline-end: 2.2rem;
    inset-block-start: 8.8rem;
    min-height: 275px;
    padding: 0.75rem;
  }

  .tour-room-scene {
    min-height: 200px;
  }

  .tour-thumb-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tour-thumb-row span:last-child {
    display: none;
  }

  .tour-phone-card {
    width: 88px;
    height: 180px;
    inset-block-end: 0.75rem;
  }

  .tour-phone-ring {
    width: 50px;
    height: 50px;
    font-size: 0.85rem;
  }

  .tour-contact-bar {
    padding: 1rem;
  }

  .hero-actions,
  .inline-actions,
  .card-actions,
  .form-actions,
  .pricing-actions,
  .quote-actions,
  .error-actions,
  .filter-bar,
  .tag-list,
  .meta-list,
  .breadcrumbs,
  .pagination {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
