/* ===== Variables ===== */
:root {
  --navy: #051c3f;
  --navy-light: #0a2d5e;
  --navy-dark: #001a35;
  --gold: #c5a059;
  --gold-light: #e2c275;
  --gold-dark: #9e7e38;
  --white: #ffffff;
  --muted: #f5f7fa;
  --muted-fg: #64748b;
  --shadow: 0 10px 40px rgba(5, 28, 63, 0.08);
  --radius: 1rem;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "IBM Plex Sans Arabic", system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

[dir="rtl"] body {
  font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(5, 28, 63, 0.3);
}

.btn-secondary:hover {
  background: var(--navy-light);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===== Section Utilities ===== */
.section-muted {
  background: var(--muted);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(197, 160, 89, 0.08) 1px,
    transparent 0
  );
  background-size: 32px 32px;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading.align-start {
  text-align: start;
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-subtitle.light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.section-title.light {
  color: var(--white);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.section-divider.align-start,
.section-heading.align-start .section-divider {
  justify-content: flex-start;
}

.section-divider span:not(.diamond) {
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.section-divider .diamond {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.section-divider.light span:not(.diamond),
.section-divider.light .diamond {
  background: var(--gold-light);
}

.section-desc {
  text-align: center;
  max-width: 48rem;
  margin: -1.5rem auto 4rem;
  font-size: 1.125rem;
  color: var(--muted-fg);
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  transition: color var(--transition);
}

.view-all-link:hover {
  color: var(--gold-dark);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all var(--transition);
}

.header:not(.scrolled) {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

/* Nav over hero */
.header:not(.scrolled) .nav-link {
  color: var(--navy);
  text-shadow: none;
}

.header:not(.scrolled) .nav-link:hover {
  color: var(--gold);
}

.header:not(.scrolled) .menu-toggle {
  color: var(--navy);
}

.header:not(.scrolled) .lang-switcher {
  background: rgba(5, 28, 63, 0.06);
  border-color: rgba(5, 28, 63, 0.12);
}

.header:not(.scrolled) .lang-btn {
  color: var(--muted-fg);
}

.header:not(.scrolled) .lang-btn.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(5, 28, 63, 0.1);
}

.header:not(.scrolled) .lang-btn:hover:not(.active) {
  color: var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}

.logo {
  height: 3.25rem;
  width: auto;
  transition: filter var(--transition);
}

.header:not(.scrolled) .logo,
.header.scrolled .logo {
  filter: none;
}

@media (min-width: 768px) {
  .logo {
    height: 4rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 0.5rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--muted);
  border: 1px solid rgba(5, 28, 63, 0.1);
  border-radius: 9999px;
  padding: 0.25rem;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  color: rgba(5, 28, 63, 0.6);
  transition: all var(--transition);
  font-family: inherit;
}

.lang-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(5, 28, 63, 0.2);
}

.lang-btn:hover:not(.active) {
  color: var(--navy);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--navy);
  cursor: pointer;
  z-index: 10;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.open .icon-menu {
  display: none;
}

.menu-toggle.open .icon-close {
  display: block;
}

.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(5, 28, 63, 0.1);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow);
}

.nav-mobile.open {
  display: block;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.nav-mobile .nav-link:hover {
  background: rgba(197, 160, 89, 0.05);
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(5, 28, 63, 0.1);
}

.mobile-actions .btn {
  flex: 1;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    #f8fafc 0%,
    #f1f5f9 42%,
    #e8eef6 100%
  );
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(197, 160, 89, 0.12) 0%,
    transparent 45%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(197, 160, 89, 0.14) 1px,
    transparent 0
  );
  background-size: 32px 32px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow-1 {
  top: -10rem;
  inset-inline-end: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(197, 160, 89, 0.18);
}

.hero-glow-2 {
  bottom: -10rem;
  inset-inline-start: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(5, 28, 63, 0.06);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  color: rgba(197, 160, 89, 0.35);
}

.hero-shape-ring {
  top: 8%;
  inset-inline-end: 6%;
  width: clamp(8rem, 18vw, 14rem);
  height: clamp(8rem, 18vw, 14rem);
  opacity: 0.7;
}

.hero-shape-diamond {
  bottom: 18%;
  inset-inline-start: 4%;
  width: clamp(4rem, 10vw, 7rem);
  height: clamp(4rem, 10vw, 7rem);
  color: rgba(5, 28, 63, 0.12);
}

.hero-shape-arc {
  top: 42%;
  inset-inline-end: 28%;
  width: clamp(5rem, 12vw, 9rem);
  height: clamp(5rem, 12vw, 9rem);
  opacity: 0.6;
}

.hero-shape-dots {
  top: 15%;
  inset-inline-start: 12%;
  width: clamp(3rem, 6vw, 5rem);
  height: clamp(3rem, 6vw, 5rem);
  color: rgba(197, 160, 89, 0.25);
  display: none;
}

@media (min-width: 768px) {
  .hero-shape-dots {
    display: block;
  }
}

.hero-pixels {
  position: absolute;
  top: 25%;
  inset-inline-start: 2.5rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-pixels {
    display: flex;
  }
}

.hero-pixels span {
  width: 0.75rem;
  height: 0.75rem;
  border: 1.5px solid rgba(197, 160, 89, 0.45);
  background: transparent;
  transform: rotate(45deg);
}

.hero-pixels span:nth-child(2) {
  width: 0.5rem;
  height: 0.5rem;
  opacity: 0.6;
  margin-inline-start: 1rem;
}

.hero-pixels span:nth-child(3) {
  width: 0.375rem;
  height: 0.375rem;
  opacity: 0.4;
  margin-inline-start: 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.hero-text {
  max-width: 42rem;
}

@media (min-width: 1024px) {
  .hero-text {
    max-width: none;
  }
}

.hero-glow,
.hero-pattern,
.hero-shapes,
.hero-pixels,
.hero-photo-frame,
.hero-photo-accent,
.hero-text {
  will-change: transform;
}

.hero-media {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

@media (min-width: 1024px) {
  .hero-media {
    justify-content: flex-end;
  }
}

.hero-photo-frame {
  position: relative;
  width: min(100%, 28rem);
  aspect-ratio: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid rgba(197, 160, 89, 0.45);
  box-shadow: 0 24px 60px rgba(5, 28, 63, 0.12);
}

.hero-photo-accent {
  position: absolute;
  inset-inline-end: -1rem;
  bottom: -1rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0.55;
}

.hero-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1rem;
  }
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 2rem;
  max-width: 56rem;
}

@media (min-width: 1024px) {
  .hero-title {
    max-width: none;
  }
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-fg);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-desc {
    max-width: none;
  }
}

.hero-cta svg {
  transition: transform var(--transition);
}

[dir="ltr"] .hero-cta:hover svg {
  transform: translateX(4px);
}

[dir="rtl"] .hero-cta:hover svg {
  transform: translateX(-4px);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, var(--white), transparent);
}

/* ===== Services ===== */
.services {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .services {
    padding: 7rem 0;
  }
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(5, 28, 63, 0.05);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

[dir="rtl"] .service-card-bar {
  transform-origin: right;
}

.service-card:hover .service-card-bar {
  transform: scaleX(1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 28, 63, 0.05);
  border-radius: 0.75rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}

.service-link:hover {
  color: var(--gold-dark);
}

/* ===== Sectors ===== */
.sectors {
  padding: 5rem 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .sectors {
    padding: 7rem 0;
  }
}

.sectors-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .sectors-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.sector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(5, 28, 63, 0.05);
  background: var(--white);
  transition: all var(--transition);
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.2);
  box-shadow: var(--shadow);
}

