/* ── TOKENS ── */
:root {
  --bg: #f5f7fa;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-section: #eef1f6;
  --teal: #0ea57a;
  --teal-light: #e6f7f2;
  --teal-mid: #c8ede4;
  --navy: #0d2d4a;
  --navy-light: #1a4466;
  --text: #0d1f2d;
  --muted: #5a7a8a;
  --border: #dde4ec;
  --shadow: rgba(13, 45, 74, 0.08);
  --shadow-md: rgba(13, 45, 74, 0.14);
  --nav-map-bg: rgba(255, 255, 255, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[dir="rtl"] {
  direction: rtl;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Almarai', 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 1025px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-flex {
    display: flex !important;
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px var(--shadow);
  transition: all 0.3s;
}

nav.scrolled {
  height: 62px;
  box-shadow: 0 4px 30px var(--shadow-md);
}

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

.nav-logo img {
  height: 70px;
  width: auto;
}

.logo-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 4px;
}

.product-logo-nav {
  height: 100% !important;
  width: 100% !important;
  object-fit: contain;
}

.nav-logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}

.nav-logo-tag {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
}

.nav-link:hover,
.nav-item:hover>.nav-link {
  color: var(--teal);
  background: var(--teal-light);
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s;
  display: inline-block;
  margin-bottom: 2px;
  margin-inline-start: 4px;
}

.nav-item:hover>.nav-link .chevron {
  transform: rotate(-135deg);
  margin-bottom: -2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-inline-start: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
  #navbar {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 24px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-right.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    justify-content: space-between;
  }

  .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 0 10px 20px !important;
    background: transparent !important;
    transform: none !important;
  }

  .dropdown.active {
    display: block !important;
  }


  .dropdown.wide {
    min-width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .dropdown a {
    padding: 12px 0 !important;
    background: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  .dropdown a:last-child {
    border-bottom: none;
  }

  .dd-desc {
    font-size: 0.68rem !important;
    opacity: 0.8;
  }

  .nav-item:hover .dropdown {
    display: none;
    /* Disable hover on mobile */
  }

  .nav-utils {
    margin-top: 20px;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}

.nav-link.active .chevron {
  transform: rotate(-135deg);
}


.no-scroll {
  overflow: hidden;
}


.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 48px var(--shadow-md), 0 4px 12px var(--shadow);
}

.nav-item:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.wide {
  min-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 6px;
}

.dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.84rem;
  transition: background 0.15s;
}

.dropdown a:hover {
  background: var(--teal-light);
  color: var(--teal);
}

.dd-icon {
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.dd-product-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: -2px;
}

.dd-label {
  font-weight: 500;
  display: block;
}

.dd-desc {
  font-size: 0.73rem;
  color: var(--muted);
  display: block;
  margin-top: 1px;
  line-height: 1.4;
}

.nav-utils {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  border: 1.5px solid var(--teal-mid);
  border-radius: 100px;
  transition: all 0.2s;
  background: #fff;
}

.lang-switch:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.lang-switch i {
  font-size: 0.9rem;
}

.nav-cta {
  padding: 9px 22px;
  background: var(--navy);
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 9px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 165, 122, 0.3);
}

/* ── BASE ── */
section {
  padding: 96px 8%;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  #hero {
    min-height: auto;
  }
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 45, 74, 0.92) 40%, rgba(13, 45, 74, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 8% 140px;
  max-width: 750px;
  flex: 1;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 100px 24px 60px;
  }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--teal);
}

.back-link::before {
  content: '←';
  margin-inline-end: 8px;
}

html[dir="rtl"] .back-link::before {
  content: '→';
}

#hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(14, 165, 122, 0.15);
  border: 1px solid rgba(14, 165, 122, 0.3);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s infinite;
}

#hero .hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
  animation: fadeUp 0.7s 0.08s ease both;
}

#hero .hero-title .accent {
  background: linear-gradient(135deg, var(--teal), #06b88a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero .hero-full-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.12s ease both;
}

#hero .hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  max-width: 580px;
  animation: fadeUp 0.7s 0.16s ease both;
}

#hero .hero-techs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s ease both;
}

#hero .hero-tech {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-tech span {
  color: var(--teal);
  margin-inset-inline-end: 4px;
}

#hero .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.24s ease both;
}

#hero .hero-stat-bar {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  z-index: 10;
  display: flex;
  background: rgba(13, 45, 74, 0.8);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  #hero .hero-stat-bar {
    position: relative;
    inset: auto;
    width: 100%;
  }
}

