/* ============================================
   LAW FIRM PREMIUM — Compiled Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  background-color: #0a1628;
  color: #ffffff;
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Tajawal", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-header__eyebrow::before,
.section-header__eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
}

.section-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.section-header__title span {
  color: #c9a84c;
}

.section-header__subtitle {
  font-size: 1.125rem;
  color: #8b92a5;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.gold-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
  margin: 1.5rem auto;
  border-radius: 9999px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a1628;
}

::-webkit-scrollbar-thumb {
  background: #1a3460;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c9a84c;
}

::selection {
  background: rgba(201, 168, 76, 0.3);
  color: #ffffff;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  padding: 1rem 2rem;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.16);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 200;
}

.navbar__logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo-icon svg {
  width: 100%;
  height: 100%;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
}

.navbar__logo-text .firm-name {
  font-family: "Tajawal", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.navbar__logo-text .firm-tagline {
  font-size: 0.7rem;
  color: #c9a84c;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 992px) {
  .navbar__links {
    display: none;
  }
}

.navbar__links a {
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 9999px;
}

.navbar__links a:hover {
  color: #d4b85a;
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 992px) {
  .navbar__cta {
    display: none;
  }
}

.navbar__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 200;
  padding: 0.5rem;
}

@media (max-width: 992px) {
  .navbar__mobile-toggle {
    display: flex;
  }
}

.navbar__mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  border-radius: 9999px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(30px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.navbar__mobile-menu.open {
  display: flex;
}

.navbar__mobile-menu a {
  font-family: "Tajawal", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__mobile-menu a:hover {
  color: #c9a84c;
}

.navbar__mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.navbar__mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.navbar__mobile-menu.open a:nth-child(2) { transition-delay: 0.16s; }
.navbar__mobile-menu.open a:nth-child(3) { transition-delay: 0.24s; }
.navbar__mobile-menu.open a:nth-child(4) { transition-delay: 0.32s; }
.navbar__mobile-menu.open a:nth-child(5) { transition-delay: 0.4s; }
.navbar__mobile-menu.open a:nth-child(6) { transition-delay: 0.48s; }
.navbar__mobile-menu.open a:nth-child(7) { transition-delay: 0.56s; }
.navbar__mobile-menu.open a:nth-child(8) { transition-delay: 0.64s; }

/* --- Button System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
  color: #0a1628;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e0ca7a 0%, #c9a84c 100%);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(201, 168, 76, 0.25);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary span {
  position: relative;
  z-index: 1;
}

.btn--outline {
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #d4b85a;
  background: transparent;
}

.btn--outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #c9a84c;
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 16px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__canvas canvas {
  width: 100% !important;
  height: 100% !important;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(15, 31, 61, 0.85) 50%, rgba(21, 42, 74, 0.9) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #c9a84c;
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

.hero__particles .particle:nth-child(1) { left: 15%; top: 72%; animation-delay: 3s; animation-duration: 9s; width: 3px; height: 3px; }
.hero__particles .particle:nth-child(2) { left: 82%; top: 18%; animation-delay: 1s; animation-duration: 7s; width: 5px; height: 5px; }
.hero__particles .particle:nth-child(3) { left: 45%; top: 55%; animation-delay: 5s; animation-duration: 11s; width: 2px; height: 2px; }
.hero__particles .particle:nth-child(4) { left: 91%; top: 40%; animation-delay: 7s; animation-duration: 8s; width: 4px; height: 4px; }
.hero__particles .particle:nth-child(5) { left: 28%; top: 85%; animation-delay: 2s; animation-duration: 10s; width: 6px; height: 6px; }
.hero__particles .particle:nth-child(6) { left: 63%; top: 30%; animation-delay: 4s; animation-duration: 12s; width: 3px; height: 3px; }
.hero__particles .particle:nth-child(7) { left: 7%; top: 60%; animation-delay: 6s; animation-duration: 7s; width: 5px; height: 5px; }
.hero__particles .particle:nth-child(8) { left: 75%; top: 78%; animation-delay: 8s; animation-duration: 9s; width: 2px; height: 2px; }
.hero__particles .particle:nth-child(9) { left: 38%; top: 12%; animation-delay: 1s; animation-duration: 11s; width: 4px; height: 4px; }
.hero__particles .particle:nth-child(10) { left: 55%; top: 92%; animation-delay: 3s; animation-duration: 8s; width: 6px; height: 6px; }
.hero__particles .particle:nth-child(11) { left: 20%; top: 35%; animation-delay: 5s; animation-duration: 10s; width: 3px; height: 3px; }
.hero__particles .particle:nth-child(12) { left: 88%; top: 65%; animation-delay: 7s; animation-duration: 7s; width: 5px; height: 5px; }
.hero__particles .particle:nth-child(13) { left: 42%; top: 48%; animation-delay: 2s; animation-duration: 12s; width: 2px; height: 2px; }
.hero__particles .particle:nth-child(14) { left: 70%; top: 10%; animation-delay: 4s; animation-duration: 9s; width: 4px; height: 4px; }
.hero__particles .particle:nth-child(15) { left: 10%; top: 88%; animation-delay: 6s; animation-duration: 8s; width: 3px; height: 3px; }
.hero__particles .particle:nth-child(16) { left: 95%; top: 52%; animation-delay: 8s; animation-duration: 11s; width: 5px; height: 5px; }
.hero__particles .particle:nth-child(17) { left: 33%; top: 25%; animation-delay: 1s; animation-duration: 10s; width: 6px; height: 6px; }
.hero__particles .particle:nth-child(18) { left: 58%; top: 70%; animation-delay: 3s; animation-duration: 7s; width: 2px; height: 2px; }
.hero__particles .particle:nth-child(19) { left: 85%; top: 95%; animation-delay: 5s; animation-duration: 9s; width: 4px; height: 4px; }
.hero__particles .particle:nth-child(20) { left: 48%; top: 42%; animation-delay: 7s; animation-duration: 12s; width: 3px; height: 3px; }

.hero__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 6rem;
}

.hero__content {
  position: relative;
  text-align: right;
}

.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero__image-wrapper img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  filter: brightness(0.95) contrast(1.05);
}

.hero__image-frame {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(201, 168, 76, 0.15);
  border-radius: 32px;
  z-index: 1;
  pointer-events: none;
}

.hero__image-frame::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 60px;
  height: 60px;
  border-top: 3px solid #c9a84c;
  border-right: 3px solid #c9a84c;
  border-radius: 0 32px 0 0;
}

.hero__image-frame::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid #c9a84c;
  border-left: 3px solid #c9a84c;
  border-radius: 0 0 0 32px;
}

.hero__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero__badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #c9a84c;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__badge span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #d4b85a;
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
}

.hero__title .gold {
  color: #c9a84c;
  position: relative;
  display: inline-block;
}

.hero__title .gold::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
  border-radius: 9999px;
  opacity: 0.4;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: #8b92a5;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 0 3rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 2.5s forwards;
}

.hero__scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 13px;
  position: relative;
}

.hero__scroll-mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #c9a84c;
  border-radius: 9999px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

.hero__scroll span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero__corner {
  position: absolute;
  z-index: 1;
}

.hero__corner--tl {
  top: 3rem;
  right: 3rem;
  width: 80px;
  height: 80px;
  border-top: 2px solid rgba(201, 168, 76, 0.2);
  border-right: 2px solid rgba(201, 168, 76, 0.2);
}

.hero__corner--br {
  bottom: 3rem;
  left: 3rem;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.2);
  border-left: 2px solid rgba(201, 168, 76, 0.2);
}

@keyframes float-particle {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: scale(1);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-200px) scale(0);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0);
  }
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 0.6;
    transform: translateX(-50%) translateY(0);
  }
}

/* --- About Section --- */
.about {
  position: relative;
  background: #0a1628;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(21, 42, 74, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about__visual {
  position: relative;
}

