:root {
  --navy: #092a3c;
  --ink: #102d3d;
  --cream: #fbf8f2;
  --sand: #f1eadf;
  --gold: #d4a644;
  --muted: #5e6d75;
  --line: #d9e0df;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Alexandria, Arial, sans-serif;
}
body[lang="en"],
body[lang="hi"] {
  font-family: "DM Sans", "Noto Sans Devanagari", sans-serif;
}

/* Theme-colored browser scrollbars. */
html { scrollbar-color: var(--gold) var(--navy); scrollbar-width: thin; }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), #b98227); border: 3px solid var(--navy); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #f0c96f; }
.container {
  width: min(calc(100% - 48px), var(--container));
  margin: auto;
}
.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: #fff;
  transition: 0.3s;
}
.site-header.scrolled {
  position: fixed;
  background: #092a3cf5;
  box-shadow: 0 7px 20px #00182444;
}
.nav-shell {
  height: 88px;
  width: min(calc(100% - 48px), var(--container));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-size: 23px;
  font-weight: 800;
  line-height: 0.84;
}
.brand img {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.brand small {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.brand-copy > b {
  display: block;
  font-size: 1em;
  font-weight: 800;
  line-height: 1.2;
  padding-top: 2px;
}

body[lang="en"] .brand small,
body[lang="hi"] .brand small {
  letter-spacing: 0.025em;
  font-size: 10px;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.nav-links a.active {
  color: var(--gold);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -10px;
  height: 2px;
  background: var(--gold);
}
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.language {
  border: 1px solid #ffffff50;
  background: #ffffff12;
  color: #fff;
  border-radius: 99px;
  padding: 10px 14px;
  font: 600 14px inherit;
  cursor: pointer;
}
.nav-whatsapp {
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 99px;
  font-size: 13px;
}
.nav-whatsapp span {
  color: #19a462;
}

.nav-whatsapp svg {
  width: 16px;
  height: 16px;
  color: #19a462;
  vertical-align: middle;
  margin-inline-end: 5px;
}
.language-popover {
  position: absolute;
  inset-inline-start: max(24px, calc((100% - var(--container)) / 2));
  top: 70px;
  z-index: 3;
  padding: 7px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 35px #0003;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.2s;
}
.language-popover.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.language-popover button {
  padding: 11px 18px;
  border: 0;
  background: 0;
  color: var(--ink);
  text-align: start;
  font: 600 14px inherit;
  cursor: pointer;
}
.menu,
.mobile-menu {
  display: none;
}
.hero {
  height: min(800px, 100svh);
  min-height: 640px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  object-fit: cover;
}
.hero-overlay {
  background:
    linear-gradient(90deg, #061f2deb, #092a3cac 44%, #092a3c22 72%),
    linear-gradient(0deg, #061f2baa, transparent 40%);
}
[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, #061f2deb, #092a3cac 44%, #092a3c22 72%),
    linear-gradient(0deg, #061f2baa, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.hero-copy {
  max-width: 620px;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.kicker span {
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.kicker.light {
  color: #fff;
}
.hero h1,
.section-heading h2,
.showreel h2,
.feature-copy h2,
.about h2,
.location h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.15;
  letter-spacing: -0.055em;
}

/* Arabic glyphs need more vertical room than Latin display type. */
body[lang="ar"] .hero h1,
body[lang="ar"] .section-heading h2,
body[lang="ar"] .showreel h2,
body[lang="ar"] .feature-copy h2,
body[lang="ar"] .about h2,
body[lang="ar"] .location h2 {
  letter-spacing: -0.018em;
  line-height: 1.3;
}

.location h2 {
  max-width: 560px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.location h2 em {
  display: inline-block;
  padding-top: 0.1em;
}
.hero h1 em,
.section-heading h2 em,
.showreel h2 em,
.feature-copy h2 em,
.about h2 em,
.location h2 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
}
.hero-copy > p:not(.kicker),
.showreel-copy > p:not(.kicker),
.feature-copy > p:not(.kicker),
.about-copy > p:not(.kicker),
.location-copy > p:not(.kicker) {
  font-size: 16px;
  line-height: 2;
  color: var(--muted);
}
.hero-copy > p:not(.kicker) {
  color: #fffdf7;
  max-width: 520px;
  margin: 23px 0 30px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.btn b {
  font-size: 18px;
  font-weight: 400;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.gold {
  background: var(--gold);
  color: var(--navy);
}
.ghost {
  border: 1px solid #fff8;
  color: #fff;
}
.dark {
  background: var(--navy);
  color: #fff;
}
.hero-panel {
  width: 290px;
  padding: 22px;
  display: grid;
  gap: 15px;
  background: #061e2bba;
  border: 1px solid #ffffff35;
  backdrop-filter: blur(12px);
}
.panel-label {
  font-size: 12px;
  color: var(--gold);
}
.hero-panel a {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid #ffffff2d;
  color: #fff;
  text-decoration: none;
}
.hero-panel small {
  font-size: 12px;
  color: #fff9;
}
.hero-panel strong,
.phone {
  font:
    600 15px "DM Sans",
    Alexandria;
  direction: ltr;
  unicode-bidi: embed;
  text-align: start;
}
.hero-bottom {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font: 12px "DM Sans";
  letter-spacing: 0.05em;
}
.section {
  padding: 110px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 365px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}
.showreel {
  background: #fff;
}
.showreel-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 75px;
}
.showreel-copy > p:not(.kicker) {
  max-width: 370px;
}
.showreel-video {
  background: var(--navy);
  aspect-ratio: 16/9;
  box-shadow: 0 22px 45px #092a3c20;
}
.showreel-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  min-height: 250px;
  padding: 26px;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.35s;
}
.service-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px #092a3c14;
}
.service-card:hover:before {
  transform: scaleX(1);
}
.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.service-number {
  font: 13px "DM Sans";
  color: #93a3a8;
}
.service-icon {
  display: block;
  margin-top: 26px;
  font-size: 28px;
  color: var(--gold);
}
.service-card h3 {
  margin: 16px 0 8px;
  font-size: 19px;
}
.service-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.featured p {
  color: #fff9;
}
.service-card a {
  position: absolute;
  bottom: 22px;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: #fff;
}
.feature-picture {
  min-height: 490px;
}
.feature-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-copy {
  padding: clamp(60px, 8vw, 115px);
  max-width: 710px;
}
.feature-copy > p:not(.kicker) {
  color: #fff9;
}
.inline-link {
  color: var(--gold);
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 10vw, 145px);
  align-items: center;
}
.about-copy > p:not(.kicker) {
  max-width: 490px;
}
.principles {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.principles > div {
  display: flex;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.principles b {
  color: #b98527;
  font: 13px "DM Sans";
}
.about-gallery {
  height: 500px;
  position: relative;
}
.about-main {
  width: 82%;
  height: 100%;
  object-fit: cover;
}
.about-small {
  position: absolute;
  bottom: -26px;
  inset-inline-start: 0;
  width: 45%;
  height: 205px;
  object-fit: cover;
  border: 7px solid var(--cream);
}
.badge {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  padding: 14px;
  background: var(--gold);
  font: 700 14px "DM Sans";
  letter-spacing: 0.12em;
}
.badge small {
  font-size: 8px;
}
.location {
  background: var(--sand);
}
.location-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.location-copy > p:not(.kicker) {
  max-width: 430px;
}

.location-copy .official-address {
  margin: -7px 0 0;
  color: #8b6422;
  font: 600 13px "DM Sans", Alexandria, sans-serif;
  line-height: 1.75;
  font-style: normal;
}
.location-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}
.plain-phone {
  display: grid;
  gap: 4px;
  color: var(--ink);
  text-decoration: none;
}
.plain-phone span {
  font-size: 12px;
  color: var(--muted);
}
.plain-phone strong {
  font: 600 16px "DM Sans";
  direction: ltr;
  unicode-bidi: embed;
}
.map-wrap {
  height: 430px;
  position: relative;
  background: #ddd;
  box-shadow: 0 17px 38px #092a3c18;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-open {
  position: absolute;
  bottom: 16px;
  inset-inline-end: 16px;
  padding: 12px 15px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 8px 18px #0002;
}
.map-open span {
  color: var(--gold);
  font-size: 18px;
  margin-inline-end: 5px;
}

.map-open svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  vertical-align: middle;
  margin-inline-end: 6px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  grid-template-rows: 235px 235px;
  gap: 13px;
}
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ddd;
  border-radius: 8px;
}
.gallery-grid figure:first-child {
  grid-row: span 2;
}
.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.6s;
}
.gallery-grid figure:hover img {
  transform: scale(1.045);
}
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 29px 14px 12px;
  background: linear-gradient(transparent, #0009);
  color: #fff;
  font-size: 13px;
}
footer {
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-inner {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-inner .brand {
  color: var(--ink);
  font-size: 19px;
}
.footer-inner .brand img {
  width: 39px;
  height: 39px;
}
.footer-inner p,
.footer-inner > a {
  color: var(--muted);
  font: 12px "DM Sans";
  text-decoration: none;
}

.back-to-top {
  min-width: 116px;
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy) !important;
  font-weight: 700 !important;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.back-to-top:hover { transform: translateY(-3px); background: var(--navy); color: #fff !important; }
.mobile-actions {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.reveal.from-right {
  transform: translateX(32px);
}
.reveal.from-left {
  transform: translateX(-32px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (pointer: fine) {
  body,
  a,
  button,
  video[controls] {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease,
      border-color 0.2s ease, opacity 0.18s ease;
  }

  .cursor-dot {
    width: 9px;
    height: 9px;
    background: #f2c767;
    box-shadow: 0 0 0 4px #d4a64433;
  }

  .cursor-ring {
    width: 38px;
    height: 38px;
    border: 1px solid #f2c767;
    box-shadow: 0 0 22px #d4a64438;
  }

  body.cursor-active .cursor-dot,
  body.cursor-active .cursor-ring {
    opacity: 1;
  }

  body.cursor-hover .cursor-ring {
    width: 54px;
    height: 54px;
    border-color: var(--gold);
    background: #d4a6441a;
  }
}
@media (max-width: 780px) {
  .container,
  .nav-shell {
    width: calc(100% - 36px);
  }
  .nav-shell {
    height: 72px;
  }
  .site-header.scrolled .nav-shell {
    height: 66px;
  }
  .brand {
    font-size: 19px;
  }

  .brand small {
    font-size: 10px;
  }
  .brand img {
    width: 37px;
    height: 37px;
  }
  .nav-links,
  .nav-whatsapp {
    display: none;
  }
  .nav-actions {
    margin-inline-start: auto;
    margin-inline-end: 7px;
  }
  .language {
    font-size: 13px;
    padding: 9px 11px;
  }
  .menu {
    display: grid;
    gap: 5px;
    padding: 7px;
    border: 0;
    background: transparent;
  }
  .menu i {
    width: 22px;
    height: 1px;
    background: #fff;
  }
  .mobile-menu {
    position: absolute;
    top: 72px;
    inset-inline: 0;
    padding: 20px 18px;
    background: #092a3cf8;
    transform: translateY(-130%);
    transition: 0.3s;
  }
  .mobile-menu.open {
    display: grid;
    gap: 12px;
    transform: none;
  }
  .mobile-menu a {
    padding: 9px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }
  .site-header.scrolled .mobile-menu {
    top: 66px;
  }
  .language-popover {
    top: 59px;
    inset-inline-start: 52px;
  }
  .hero {
    height: 100svh;
    min-height: 660px;
  }
  .hero-overlay,
  [dir="rtl"] .hero-overlay {
    background: linear-gradient(0deg, #061f2be9 9%, #092a3c2d 76%);
  }
  .hero-content {
    display: block;
    padding-top: 78px;
  }
  .hero-copy {
    padding-top: 104px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 15px;
    line-height: 1.85;
    margin: 18px 0 25px;
  }
  .hero-panel {
    position: absolute;
    bottom: 87px;
    left: 0;
    right: 0;
    width: auto;
    padding: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .panel-label {
    grid-column: 1/-1;
  }
  .hero-panel a {
    padding-top: 10px;
  }
  .hero-panel strong {
    font-size: 13px;
  }
  .hero-bottom {
    display: none;
  }
  .section {
    padding: 76px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 33px;
  }
  .section-heading h2,
  .showreel h2,
  .feature-copy h2,
  .about h2,
  .location h2 {
    font-size: 39px;
  }

  .location h2 {
    font-size: clamp(32px, 10.2vw, 39px);
    line-height: 1.36;
    max-width: 100%;
  }
  .section-heading > p {
    font-size: 15px;
    margin-top: 18px;
  }
  .showreel-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .showreel-copy > p:not(.kicker) {
    font-size: 15px;
  }
  .showreel-video {
    width: 100%;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .service-card {
    min-height: 245px;
    padding: 18px;
  }
  .service-icon {
    margin-top: 20px;
  }
  .service-card h3 {
    font-size: 16px;
    margin: 14px 0 7px;
  }
  .service-card p {
    font-size: 12px;
    line-height: 1.75;
  }
  .service-card a {
    bottom: 17px;
    font-size: 11px;
  }
  .feature-band {
    grid-template-columns: 1fr;
  }
  .feature-picture {
    min-height: 290px;
  }
  .feature-copy {
    padding: 62px 24px;
  }
  .feature-copy > p:not(.kicker),
  .about-copy > p:not(.kicker),
  .location-copy > p:not(.kicker) {
    font-size: 15px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .about-gallery {
    height: 410px;
    width: calc(100% - 15px);
    margin-inline-start: 15px;
  }
  .about-main {
    width: 84%;
  }
  .about-small {
    width: 51%;
    height: 165px;
    bottom: -18px;
    border-width: 5px;
  }
  .location-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .location-actions {
    display: grid;
    gap: 18px;
  }
  .map-wrap {
    height: 340px;
  }
  .gallery-grid {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  .gallery-grid figure,
  .gallery-grid figure:first-child,
  .gallery-grid figure:last-child,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3) {
    width: 100% !important;
    height: 200px !important;
    margin: 0 0 20px 0 !important;
    padding: 0;
    border-radius: 10px;
    grid-row: unset;
    grid-column: unset;
    flex-shrink: 0;
  }
  .gallery-grid figure:last-child {
    margin-bottom: 0 !important;
  }
  .gallery-grid figure.reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .footer-inner {
    min-height: 170px;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 76px;
  }
  .mobile-actions {
    position: fixed;
    z-index: 40;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -7px 22px #092a3c18;
  }
  .mobile-actions a {
    display: grid;
    justify-items: center;
    gap: 3px;
    color: var(--ink);
    font-size: 12px;
    text-decoration: none;
  }
.mobile-actions span {
  font-size: 18px;
  color: #a87927;
}

.mobile-actions svg {
  width: 20px;
  height: 20px;
  color: #a87927;
  stroke-width: 1.8;
}
  .mobile-actions b {
    font-weight: 600;
  }
  .reveal,
  .reveal.from-right,
  .reveal.from-left {
    transform: translateY(22px);
  }
}

/* ============================================================
   HOVER EFFECTS — Raghda Government Services
   ============================================================ */

/* --- Nav links underline slide --- */
.nav-links a {
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:not(.active):hover { color: var(--gold); }
.nav-links a:not(.active):hover::after { transform: scaleX(1); }

/* --- Brand logo spin --- */
.brand { transition: opacity 0.25s; }
.brand:hover { opacity: 0.82; }
.brand img {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand:hover img { transform: rotate(8deg) scale(1.08); }

/* --- Language button --- */
.language {
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
}
.language:hover {
  background: #ffffff22;
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* --- Nav WhatsApp pill --- */
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.nav-whatsapp:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px #d4a64444;
}
.nav-whatsapp:hover svg { color: var(--navy); }

/* --- Language popover buttons --- */
.language-popover button {
  border-radius: 7px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.language-popover button:hover {
  background: var(--sand);
  color: var(--navy);
  transform: translateX(4px);
}
[dir="rtl"] .language-popover button:hover { transform: translateX(-4px); }

/* --- CTA buttons --- */
.btn {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s, filter 0.25s;
}
.btn.gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 26px #d4a64448;
  filter: brightness(1.07);
}
.btn.ghost:hover {
  background: #ffffff1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px #ffffff18;
}
.btn.dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px #092a3c44;
  background: #0d3a55;
}

/* --- Hero panel links --- */
.hero-panel a {
  transition: border-color 0.22s, padding-inline-start 0.22s;
}
.hero-panel a:hover { border-top-color: #ffffff55; padding-inline-start: 6px; }
.hero-panel a:hover small { color: #fffd; }
.hero-panel a:hover strong { color: var(--gold); }

/* --- Service cards --- */
.service-card {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.32s, border-color 0.32s;
}
.service-card:hover {
  transform: translateY(-9px) scale(1.012);
  box-shadow: 0 24px 48px #092a3c1c;
  border-color: var(--gold);
}
.service-card .service-icon {
  transition: color 0.25s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-icon {
  transform: scale(1.18) rotate(-6deg);
  color: #f0c254;
}
.service-card a { transition: color 0.22s, letter-spacing 0.22s; }
.service-card a:hover { color: var(--gold); letter-spacing: 0.04em; }

/* --- Feature band inline link --- */
.inline-link {
  position: relative;
  transition: letter-spacing 0.22s;
}
.inline-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.3);
  transform-origin: inline-start;
  transition: transform 0.28s;
}
.inline-link:hover { letter-spacing: 0.02em; }
.inline-link:hover::after { transform: scaleX(1); }

/* --- Principles rows --- */
.principles > div {
  transition: background 0.2s, padding-inline-start 0.2s;
  border-radius: 4px;
}
.principles > div:hover { background: var(--sand); padding-inline-start: 10px; }

/* --- About gallery --- */
.about-main, .about-small {
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
}
.about-gallery:hover .about-main {
  transform: scale(1.025);
  box-shadow: 0 18px 42px #092a3c22;
}
.about-gallery:hover .about-small {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 14px 32px #092a3c28;
}

/* --- Badge bounce on about hover --- */
.badge {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}
.about-gallery:hover .badge {
  transform: translateY(-6px) rotate(-2deg);
  box-shadow: 0 10px 24px #d4a64444;
}

.gallery-grid figure {
  transition: box-shadow 0.4s;
}
.gallery-grid figure:hover { box-shadow: 0 14px 36px #092a3c28; }
.gallery-grid img,
.gallery-grid video {
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery-grid figure:hover img,
.gallery-grid figure:hover video { transform: scale(1.07); }
.gallery-grid figcaption { transition: padding-bottom 0.3s; }
.gallery-grid figure:hover figcaption { padding-bottom: 18px; }

/* --- Map open button --- */
.map-open {
  transition: background 0.22s, color 0.22s, transform 0.25s, box-shadow 0.25s;
  border-radius: 4px;
}
.map-open:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #092a3c33;
}
.map-open:hover svg { color: var(--gold); }

/* --- Plain phone --- */
.plain-phone { transition: transform 0.22s; }
.plain-phone:hover { transform: translateX(4px); }
[dir="rtl"] .plain-phone:hover { transform: translateX(-4px); }
.plain-phone:hover strong { color: var(--navy); }

/* --- Showreel video lift --- */
.showreel-video {
  overflow: hidden;
  transition: box-shadow 0.4s, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.showreel-video:hover {
  box-shadow: 0 28px 60px #092a3c28;
  transform: translateY(-5px) scale(1.012);
}

/* --- Mobile menu links --- */
.mobile-menu a {
  transition: color 0.2s, padding-inline-start 0.2s;
}
.mobile-menu a:hover { color: var(--gold); padding-inline-start: 10px; }

/* --- Mobile actions --- */
.mobile-actions a { transition: transform 0.22s, color 0.22s; }
.mobile-actions a:hover { transform: translateY(-3px); color: var(--gold); }
.mobile-actions a:hover svg { color: var(--gold); }

/* --- Footer brand --- */
.footer-inner .brand { transition: opacity 0.22s; }
.footer-inner .brand:hover { opacity: 0.7; }
