/* public/assets/css/landing.css */
/* Mohmaa Landing — Bootstrap 5 + GSAP + Animate.css */

:root {
  --gold: #d2b04c;
  --gold-2: #f3d37c;
  --ink: #0b0d10;
  --ink-2: #11151a;
  --card: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.14);
  --muted: rgba(255, 255, 255, 0.68);
  --text: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.18);
  --radius: 18px;

  /* typography */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
}

html[data-theme='light'] {
  --ink: #f7f7f7;
  --ink-2: #ffffff;
  --card: rgba(10, 15, 20, 0.04);
  --line: rgba(10, 15, 20, 0.12);
  --muted: rgba(10, 15, 20, 0.62);
  --text: rgba(10, 15, 20, 0.92);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body.mohmaa {
  background: radial-gradient(1200px 600px at 80% -20%, rgba(210, 176, 76, 0.25), transparent 65%),
    radial-gradient(800px 500px at 10% 10%, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
  color: var(--text);
  --bs-body-bg: transparent;
  --bs-body-color: var(--text);
  --bs-secondary-color: var(--muted);
  --bs-tertiary-color: var(--muted);
  --bs-border-color: var(--line);
  overflow-x: hidden;
}

html[dir='rtl'] body.mohmaa {
  font-family: 'Cairo', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

html[dir='ltr'] body.mohmaa {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

a {
  text-decoration: none;
}

/* Buttons */
.btn-gold {
  --bs-btn-color: #111;
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: var(--gold-2);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-bg: var(--gold-2);
  border-radius: 14px;
  font-weight: var(--fw-medium);
  box-shadow: 0 10px 26px rgba(210, 176, 76, 0.25);
}

.btn-outline-gold {
  --bs-btn-color: var(--text);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: rgba(210, 176, 76, 0.7);
  --bs-btn-hover-bg: rgba(210, 176, 76, 0.12);
  --bs-btn-hover-border-color: rgba(210, 176, 76, 0.95);
  --bs-btn-active-bg: rgba(210, 176, 76, 0.18);
  border-radius: 14px;
  font-weight: var(--fw-medium);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.btn-ghost:hover {
  background: rgba(210, 176, 76, 0.1);
  border-color: rgba(210, 176, 76, 0.35);
}

.btn-ghost-circle {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(210, 176, 76, 0.16);
  border: 1px solid rgba(210, 176, 76, 0.35);
  color: var(--text);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.btn-ghost-circle:hover {
  background: rgba(210, 176, 76, 0.26);
}

/* Header */
.mohmaa-topbar {
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid var(--line);
}

html[data-theme='light'] .mohmaa-topbar {
  background: rgba(255, 255, 255, 0.6);
}

.topbar-icon {
  color: var(--muted);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
}

.topbar-icon:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.mohmaa-navbar {
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

/* Bootstrap dropdowns (ensure readable in light/dark) */
.dropdown-menu {
  border-color: var(--line);
  background: rgba(16, 18, 22, 0.92);
  box-shadow: var(--shadow-soft);
}

html[data-theme='light'] .dropdown-menu {
  background: rgba(255, 255, 255, 0.96);
}

.dropdown-item {
  color: var(--text);
  font-weight: var(--fw-medium);
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--text);
  background: rgba(210, 176, 76, 0.12);
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--text);
  background: rgba(210, 176, 76, 0.18);
}

/* Pattern grid (header + footer + hero) */
.mohmaa-topbar,
.mohmaa-navbar,
.mohmaa-hero,
.footer-top,
.footer-main {
  position: relative;
}

.mohmaa-topbar::before,
.mohmaa-navbar::before,
.mohmaa-hero::before,
.footer-top::before,
.footer-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-grid.svg');
  background-repeat: repeat;
  background-size: 520px auto;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

.mohmaa-topbar>.container,
.mohmaa-navbar>.container,
.footer-top>.container,
.footer-main>.container,
.mohmaa-hero>.container {
  position: relative;
  z-index: 1;
}

html[data-theme='light'] .mohmaa-topbar::before,
html[data-theme='light'] .mohmaa-navbar::before,
html[data-theme='light'] .mohmaa-hero::before,
html[data-theme='light'] .footer-top::before,
html[data-theme='light'] .footer-main::before {
  opacity: 0.1;
  mix-blend-mode: multiply;
}

html[data-theme='light'] .mohmaa-navbar {
  background: rgba(255, 255, 255, 0.72);
}

.navbar-toggler {
  border-color: var(--line);
  border-radius: 14px;
  padding: 8px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(210, 176, 76, 0.18);
}

.navbar-toggler-icon {
  filter: grayscale(1);
  opacity: 0.85;
}

html[data-theme='light'] .navbar-toggler-icon {
  filter: none;
  opacity: 0.75;
}

.mohmaa-navbar .navbar-nav .nav-link {
  color: var(--muted);
  font-weight: var(--fw-medium);
  letter-spacing: 0.2px;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
}

.mohmaa-navbar .navbar-nav .nav-link:hover {
  color: var(--text);
  background: rgba(210, 176, 76, 0.1);
}

.mohmaa-navbar .navbar-nav .nav-link.active {
  color: var(--text);
  background: rgba(210, 176, 76, 0.14);
  border: 1px solid rgba(210, 176, 76, 0.22);
}

.brand-logo {
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.brand-logo-light {
  display: none;
}

html[data-theme='light'] .brand-logo-dark {
  display: none;
}

html[data-theme='light'] .brand-logo-light {
  display: block;
}

/* Hero */
.mohmaa-hero {
  position: relative;
  padding: 90px 0 40px;
}

.mohmaa-hero .hero-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 15% 30%, rgba(210, 176, 76, 0.26), transparent 60%),
    radial-gradient(700px 520px at 85% 10%, rgba(255, 255, 255, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05));
  pointer-events: none;
  z-index: 0;
  filter: none;
  opacity: 1;
}

html[data-theme='light'] .mohmaa-hero .hero-pattern {
  background-image: url(../img/pattern-grid.svg);
  background-repeat: repeat;
  background-size: 820px auto;
  filter: invert(1);
  opacity: 0.5;
}

html[data-theme='dark'] .hero-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../img/pattern-grid.svg);
  background-repeat: repeat;
  background-size: 820px auto;
  opacity: 0.2;
}

.hero-kicker {
  display: inline-block;
  color: var(--gold);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.2px;
  background: rgba(210, 176, 76, 0.1);
  border: 1px solid rgba(210, 176, 76, 0.18);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-title {
  margin-top: 16px;
  font-weight: var(--fw-semibold);
  line-height: 1.15;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-top: 12px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.hero-list i {
  color: var(--gold);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0.95;
}

.hero-visual {
  position: relative;
  height: 520px;
  border-radius: 28px;
}

.hero-visual .glow {
  position: absolute;
  inset: 20px 0 0 0;
  background: radial-gradient(340px 240px at 30% 20%, rgba(210, 176, 76, 0.35), transparent 65%),
    radial-gradient(380px 260px at 75% 45%, rgba(255, 255, 255, 0.1), transparent 70%);
  filter: blur(8px);
}

.device {
  position: absolute;
  width: 58%;
  max-width: 330px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.03);
}

.device img {
  width: 100%;
  height: auto;
  display: block;
}

.device-a {
  left: 0;
  top: 35px;
  transform: rotate(-8deg);
}

.device-b {
  left: 26%;
  top: 140px;
  transform: rotate(6deg);
  width: 54%;
}

.device-c {
  left: 10%;
  top: 285px;
  transform: rotate(-4deg);
  width: 46%;
}

html[dir='rtl'] .device-a {
  right: 0;
  left: auto;
  transform: rotate(8deg);
}

html[dir='rtl'] .device-b {
  right: 26%;
  left: auto;
  transform: rotate(-6deg);
}

html[dir='rtl'] .device-c {
  right: 10%;
  left: auto;
  transform: rotate(4deg);
}

.hero-more {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

html[dir='rtl'] .hero-more {
  right: 14px;
  left: auto;
}

.hero-more-text {
  color: var(--text);
  font-weight: var(--fw-medium);
  opacity: 0.92;
}

/* Sections */
.mohmaa-section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-title {
  font-weight: var(--fw-semibold);
  letter-spacing: 0.2px;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
}

.section-subtitle {
  color: var(--muted);
  max-width: 860px;
  margin: 8px auto 0;
}

/* Partners */
.mohmaa-partners {
  padding-top: 40px;
}

.partners-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.partner-logo {
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

.partner-logo img {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .partners-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .partners-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* About */
.about-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);
  opacity: 0.8;
  background-image: url(../img/pattern-grid.svg);
}

html[data-theme='light'] .about-bg {
  background-image: url(../img/pattern-grid.svg);
  filter: invert(1);
  opacity: 1;
  background-size: 100%;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}

html[data-theme='light'] .about-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
}

.about-content {
  position: relative;
  padding: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: var(--fw-medium);
  font-size: 0.92rem;
}

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

.mini-card {
  display: flex;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.mini-card-soft {
  background: rgba(210, 176, 76, 0.08);
  border-color: rgba(210, 176, 76, 0.2);
}

.mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 176, 76, 0.14);
  border: 1px solid rgba(210, 176, 76, 0.25);
  color: var(--gold);
  font-size: 20px;
}

.mini-title {
  margin: 2px 0 6px;
  font-weight: var(--fw-semibold);
  font-size: 1.05rem;
}

.mini-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* Feature cards */
.feature-card {
  height: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.fc-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 176, 76, 0.12);
  border: 1px solid rgba(210, 176, 76, 0.25);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 14px;
}

.fc-title {
  font-weight: var(--fw-semibold);
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.fc-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.asset-placeholder {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
  padding: 12px;
  display: block;
}

.asset-placeholder .asset-image {
  background-image: url('../img/screens/erp-dashboard.png');
  background-size: contain !important;
  background-repeat: no-repeat !important;

  background-position: center !important;

  aspect-ratio: 1.77777777778 !important;
  width: 100%;
  border-radius: 12px;



}

html[data-theme='dark'] .asset-placeholder .asset-image {
  background-image: url('../img/screens/erp-dashboard-dark.png');

}

/* Icon list cards */
.icon-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.ic-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 176, 76, 0.12);
  border: 1px solid rgba(210, 176, 76, 0.25);
  color: var(--gold);
  font-size: 18px;
}

