/* =====================================================
   المسار الحديث المميز - Stylesheet
   Primary: #0A1628 (Navy)  Accent: #C9993B (Gold)
   ===================================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --navy-deep: #050d1a;
  --navy-dark: #0A1628;
  --navy-mid: #122040;
  --navy-light: #1a3160;
  --gold-dark: #a07820;
  --gold-main: #C9993B;
  --gold-light: #e8bc5c;
  --gold-pale: #f5e4b3;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f1f3f7;
  --gray-200: #e0e5ee;
  --gray-400: #9ba8c0;
  --gray-600: #5a6a8a;
  --text-dark: #0e1c36;
  --text-mid: #3a4a6b;
  --text-light: #7a8aaa;
  --success: #16a34a;
  --error: #dc2626;
  --border-r-sm: 8px;
  --border-r-md: 16px;
  --border-r-lg: 24px;
  --border-r-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, .10);
  --shadow-md: 0 8px 28px rgba(10, 22, 40, .15);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, .22);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --font-body: 'Cairo', 'Tajawal', sans-serif;
}

/* ---- Reset / Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  direction: rtl;
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  background: var(--gold-main);
  color: var(--navy-dark);
  padding: .5rem 1rem;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  transition: top .2s;
}

.skip-link:focus {
  top: 0;
}

*:focus-visible {
  outline: 3px solid var(--gold-main);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: var(--border-r-xl);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: 0 4px 18px rgba(201, 153, 59, .35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 153, 59, .50);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold-main);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--gold-main);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.mt-btn {
  margin-top: 1.5rem;
}

/* ---- Section Shared ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-pale), #ffe599);
  color: var(--gold-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: .65rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-tag-light {
  background: rgba(201, 153, 59, .18);
  color: var(--gold-light);
}

.section-title-light {
  color: var(--white);
}

.section-subtitle-light {
  color: rgba(255, 255, 255, .65);
}

.section-header-light {
  color: var(--white);
}

/* ====================================================
   HEADER / NAVBAR
   ==================================================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(5, 13, 26, 0.0);
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(5, 13, 26, .95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 92px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(201, 153, 59, .4));
  max-width: 300px;
}

.nav-menu {
  display: flex;
  gap: .1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  padding: .5rem .8rem;
  font-size: .93rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  transition: color var(--transition);
  border-radius: var(--border-r-sm);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 50%;
  left: 50%;
  height: 2px;
  background: var(--gold-main);
  border-radius: 2px;
  transition: right var(--transition), left var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  right: .8rem;
  left: .8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  width: 40px;
  background: none;
  border: none;
}

.hamburger-line {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-dark) 45%, #0d2554 100%);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 40%, rgba(201, 153, 59, .12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 90% 20%, rgba(26, 49, 96, .7) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9993b' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-main), transparent);
  opacity: .18;
  animation: float-particle 8s ease-in-out infinite;
}

.p1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-duration: 10s;
}

.p2 {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 2%;
  animation-duration: 7s;
  animation-delay: -2s;
}

.p3 {
  width: 80px;
  height: 80px;
  top: 80%;
  left: 20%;
  animation-duration: 12s;
  animation-delay: -4s;
}

.p4 {
  width: 160px;
  height: 160px;
  top: 15%;
  right: 8%;
  animation-duration: 9s;
  animation-delay: -1s;
}

.p5 {
  width: 90px;
  height: 90px;
  top: 50%;
  right: 5%;
  animation-duration: 11s;
  animation-delay: -3s;
}

.p6 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  right: 20%;
  animation-duration: 14s;
  animation-delay: -5s;
  opacity: .08;
}

@keyframes float-particle {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-24px) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201, 153, 59, .15);
  border: 1px solid rgba(201, 153, 59, .38);
  color: var(--gold-light);
  padding: .45rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1.6rem;
  animation: fade-up .7s ease both;
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 1.4rem;
  animation: fade-up .7s .1s ease both;
}

.title-line1 {
  display: block;
  color: var(--white);
}

.title-line2 {
  display: block;
  color: rgba(255, 255, 255, .85);
  font-size: .82em;
}

.title-accent {
  display: block;
  font-size: .75em;
  background: linear-gradient(90deg, var(--gold-main), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: .2rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .7);
  max-width: 680px;
  margin: 0 auto 2rem;
  animation: fade-up .7s .2s ease both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fade-up .7s .3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up .7s .4s ease both;
}

.stat-item {
  text-align: center;
  color: var(--white);
  position: relative;
  padding: 0 1rem;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 0;
  bottom: 15%;
  width: 1px;
  background: rgba(201, 153, 59, .35);
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-main);
}

.stat-label {
  display: block;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-top: .1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .45);
  font-size: .78rem;
  animation: pulse-scroll 2s ease infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(201, 153, 59, .5);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-main);
  border-radius: 2px;
  animation: scroll-wheel 1.5s ease infinite;
}

@keyframes scroll-wheel {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  70% {
    transform: translateY(12px);
    opacity: 0
  }
}

@keyframes pulse-scroll {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================================================
   TICKER / MARQUEE
   ==================================================== */