.sector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold);
  transition: all var(--transition);
}

.sector-card:hover .sector-icon {
  background: var(--gold);
  color: var(--white);
}

.sector-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color var(--transition);
}

.sector-card:hover h3 {
  color: var(--gold);
}

/* ===== How We Work ===== */
.how-we-work {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .how-we-work {
    padding: 7rem 0;
  }
}

.process-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(5, 28, 63, 0.12);
}

.process-step-number {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(5, 28, 63, 0.06);
  line-height: 1;
  direction: ltr;
}

.process-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3.5rem;
    inset-inline-end: -0.75rem;
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(
      to left,
      var(--gold),
      rgba(197, 160, 89, 0.2)
    );
    z-index: 1;
  }

  [dir="ltr"] .process-step:not(:last-child)::after {
    background: linear-gradient(
      to right,
      var(--gold),
      rgba(197, 160, 89, 0.2)
    );
  }
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 5rem 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .testimonials {
    padding: 7rem 0;
  }
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(5, 28, 63, 0.05);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(5, 28, 63, 0.05);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 1px solid rgba(5, 28, 63, 0.05);
  padding-top: 1rem;
}

.author-name {
  font-weight: 700;
  color: var(--navy);
}

.author-location {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

/* ===== Blog ===== */
.blog {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .blog {
    padding: 7rem 0;
  }
}

.blog-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(197, 160, 89, 0.35);
  background: var(--white);
}

.blog-coming-soon-badge {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.blog-coming-soon p {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy) 50%,
    var(--navy-light) 100%
  );
  color: var(--white);
  padding: 4rem 0 0;
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 0 0;
  }
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  }
}

.footer-logo {
  height: 4rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-end: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ===== Login Page ===== */
.login-page {
  min-height: 100vh;
  background: var(--muted);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(197, 160, 89, 0.08) 1px,
    transparent 0
  );
  background-size: 32px 32px;
}

.login-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 6rem 1rem 3rem;
}

.login-container {
  width: 100%;
  max-width: 28rem;
}

.login-card {
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(5, 28, 63, 0.06);
}

.login-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo {
  width: 3.5rem;
  height: auto;
  margin: 0 auto 1.25rem;
}

.login-card-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.login-card-header p {
  font-size: 0.9375rem;
  color: var(--muted-fg);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(5, 28, 63, 0.15);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.login-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.login-message {
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #b91c1c;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
}

.login-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.login-back {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color var(--transition);
}

.login-back:hover {
  color: var(--gold);
}

/* ===== Legal Pages ===== */
.legal-page {
  min-height: 100vh;
  background: var(--muted);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(197, 160, 89, 0.08) 1px,
    transparent 0
  );
  background-size: 32px 32px;
}

.legal-main {
  padding: 6rem 1rem 4rem;
}

.legal-container {
  max-width: 48rem;
}

.legal-content {
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(5, 28, 63, 0.06);
}

.legal-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(5, 28, 63, 0.08);
}

.legal-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 1rem;
}

.legal-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--navy);
}

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.legal-section h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.legal-section p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted-fg);
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(5, 28, 63, 0.08);
}

.legal-back,
.legal-other {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color var(--transition);
}

.legal-back:hover,
.legal-other:hover {
  color: var(--gold);
}

@media (min-width: 640px) {
  .legal-content {
    padding: 3rem 2.5rem;
  }

  .legal-header h1 {
    font-size: 2rem;
  }
}