.ic-text {
  font-weight: var(--fw-medium);
  color: var(--text);
}

/* Workflow */
.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.workflow-step {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  position: relative;
  min-height: 170px;
}

.workflow-step::after {
  content: '';
  position: absolute;
  top: 26px;
  left: -14px;
  width: 28px;
  height: 2px;
  background: rgba(210, 176, 76, 0.35);
}

html[dir='rtl'] .workflow-step::after {
  left: auto;
  right: -14px;
}

.workflow-step:first-child::after {
  display: none;
}

.ws-number {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-semibold);
  color: #111;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(210, 176, 76, 0.2);
  margin-bottom: 12px;
}

.ws-title {
  font-weight: var(--fw-semibold);
  margin-bottom: 6px;
}

.ws-desc {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.workflow-cta {
  margin-top: 22px;
}

.workflow-cta-card {
  border-radius: 24px;
  border: 1px solid rgba(210, 176, 76, 0.25);
  background: radial-gradient(800px 300px at 30% 20%, rgba(210, 176, 76, 0.25), transparent 65%), rgba(255, 255, 255, 0.02);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.wcc-title {
  font-weight: var(--fw-semibold);
  font-size: 1.2rem;
}

.wcc-text {
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}

@media (max-width: 992px) {
  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow-step::after {
    display: none;
  }
}

/* Testimonials */
.testimonial-card {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 26px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.tc-quote {
  font-size: 58px;
  line-height: 1;
  color: rgba(210, 176, 76, 0.65);
  margin-bottom: 10px;
}

.tc-text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 2;
  margin: 0 0 16px;
}

.tc-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: radial-gradient(22px 18px at 30% 30%, rgba(210, 176, 76, 0.7), transparent 70%), rgba(255, 255, 255, 0.04);
}

.tc-name {
  font-weight: var(--fw-semibold);
}

.tc-role {
  color: var(--muted);
  font-size: 0.9rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(1);
  opacity: 0.8;
}

html[data-theme='light'] .carousel-control-prev-icon,
html[data-theme='light'] .carousel-control-next-icon {
  filter: none;
}

/* FAQ */
.mohmaa-accordion .accordion-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
}