.ticker-section {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-main), var(--gold-dark));
  overflow: hidden;
  padding: .55rem 0;
}

.ticker-wrapper {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy-dark);
  padding: 0 .5rem;
  white-space: nowrap;
}

.ticker-sep {
  color: var(--navy-dark);
  font-size: .8rem;
  padding: 0 .6rem;
  opacity: .6;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker-track:hover {
  animation-play-state: paused;
}

/* ====================================================
   ABOUT
   ==================================================== */
.about {
  padding: 6rem 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-wrapper {
  position: relative;
}

.about-img-bg {
  position: absolute;
  inset: -20px -20px 20px 20px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border-radius: var(--border-r-lg);
  z-index: 0;
  opacity: .12;
}

.about-logo-display {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--border-r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.about-logo {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.about-badge-float {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  z-index: 2;
}

.float-badge {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  border-radius: var(--border-r-md);
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: 0 8px 24px rgba(201, 153, 59, .4);
  color: var(--navy-dark);
  animation: float-badge 3s ease-in-out infinite;
}

.float-badge-icon {
  font-size: 1.6rem;
}

.float-badge strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
}

.float-badge small {
  font-size: .78rem;
  opacity: .8;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.about-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .7rem;
}

.about-text {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: var(--white);
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
}

/* ====================================================
   SERVICES
   ==================================================== */
.services {
  padding: 6rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-r-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-main), var(--navy-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-inner {
  padding: 2rem;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--border-r-md);
  background: linear-gradient(135deg, var(--gold-pale), rgba(201, 153, 59, .2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
}

.service-icon {
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: .6rem;
}

.service-desc {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--gray-100);
  color: var(--text-mid);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 50px;
  transition: var(--transition);
}

.service-card:hover .tag {
  background: rgba(201, 153, 59, .12);
  color: var(--gold-dark);
}

/* ====================================================
   PRODUCTS
   ==================================================== */
.products {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--off-white) 100%);
}

.products-tabs {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: .65rem 1.8rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-mid);
  border: 2px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--gold-main);
  color: var(--gold-dark);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: var(--navy-dark);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(201, 153, 59, .35);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fade-up .4s ease;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-r-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}

.product-icon {
  font-size: 2.8rem;
  margin-bottom: .9rem;
}

.product-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: .5rem;
}

.product-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ====================================================
   WHY US
   ==================================================== */
.why-us {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-dark) 50%, var(--navy-mid) 100%);
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(201, 153, 59, .1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(26, 49, 96, .4) 0%, transparent 60%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 153, 59, .2);
  border-radius: var(--border-r-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 153, 59, .06), transparent);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 153, 59, .5);
  background: rgba(255, 255, 255, .08);
}