@media (max-width: 992px) {
  .about__visual {
    order: -1;
  }
}

.about__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #152a4a 0%, #1a3460 100%);
}

.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.4) 100%);
  pointer-events: none;
}

.about__experience-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.24);
  z-index: 10;
}

@media (max-width: 992px) {
  .about__experience-badge {
    bottom: -1rem;
    left: 1rem;
  }
}

.about__experience-badge .number {
  font-family: "Tajawal", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a1628;
  line-height: 1;
}

.about__experience-badge .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #152a4a;
  letter-spacing: 0.02em;
}

.about__frame {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  pointer-events: none;
}

@media (max-width: 992px) {
  .about__frame {
    display: none;
  }
}

.about__content {
  /* Default */
}

@media (max-width: 992px) {
  .about__content {
    text-align: center;
  }
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.about__eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
}

.about__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.about__title span {
  color: #c9a84c;
}

.about__text {
  font-size: 1.05rem;
  color: #8b92a5;
  line-height: 1.9;
  margin-bottom: 3rem;
}

.about__text p + p {
  margin-top: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .about__features {
    grid-template-columns: 1fr;
  }
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(21, 42, 74, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__feature:hover {
  background: rgba(26, 52, 96, 0.6);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(-4px);
}

.about__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  color: #c9a84c;
}

.about__feature-icon svg {
  width: 22px;
  height: 22px;
}

.about__feature-text {
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.about__parallax-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about__parallax-deco--1 {
  top: 10%;
  left: -5%;
}

.about__parallax-deco--2 {
  bottom: 10%;
  right: -10%;
}

/* --- Services Section --- */
.services {
  position: relative;
  background: linear-gradient(180deg, #0a1628 0%, #1a1d23 50%, #0a1628 100%);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* --- Service Card --- */
.service-card {
  position: relative;
  padding: 3rem;
  background: rgba(15, 31, 61, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, rgba(201, 168, 76, 0) 40%, rgba(201, 168, 76, 0.3) 50%, rgba(201, 168, 76, 0) 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 60px rgba(201, 168, 76, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover .service-card__icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
  transform: scale(1.05);
}

.service-card:hover .service-card__icon svg {
  color: #d4b85a;
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(-8px);
}

.service-card:hover .service-card__title {
  color: #d4b85a;
}

.service-card:hover .service-card__accent {
  opacity: 1;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 16px;
  margin-bottom: 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  color: #c9a84c;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__title {
  font-family: "Tajawal", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__desc {
  font-size: 0.95rem;
  color: #8b92a5;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-card__arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9a84c;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__arrow svg {
  width: 18px;
  height: 18px;
  transform: scaleX(-1);
}

.service-card__accent {
  position: absolute;
  top: 0;
  right: 3rem;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card--featured {
  background: linear-gradient(135deg, rgba(21, 42, 74, 0.8) 0%, rgba(15, 31, 61, 0.9) 100%);
  border-color: rgba(201, 168, 76, 0.12);
}

.service-card--featured .service-card__accent {
  opacity: 0.5;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero__split {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    gap: 3rem;
  }
  .hero__content {
    text-align: center;
    order: 1;
  }
  .hero__subtitle {
    margin: 0 auto 3rem;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__image {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 100svh;
  }
  .hero__split {
    padding-top: 100px;
    gap: 1.5rem;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 0.95rem;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__corner {
    display: none;
  }
  .hero__image {
    max-width: 300px;
  }
  .about__experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-flex;
    flex-direction: column;
    margin-top: 1.5rem;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .service-card {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__canvas {
    display: none;
  }
}

@media (prefers-contrast: high) {
  .service-card {
    border-color: rgba(201, 168, 76, 0.3);
  }
  .about__feature {
    border-color: rgba(201, 168, 76, 0.3);
  }
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats {
  position: relative;
  background: linear-gradient(180deg, #0a1628 0%, #0f1f3d 50%, #0a1628 100%);
  overflow: hidden;
}

.stats__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.stat-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(15, 31, 61, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 40px rgba(201, 168, 76, 0.06);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover .stat-card__icon {
  transform: scale(1.1) rotateY(180deg);
  background: rgba(201, 168, 76, 0.15);
}

.stat-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card__icon svg {
  width: 26px;
  height: 26px;
  color: #c9a84c;
}

.stat-card__number {
  font-family: "Tajawal", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #c9a84c;
  line-height: 1;
  display: inline;
}

.stat-card__suffix {
  font-family: "Tajawal", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c9a84c;
  display: inline;
  margin-right: 2px;
}

.stat-card__label {
  font-size: 0.95rem;
  color: #8b92a5;
  margin-top: 0.75rem;
  font-weight: 500;
}

.stat-card__bar {
  width: 100%;
  height: 3px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 9999px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.stat-card__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
  border-radius: 9999px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
  position: relative;
  background: #0a1628;
  overflow: hidden;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

.team-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 31, 61, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 76, 0.06);
}

.team-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #152a4a 0%, #1a3460 100%);
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-card__image img {
  transform: scale(1.05);
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-card__overlay {
  opacity: 1;
}

.team-card__socials {
  display: flex;
  gap: 1rem;
}

.team-card__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  color: #c9a84c;
  transition: all 0.25s ease;
  transform: translateY(20px);
}

.team-card:hover .team-card__socials a {
  transform: translateY(0);
}

.team-card:hover .team-card__socials a:nth-child(1) { transition-delay: 0.05s; }
.team-card:hover .team-card__socials a:nth-child(2) { transition-delay: 0.1s; }

.team-card__socials a:hover {
  background: #c9a84c;
  color: #0a1628;
}

.team-card__socials svg {
  width: 18px;
  height: 18px;
}

.team-card__info {
  padding: 1.5rem;
}

.team-card__name {
  font-family: "Tajawal", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.85rem;
  color: #c9a84c;
  margin-bottom: 0.75rem;
}

.team-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.team-card__tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */
.cases {
  position: relative;
  background: linear-gradient(180deg, #0a1628 0%, #1a1d23 50%, #0a1628 100%);
  overflow: hidden;
}

.cases__slider {
  position: relative;
  overflow: hidden;
}

.cases__track {
  display: flex;
  gap: 2rem;
  cursor: grab;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.cases__track:active {
  cursor: grabbing;
}

.case-card {
  flex: 0 0 calc(33.333% - 1.34rem);
  position: relative;
  padding: 2.5rem;
  background: rgba(15, 31, 61, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

@media (max-width: 992px) {
  .case-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 576px) {
  .case-card {
    flex: 0 0 100%;
  }
}

.case-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.case-card:hover .case-card__glow {
  opacity: 1;
}

.case-card__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.case-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 9999px;
  color: #d4b85a;
  margin-bottom: 1.25rem;
}

.case-card__title {
  font-family: "Tajawal", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.case-card__desc {
  font-size: 0.9rem;
  color: #8b92a5;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.case-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.case-card__result-label {
  display: block;
  font-size: 0.7rem;
  color: #5a6070;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.case-card__result-value {
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #c9a84c;
}

.case-card__year {
  font-family: "Tajawal", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.cases__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.cases__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: transparent;
  color: #c9a84c;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cases__btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: #c9a84c;
  transform: scale(1.05);
}

.cases__btn svg {
  width: 20px;
  height: 20px;
}

.cases__dots {
  display: flex;
  gap: 0.5rem;
}

.cases__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cases__dots .dot.active {
  background: #c9a84c;
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  position: relative;
  background: #0a1628;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials__carousel {
  overflow: hidden;
  cursor: grab;
  position: relative;
}

.testimonials__carousel:active {
  cursor: grabbing;
}

.testimonials__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.34rem);
  position: relative;
  padding: 2.5rem;
  background: rgba(15, 31, 61, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 16px;
  transition: all 0.4s ease;
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.testimonial-card__quote {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 2rem;
  position: relative;
  font-style: normal;
}

.testimonial-card__quote::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  right: -5px;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2) 0%, rgba(201, 168, 76, 0.08) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-family: "Tajawal", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c9a84c;
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  font-style: normal;
}

.testimonial-card__title {
  font-size: 0.8rem;
  color: #8b92a5;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  position: relative;
  background: linear-gradient(180deg, #0a1628 0%, #0f1f3d 100%);
  overflow: hidden;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Contact Form */
.contact__form-wrapper {
  background: rgba(15, 31, 61, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 24px;
  padding: 3rem;
}

@media (max-width: 576px) {
  .contact__form-wrapper {
    padding: 2rem 1.5rem;
  }
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.contact-form__group {
  position: relative;
}

.contact-form__group--full {
  margin-bottom: 2rem;
}

.contact-form__group input,
.contact-form__group textarea,
.contact-form__group select {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s ease;
}

.contact-form__group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  cursor: pointer;
}

.contact-form__group select option {
  background: #0f1f3d;
  color: #ffffff;
}

.contact-form__group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus,
.contact-form__group select:focus {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
  outline: none;
}

.contact-form__group label {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-size: 0.95rem;
  color: #5a6070;
  pointer-events: none;
  transition: all 0.25s ease;
  background: transparent;
  padding: 0 0.25rem;
}

.contact-form__group input:focus ~ label,
.contact-form__group input:not(:placeholder-shown) ~ label,
.contact-form__group textarea:focus ~ label,
.contact-form__group textarea:not(:placeholder-shown) ~ label {
  top: -0.6rem;
  right: 1rem;
  font-size: 0.75rem;
  color: #c9a84c;
  background: #0f1f3d;
  padding: 0 0.5rem;
}

.contact-form__submit {
  width: 100%;
}

/* Contact Info */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(15, 31, 61, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact__info-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  background: rgba(15, 31, 61, 0.5);
}

.contact__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  color: #c9a84c;
}

.contact__info-icon svg {
  width: 22px;
  height: 22px;
}

.contact__info-card h4 {
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.contact__info-card p {
  font-size: 0.85rem;
  color: #8b92a5;
  line-height: 1.6;
}

/* Map Placeholder */
.contact__map {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #152a4a 0%, #0f1f3d 100%);
  border: 1px solid rgba(201, 168, 76, 0.08);
  position: relative;
}

.contact__map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(201, 168, 76, 0.25);
}

.contact__map-placeholder span {
  font-size: 0.85rem;
  color: #5a6070;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #070e1a;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer__top {
  padding: 5rem 0 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__logo .firm-name {
  font-family: "Tajawal", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.footer__logo .navbar__logo-icon {
  width: 36px;
  height: 36px;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: #5a6070;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.1);
  color: #8b92a5;
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
  color: #c9a84c;
  transform: translateY(-3px);
}

.footer__links-group h4 {
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__links-group h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #c9a84c 0%, #e0ca7a 100%);
  border-radius: 9999px;
}

.footer__links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links-group a {
  font-size: 0.9rem;
  color: #5a6070;
  transition: all 0.25s ease;
  position: relative;
  display: inline-block;
}

.footer__links-group a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 1px;
  background: #c9a84c;
  transition: width 0.3s ease;
}

.footer__links-group a:hover {
  color: #c9a84c;
  transform: translateX(-4px);
}

.footer__links-group a:hover::before {
  width: 100%;
}

/* Newsletter */
.footer__newsletter h4 {
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer__newsletter p {
  font-size: 0.85rem;
  color: #5a6070;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer__newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(15, 31, 61, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.85rem;
  font-family: "Cairo", sans-serif;
  transition: border-color 0.3s ease;
}

.footer__newsletter-form input:focus {
  border-color: rgba(201, 168, 76, 0.4);
  outline: none;
}

.footer__newsletter-form .btn {
  white-space: nowrap;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  padding: 1.5rem 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: #3d424d;
}

@media (max-width: 576px) {
  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }
}