.mohmaa-accordion .accordion-button {
  background: transparent;
  color: var(--text);
  font-weight: var(--fw-semibold);
}

.mohmaa-accordion .accordion-button:not(.collapsed) {
  background: rgba(210, 176, 76, 0.1);
  color: var(--text);
}

.mohmaa-accordion .accordion-body {
  color: var(--muted);
  line-height: 1.9;
}

/* Contact */
.contact-hero {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-map {
  position: relative;
  height: 220px;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(210, 176, 76, 0.1), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05));
  margin-bottom: 18px;
}

html[data-theme='light'] .contact-map {
  background: radial-gradient(circle at 50% 50%, rgba(210, 176, 76, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.52));
}

.map-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.22;
}

html[data-theme='light'] .map-dots {
  opacity: 0.3;
  background-image: radial-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(210, 176, 76, 0.18), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.contact-metric {
  text-align: center;
  padding: 10px 12px;
}

.cm-title {
  color: var(--muted);
  font-weight: var(--fw-medium);
}

.cm-value {
  color: var(--text);
  font-weight: var(--fw-semibold);
  margin-top: 6px;
}

.contact-side {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 22px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.cs-title {
  font-weight: var(--fw-semibold);
  margin-bottom: 14px;
}

.cs-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 12px;
}

.cs-item i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
}