.why-card:hover::before {
  opacity: 1;
}

.why-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(201, 153, 59, .18);
  position: absolute;
  top: 1rem;
  left: 1rem;
  user-select: none;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: .8rem;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}

.why-card p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
}

/* ====================================================
   FAQ
   ==================================================== */
.faq {
  padding: 6rem 0;
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-r-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--gold-main);
  box-shadow: 0 4px 16px rgba(201, 153, 59, .15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy-dark);
  background: none;
  text-align: right;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--gold-main);
  transition: transform var(--transition);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.8;
  border-top: 1px solid var(--gray-100);
  animation: faq-open .25s ease;
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ====================================================
   CONTACT
   ==================================================== */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-subtitle {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: var(--border-r-sm);
  margin-bottom: .75rem;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.contact-card:hover {
  background: var(--gray-100);
  border-color: var(--gold-pale);
}

.contact-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.contact-details strong {
  font-size: .9rem;
  color: var(--navy-dark);
  font-weight: 800;
}

.contact-details span,
.contact-details a {
  font-size: .9rem;
  color: var(--text-mid);
}

.contact-link:hover {
  color: var(--gold-dark);
}

.btn-call {
  width: 100%;
  margin-top: 1.5rem;
  gap: .6rem;
}

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--border-r-lg);
  padding: 2.2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: .45rem;
}

.required {
  color: var(--error);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--border-r-sm);
  background: var(--white);
  color: var(--text-dark);
  font-size: .93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold-main);
  box-shadow: 0 0 0 3px rgba(201, 153, 59, .2);
}

.form-input.invalid,
.form-textarea.invalid,
.form-select.invalid {
  border-color: var(--error);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  cursor: pointer;
}

.form-error {
  display: block;
  font-size: .8rem;
  color: var(--error);
  margin-top: .3rem;
  min-height: 1em;
}

.btn-submit {
  width: 100%;
  position: relative;
  height: 52px;
}

.btn-loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(10, 22, 40, .2);
  border-top-color: var(--navy-dark);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.form-success-msg {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: var(--border-r-sm);
  padding: 1rem;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}

.form-error-global {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: var(--border-r-sm);
  padding: 1rem;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-top {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
}

.footer-heading {
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-main);
  margin-bottom: 1rem;
}

.footer-link {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition);
  display: block;
  margin-bottom: .5rem;
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-address p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: .6rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.4rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255, 255, 255, .40);
}

.footer-link-sm {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  transition: color var(--transition);
  margin: 0 .4rem;
}

.footer-link-sm:hover {
  color: var(--gold-light);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: .2rem;
  color: rgba(255, 255, 255, .25);
}

/* ====================================================
   BACK TO TOP
   ==================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: var(--navy-dark);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(201, 153, 59, .45);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.back-to-top:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201, 153, 59, .6);
}

/* ====================================================
   RESPONSIVE – TABLET
   ==================================================== */
@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-col {
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ====================================================
   RESPONSIVE – MOBILE
   ==================================================== */
@media (max-width: 768px) {

  /* Nav */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(5, 13, 26, .97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 999;
    padding: 2rem;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.15rem;
    padding: .8rem 1.5rem;
  }

  .logo-img {
    height: 68px;
    max-width: 220px;
  }

  .nav-container {
    height: 84px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .stat-item {
    padding: 0 .6rem;
  }

  .stat-item::after {
    display: none;
  }

  /* About */
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-badge-float {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    display: inline-block;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Why Us */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Back to top */
  .back-to-top {
    bottom: 1.2rem;
    left: 1.2rem;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 1.5rem 1rem;
  }

  .contact-form-wrap {
    padding: 1.5rem 1rem;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ====================================================
   PRINT
   ==================================================== */
@media print {

  .header,
  .ticker-section,
  .hero-scroll-indicator,
  .back-to-top,
  .hero-particles {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section-title {
    color: #0A1628;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* ====================================================
   REDUCED MOTION
   ==================================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}