#hero .hero-stat {
  flex: 1;
  padding: 20px 8%;
  text-align: center;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
  border-inline-end: none;
}

.hs-val {
  white-space: nowrap;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
  line-height: 1.2;
}

.hs-lbl {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  display: block;
  line-height: 1.4;
}

/* ── BUTTONS ── */
.btn-primary {
  padding: 13px 30px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 165, 122, 0.28);
}

.btn-outline {
  padding: 13px 30px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}

/* Hero specific button overrides */
#hero .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

#hero .btn-outline:hover {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}

.btn-teal {
  padding: 13px 30px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-teal:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.btn-teal i,
.btn-primary i,
.btn-outline i {
  margin-inline-start: 8px;
  font-size: 0.85rem;
}

/* ── SIDE NAV (MAP) ── */
.side-nav {
  position: fixed;
  inset-inline-start: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.side-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
  background: var(--nav-map-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 24px;
  pointer-events: auto;
  box-shadow: 0 8px 40px var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-nav.collapsed .side-nav-inner {
  padding: 20px 14px;
  border-radius: 100px;
  gap: 20px;
}

.side-nav-toggle {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: all 0.3s;
}

.side-nav.collapsed .side-nav-toggle {
  margin-bottom: 0;
}

.side-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.sn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
  flex-shrink: 0;
}

.sn-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
}

.side-nav.collapsed .sn-label {
  max-width: 0;
  opacity: 0;
  margin-inset-inline-start: 0;
  visibility: hidden;
}

html[dir="rtl"] .sn-label {
  transform: translateX(10px);
}

.side-nav-link:hover .sn-label,
.side-nav-link.active .sn-label {
  color: var(--teal);
}

.side-nav-link:hover .sn-dot,
.side-nav-link.active .sn-dot {
  background: var(--teal);
  transform: scale(1.6);
  box-shadow: 0 0 10px rgba(14, 165, 122, 0.4);
}

.side-nav-link.active .sn-label {
  color: var(--teal);
}

@media (max-width: 1200px) {
  .side-nav {
    display: none;
  }
}

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 8% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 270px;
  margin-bottom: 20px;
}

.socials {
  display: flex;
  gap: 10px;
}

.soc {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
}

.soc:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer-product-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.footer-product-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-col a {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--teal);
}

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

.contact-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none;
  margin-bottom: 4px !important;
}

.contact-item i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  color: #fff;
  opacity: 0.9;
}

span.contact-item {
  cursor: default;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--teal-mid);
  border-radius: 3px;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  section {
    padding: 56px 20px;
  }

  footer {
    padding: 48px 20px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom span {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .contact-item {
    word-break: break-all;
  }
}

/* ── RTL FIXES ── */
[dir="rtl"] .fa-arrow-right,
[dir="rtl"] .fa-arrow-left,
[dir="rtl"] .fa-chevron-right,
[dir="rtl"] .fa-chevron-left {
  display: inline-block;
  transform: scaleX(-1);
}

/* ── RTL OVERRIDES ── */
[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] #hero .hero-sub {
  margin-inline-start: 0;
  margin-inline-end: 0;
}

[dir="rtl"] .hero-img::after {
  background: linear-gradient(270deg, rgba(13, 45, 74, 0.92) 40%, rgba(13, 45, 74, 0.4) 100%);
}

[dir="rtl"] #hero .hero-title {
  margin-bottom: 16px;
}

[dir="rtl"] #hero .hero-full-name {
  margin-bottom: 32px;
}

[dir="rtl"] #hero .hero-techs {
  margin-bottom: 48px;
}

/* ── RTL MOBILE NAV ── */
@media (max-width: 1024px) {
  [dir="rtl"] .nav-right {
    right: auto !important;
    left: -100% !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1) !important;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  [dir="rtl"] .nav-right.active {
    left: 0 !important;
    right: auto !important;
  }
}

#access {
  background: var(--navy);
  padding: 96px 8%;
  text-align: center;
}

#access .section-label {
  color: var(--teal);
}

#access .section-label::before {
  background: var(--teal);
}

#access .section-title {
  color: #fff;
}

#access .section-desc {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 48px;
}

.access-form {
  max-width: 560px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.2s;
  outline: none;
  font-family: inherit;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.12);
}

.form-select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-select option {
  background: var(--navy);
  color: #fff;
}

.access-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

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