.cs-label {
  color: var(--muted);
  font-weight: var(--fw-medium);
  font-size: 0.9rem;
}

.cs-value {
  color: var(--text);
  font-weight: var(--fw-semibold);
}

.btn-social {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn-social:hover {
  background: rgba(210, 176, 76, 0.1);
  border-color: rgba(210, 176, 76, 0.35);
}

.cs-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-form {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 22px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.contact-form .form-label {
  color: var(--muted);
  font-weight: var(--fw-medium);
}

.contact-form .form-control {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 12px 14px;
}

.form-control::placeholder {
  color: var(--muted);
  opacity: 1;
}

html[data-theme='light'] .contact-form .form-control {
  background: rgba(0, 0, 0, 0.02);
}

.contact-form .form-control:focus {
  border-color: rgba(210, 176, 76, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(210, 176, 76, 0.15);
}

/* Footer */
.mohmaa-footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
}

.footer-top {
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}

html[data-theme='light'] .footer-top {
  background: rgba(255, 255, 255, 0.7);
}

.footer-newsletter {
  display: grid;
  gap: 12px;
}

.fn-title {
  font-weight: var(--fw-semibold);
}

.fn-form {
  display: flex;
  gap: 10px;
}

.fn-form .form-control {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 12px 14px;
}

.footer-badges {
  display: flex;
  justify-content: end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-main {
  padding: 40px 0;
}

.footer-text {
  color: var(--muted);
  line-height: 1.9;
}

.footer-title {
  font-weight: var(--fw-semibold);
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  font-weight: var(--fw-medium);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a {
  color: var(--muted);
  font-weight: var(--fw-medium);
}

.footer-bottom a:hover {
  color: var(--text);
}

/* Reveal (animation trigger) */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms ease, transform 800ms ease;
}

/* Small screens */
@media (max-width: 992px) {
  .mohmaa-hero {
    padding-top: 58px;
  }

  .hero-visual {
    height: 420px;
  }

  .device {
    width: 64%;
  }

  .device-b {
    width: 60%;
    left: 18%;
  }

  .device-c {
    width: 50%;
  }

  .footer-badges {
    justify-content: start;
  }
}

@media (max-width: 520px) {
  .hero-visual {
    height: 360px;
  }

  .device {
    width: 76%;
  }

  .device-b {
    width: 70%;
  }

  .fn-form {
    flex-direction: column;
  }
}