/* ========================
   COMPLETE STYLES.CSS
   Header & Footer Design
   ======================== */

/* === CSS Variables === */
:root {
  /* Colors */
  --navy-900: #0B1C2D;
  --navy-800: #13293D;
  --navy-700: #1C3A57;
  --gray-100: #F4F6F8;
  --gray-200: #E6E9ED;
  --gray-300: #D1D6DC;
  --white: #FFFFFF;
  --gold: #C9A24D;
  --text-main: #1F2933;
  --text-muted: #6B7280;

  /* Font */
  --inter: 'Inter', sans-serif;

  /* Text Scale */
  --text-scale-00: 0.75rem;
  --text-scale-01: 0.875rem;
  --text-scale-02: 1rem;
  --text-scale-03: 1.125rem;
  --text-scale-04: 1.25rem;
  --text-scale-05: 1.5rem;
  --text-scale-06: 1.875rem;
  --text-scale-07: 2.25rem;
  --text-scale-08: 3rem;
  --text-scale-09: 3.75rem;

  /* Font Weight */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Line Height */
  --line-height-solid: 1;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;

  /* Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;
}

/* === Base Styles === */
* {
  transition: all 0.25s ease-in-out;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--inter);
  color: var(--text-main);
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

/* ========================
   HEADER STYLES
   ======================== */

/* === Header Base === */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--navy-900);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  min-height: 80px;
}

/* === Header Logo === */
.header-logo {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: all 0.3s ease;
}

.header-logo:hover img {
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(201, 162, 77, 0.3));
  transform: translateY(-2px);
}

/* === Hamburger Menu Button === */
#hamburger_menu_btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: var(--text-scale-05);
  cursor: pointer;
  padding: 1rem;
  transition: all 0.3s ease;
}

#hamburger_menu_btn:hover {
  color: var(--gold);
  transform: scale(1.1);
}

/* === Navigation === */
.header-nav {
  display: flex;
  align-items: center;
}

.header-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  flex-direction: row-reverse;
}

.header-nav-list > li {
  position: relative;
}

/* === Navigation Links === */
.header-nav-link {
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-normal);
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  transition: all 0.3s ease;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

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

.header-nav-link:hover::after {
  transform: scaleX(1);
}

/* === Active Link State === */
.header-link-active {
  color: var(--gold);
  font-weight: var(--font-weight-semibold);
}

.header-link-active::after {
  transform: scaleX(1);
}

/* === Contact Button === */
.header-nav-link-contact {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  color: var(--navy-900);
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-normal);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 162, 77, 0.2);
}

.header-nav-link-contact:hover {
  background: linear-gradient(135deg, #D4AE5E 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.35);
}

.header-nav-link-contact .contact-icon {
  font-size: var(--text-scale-02);
  transition: all 0.3s ease;
}

.header-nav-link-contact:hover .contact-icon {
  transform: rotate(15deg);
}

/* === Services Dropdown === */
#servicesDropdownMenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.15);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.header-nav-list > li:hover #servicesDropdownMenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

#servicesDropdownMenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

/* === Services Dropdown Links === */
.servicesDropdownMenu-link {
  color: var(--text-main);
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  font-weight: var(--font-weight-regular);
  padding: 0.75rem 1.5rem;
  display: block;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.servicesDropdownMenu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.servicesDropdownMenu-link:hover {
  background: var(--gray-100);
  color: var(--navy-900);
  padding-left: 1.75rem;
}

.servicesDropdownMenu-link:hover::before {
  transform: scaleY(1);
}

/* === Chevron Icons === */
#menu-serv-open,
#menu-serv-closed {
  font-size: var(--text-scale-00);
  margin-right: 0.25rem;
  transition: all 0.3s ease;
}

#menu-serv-closed {
  display: none;
}

.header-nav-list > li:hover #menu-serv-open {
  display: none;
}

.header-nav-list > li:hover #menu-serv-closed {
  display: inline-block;
}

/* ========================
   MOBILE SIDEBAR
   ======================== */

/* === Mobile Sidebar Base === */
#mobile_sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  animation: slideInLeft 0.3s ease-out;
}

#mobile_sidebar.active {
  display: flex;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* === Sidebar Header === */
#mobile_sidebar .header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 162, 77, 0.2);
}

#mobile_sidebar .header-logo img {
  height: 50px;
  width: auto;
  filter: brightness(1);
  transition: all 0.3s ease;
}

#mobile_sidebar .header-logo:hover img {
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(201, 162, 77, 0.4));
}

/* === Close Button === */
#hamburger-menu-closed-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: var(--text-scale-05);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#hamburger-menu-closed-btn:hover {
  background: rgba(201, 162, 77, 0.2);
  color: var(--gold);
  transform: rotate(90deg);
}

/* === Mobile Navigation === */
.mobile-nav {
  flex: 1;
  margin-bottom: 2rem;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* === Mobile Nav Links === */
.mobile-nav-link {
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-medium);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-link::after {
  content: '→';
  font-size: var(--text-scale-03);
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  margin-left: auto;
}

.mobile-nav-link:hover {
  background: rgba(201, 162, 77, 0.1);
  color: var(--gold);
  padding-left: 1.5rem;
}

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.mobile-nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* === Active Mobile Link === */
.mobile-nav-link.mobile-link-active {
  background: rgba(201, 162, 77, 0.15);
  color: var(--gold);
  font-weight: var(--font-weight-semibold);
}

.mobile-nav-link.mobile-link-active::before {
  transform: scaleY(1);
}

/* === Mobile Contact Button === */
.mobile-contact-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  color: var(--navy-900);
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-semibold);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-contact-btn:hover {
  background: linear-gradient(135deg, #D4AE5E 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 162, 77, 0.4);
}

.mobile-contact-btn::after {
  content: '✉';
  font-size: var(--text-scale-03);
}

/* === Email & Phone Info === */
.email-phone {
  color: var(--gray-200);
  font-family: var(--inter);
  font-size: var(--text-scale-00);
  line-height: var(--line-height-relaxed);
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 77, 0.2);
}

/* === Sidebar Overlay === */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 28, 45, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
  animation: fadeIn 0.3s ease;
}

.sidebar-overlay.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* === Small Screens Adjustment === */
@media (max-width: 375px) {
  #mobile_sidebar {
    width: 280px;
  }
}

/* ========================
   FOOTER STYLES
   ======================== */

/* === Footer Base === */
.main-footer {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 4rem 3rem 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

/* === Company Section === */
.main-footer .company {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(1);
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(201, 162, 77, 0.4));
  transform: translateY(-3px);
}

.footer-p {
  color: var(--gray-200);
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  line-height: var(--line-height-relaxed);
  max-width: 320px;
}

/* === Footer CTA === */
.footer-cta {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 77, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 162, 77, 0.15);
}

.footer-cta-p {
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-semibold);
}

.footer-cta-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  color: var(--navy-900);
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  font-weight: var(--font-weight-semibold);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 162, 77, 0.2);
}

.footer-cta-btn:hover {
  background: linear-gradient(135deg, #D4AE5E 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.35);
}

/* === Services Section === */
.main-footer .services {
  grid-column: 2 / 3;
}

.main-footer .services::before {
  content: 'Services';
  display: block;
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
}

/* === Industries Section === */
.main-footer .industries {
  grid-column: 3 / 4;
}

.main-footer .industries::before {
  content: 'Industries';
  display: block;
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
}

/* === Contact Section === */
.main-footer .contact {
  grid-column: 4 / 5;
}

.main-footer .contact::before {
  content: 'Contact';
  display: block;
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
}

/* === Footer Links === */
.footer-serv-links,
.footer-ind-links,
.main-footer .contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-serv-links a,
.footer-ind-links a,
.main-footer .contact ul li {
  color: var(--gray-200);
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  line-height: var(--line-height-normal);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1rem;
}

.footer-serv-links a::before,
.footer-ind-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-serv-links a:hover,
.footer-ind-links a:hover {
  color: var(--gold);
  padding-left: 1.5rem;
}

.footer-serv-links a:hover::before,
.footer-ind-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.main-footer .contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.main-footer .contact ul li::before {
  content: '•';
  color: var(--gold);
  font-weight: var(--font-weight-bold);
}

/* === Copyright === */
#final {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-300);
  font-family: var(--inter);
  font-size: var(--text-scale-00);
  padding: 2rem 0 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================
   MAIN CONTENT STYLES
   ======================== */

/* === Body & Main === */
body {
  padding-top: 80px;
}

main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* === Section Base Styles === */
section {
  padding: 5rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1rem auto 0;
}

.section-desc {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: var(--line-height-relaxed);
}

/* === Button Base Style === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-semibold);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

/* ========================
   HERO SECTION
   ======================== */

#hero-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 3rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

#hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(11, 28, 45, 0.95) 0%, rgba(19, 41, 61, 0.9) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 162, 77, 0.03) 2px, rgba(201, 162, 77, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 162, 77, 0.03) 2px, rgba(201, 162, 77, 0.03) 4px);
  z-index: 1;
}

#hero-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.1) 0%, transparent 70%);
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-text {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-text h1 {
  font-family: var(--inter);
  font-size: var(--text-scale-08);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: var(--text-scale-03);
  line-height: var(--line-height-relaxed);
  color: var(--gray-200);
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  color: var(--navy-900);
  box-shadow: 0 4px 16px rgba(201, 162, 77, 0.3);
}

.hero-btn:hover {
  background: linear-gradient(135deg, #D4AE5E 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 77, 0.4);
}

#hero-visual {
  position: relative;
  z-index: 2;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.95);
  transition: transform 0.5s ease;
}

#hero-visual:hover img {
  transform: scale(1.05);
}

/* ========================
   SERVICES SECTION (Industries Cards)
   ======================== */

#services-section {
  background: var(--gray-100);
}

#industries-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.industries-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  width: 100%;
  max-width: 100%;
}

.industries-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.15);
  border-color: var(--gold);
}

.industries-icon {
  font-size: var(--text-scale-08);
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.industries-card:hover .industries-icon {
  transform: scale(1.1) rotate(5deg);
}

.industries-title {
  font-family: var(--inter);
  font-size: var(--text-scale-04);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.industries-desc {
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.industries-btn {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.industries-btn:hover {
  background: var(--gold);
  color: var(--navy-900);
}

/* ========================
   WHY CHOOSE US SECTION
   ======================== */

#why-choose-us-section {
  background: var(--white);
}

.wh-ch-us-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  width: 100%;
}

.wh-ch-us-point {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--gray-100);
}

.wh-ch-us-point:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.1);
  transform: translateY(-5px);
}

.wh-ch-us-point i {
  font-size: var(--text-scale-07);
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.wh-ch-us-point-title {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.wh-ch-us-point-desc {
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
}

/* ========================
   HOW WE WORK SECTION
   ======================== */

.how-we-work-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.how-we-work-section .section-title,
.how-we-work-section .section-desc {
  color: var(--white);
}

.how-we-work-section .section-title::after {
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.ho-we-wo-steps {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding: 2rem 0;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.ho-we-wo-step {
  flex: 1;
  min-width: 200px;
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 77, 0.2);
  transition: all 0.3s ease;
  z-index: 1;
}

.ho-we-wo-step:hover {
  background: rgba(201, 162, 77, 0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  color: var(--navy-900);
  font-family: var(--inter);
  font-size: var(--text-scale-04);
  font-weight: var(--font-weight-bold);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.hw-we-wo-step-title {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hw-we-wo-desc {
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  color: var(--gray-200);
  line-height: var(--line-height-relaxed);
}

/* ========================
   INDUSTRIES WE SERVE SECTION (Image Grid)
   ======================== */

#industries-we-serve-section {
  background: var(--gray-100);
}

.in-we-se-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  grid-auto-flow: dense;
  width: 100%;
}

.in-we-se-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 300px;
}

.in-we-se-card:nth-child(1),
.in-we-se-card:nth-child(3),
.in-we-se-card:nth-child(5),
.in-we-se-card:nth-child(6) {
  grid-column: span 2;
}

.in-we-se-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.in-we-se-img {
  display: block;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.in-we-se-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.in-we-se-card:hover .in-we-se-img img {
  transform: scale(1.1);
}

.in-we-se-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 28, 45, 0.9) 100%);
  transition: opacity 0.3s ease;
}

.in-we-se-card:hover .in-we-se-img::after {
  opacity: 0.7;
}

.on-we-se-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  font-family: var(--inter);
  font-size: var(--text-scale-04);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  z-index: 2;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 28, 45, 0.8) 100%);
}

/* ========================
   ABOUT US SECTION
   ======================== */

#about-us {
  background: var(--white);
}

.about-us-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.about-us-p {
  margin-bottom: 2.5rem;
}

.about-us-p p {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  line-height: var(--line-height-relaxed);
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.about-us-p-1 {
  font-weight: var(--font-weight-medium);
}

.about-us-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-us-points li {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-us-points li:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateX(5px);
}

.about-us-points li i {
  color: var(--gold);
  font-size: var(--text-scale-03);
}

.about-us-points li:hover i {
  color: var(--white);
}

.about-us-btn {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(11, 28, 45, 0.3);
}

.about-us-btn:hover {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 28, 45, 0.4);
}

/* ========================
   FINAL CTA SECTION
   ======================== */

.final-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  color: var(--navy-900);
  text-align: center;
  padding: 5rem 3rem;
  width: 100%;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.final-cta-strong-headline {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-extrabold);
  color: var(--navy-900);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}

.motivational-line {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  color: var(--navy-800);
  margin-bottom: 2.5rem;
  line-height: var(--line-height-relaxed);
}

.final-cta-btn {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(11, 28, 45, 0.3);
  padding: 1.25rem 3rem;
  font-size: var(--text-scale-03);
}

.final-cta-btn:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 28, 45, 0.5);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* === Tablet (1024px and below) === */
@media (max-width: 1024px) {
  /* Header */
  #main-header {
    padding: 0 2rem;
  }

  .header-nav-list {
    gap: 1rem;
  }

  .header-nav-link {
    font-size: var(--text-scale-01);
    padding: 0.65rem 0.85rem;
  }

  .header-nav-link-contact {
    font-size: var(--text-scale-01);
    padding: 0.65rem 1.25rem;
  }

  /* Main Content */
  section {
    padding: 4rem 2rem;
  }

  .section-title {
    font-size: var(--text-scale-06);
  }

  /* Hero Section */
  #hero-section {
    gap: 2rem;
    padding: 2rem;
  }

  .hero-text h1 {
    font-size: var(--text-scale-07);
  }

  #hero-visual {
    height: 400px;
  }

  /* Industries Grid */
  .in-we-se-card:nth-child(1),
  .in-we-se-card:nth-child(3),
  .in-we-se-card:nth-child(5),
  .in-we-se-card:nth-child(6) {
    grid-column: span 1;
  }

  /* Footer */
  .main-footer {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem 0;
  }

  .main-footer .company {
    grid-column: 1 / -1;
  }

  .main-footer .services {
    grid-column: 1 / 2;
  }

  .main-footer .industries {
    grid-column: 2 / 3;
  }

  .main-footer .contact {
    grid-column: 1 / -1;
  }
}

/* === Mobile (768px and below) === */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: var(--text-scale-05);
  }

  .section-desc {
    font-size: var(--text-scale-02);
    padding: 0 0.5rem;
  }

  /* Header */
  #main-header {
    padding: 1rem 1rem;
    min-height: 70px;
  }

  .header-logo img {
    height: 50px;
  }

  #hamburger_menu_btn {
    display: block;
  }

  .header-nav {
    display: none;
  }

  /* Hero Section */
  #hero-section {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 70px);
    padding: 2rem 1rem;
    gap: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #hero-visual {
    display: none;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
  }

  .hero-text h1 {
    font-size: var(--text-scale-06);
  }

  .hero-text p {
    margin: 0 auto 2rem;
    max-width: 100%;
  }

  /* Industries Cards */
  #industries-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }

  .industries-card {
    margin: 0 auto;
    max-width: 500px;
  }

  /* Why Choose Us */
  .wh-ch-us-points {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* How We Work */
  .ho-we-wo-steps {
    flex-direction: column;
    gap: 1rem;
  }

  .ho-we-wo-step {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Industries Grid */
  .in-we-se-container {
    grid-template-columns: 1fr;
  }

  .in-we-se-card:nth-child(1),
  .in-we-se-card:nth-child(3),
  .in-we-se-card:nth-child(5),
  .in-we-se-card:nth-child(6) {
    grid-column: span 1;
  }

  .in-we-se-img {
    height: 250px;
  }

  /* About Us */
  .about-us-points {
    gap: 0.75rem;
  }

  /* Final CTA */
  .final-cta {
    padding: 3rem 1rem;
  }

  .final-cta-strong-headline {
    font-size: var(--text-scale-05);
  }

  .motivational-line {
    font-size: var(--text-scale-02);
  }

  /* Footer */
  .main-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1rem 0;
  }

  .main-footer .company,
  .main-footer .services,
  .main-footer .industries,
  .main-footer .contact {
    grid-column: 1 / -1;
  }

  .footer-p {
    max-width: 100%;
  }

  .footer-cta {
    padding: 1.25rem;
  }

  .main-footer .services::before,
  .main-footer .industries::before,
  .main-footer .contact::before {
    font-size: var(--text-scale-02);
  }
}

/* === Small Mobile (480px and below) === */
@media (max-width: 480px) {
  section {
    padding: 2.5rem 0.75rem;
  }

  .section-title {
    font-size: var(--text-scale-04);
  }

  .section-desc {
    font-size: var(--text-scale-01);
  }

  /* Header */
  .header-logo img {
    height: 45px;
  }

  /* Hero Section */
  #hero-section {
    padding: 2rem 0.75rem;
  }

  .hero-text h1 {
    font-size: var(--text-scale-05);
  }

  .hero-text p {
    font-size: var(--text-scale-02);
  }

  /* Cards */
  .industries-card {
    padding: 2rem 1.5rem;
  }

  .industries-icon {
    font-size: var(--text-scale-07);
  }

  /* How We Work */
  .step-number {
    width: 50px;
    height: 50px;
    font-size: var(--text-scale-03);
  }

  /* Industries Grid */
  .in-we-se-img {
    height: 200px;
  }

  .on-we-se-name {
    font-size: var(--text-scale-03);
    padding: 1rem;
  }

  /* Final CTA */
  .final-cta-btn {
    padding: 1rem 2rem;
    font-size: var(--text-scale-02);
  }

  /* Footer */
  .main-footer {
    padding: 2rem 0.75rem 0;
  }

  .footer-logo img {
    height: 50px;
  }
}





/* ============================================================================================================== */
/* ========================
   SERVICES PAGE STYLES
   Complete & Responsive
   ======================== */

/* ========================
   HERO SECTION - SERVICES PAGE
   ======================== */

#se-pg-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px) !important;
  padding: 6rem 3rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  overflow: hidden;
  width: 100%;
}

/* خلفية متحركة بتأثير الشبكة */
#se-pg-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 162, 77, 0.04) 2px, rgba(201, 162, 77, 0.04) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 162, 77, 0.04) 2px, rgba(201, 162, 77, 0.04) 4px);
  z-index: 1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(40px, 40px);
  }
}

/* تأثير دوائر مضيئة */
#se-pg-hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.12) 0%, transparent 70%);
  z-index: 1;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.3) translate(-20px, 20px);
    opacity: 0.7;
  }
}

/* محتوى النص */
.se-pg-hero-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.se-pg-hero-text h1 {
  font-family: var(--inter);
  font-size: var(--text-scale-08);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: var(--letter-spacing-tight);
}

.se-pg-hero-text p {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--gray-200);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.se-pg-hero-text a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  color: var(--navy-900);
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-semibold);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(201, 162, 77, 0.3);
  position: relative;
  overflow: hidden;
}

.se-pg-hero-text a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.se-pg-hero-text a:hover::before {
  width: 300px;
  height: 300px;
}

.se-pg-hero-text a:hover {
  background: linear-gradient(135deg, #D4AE5E 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(201, 162, 77, 0.5);
}

.se-pg-hero-text a::after {
  content: '→';
  font-size: var(--text-scale-03);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.se-pg-hero-text a:hover::after {
  transform: translateX(5px);
}

/* ========================
   SECTORS SECTION
   ======================== */

#se-pg-sectors {
  background: var(--gray-100);
  padding: 6rem 3rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* عنوان ووصف القسم */
.se-pg-setion-title {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: var(--letter-spacing-tight);
}

.se-pg-setion-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.se-pg-setion-desc {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: var(--line-height-relaxed);
}

/* ========================
   CARDS CONTAINER
   ======================== */

.se-pg-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 0;
}

/* ========================
   SECTOR CARD DESIGN
   ======================== */

.se-pg-sector-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11, 28, 45, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.se-pg-sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, #B89342 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.se-pg-sector-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(11, 28, 45, 0.15);
  border-color: var(--gold);
}

.se-pg-sector-card:hover::before {
  transform: scaleX(1);
}

/* صورة الكارت */
.se-pg-sector-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.95) contrast(1.05);
}

.se-pg-sector-card:hover img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1);
}

/* عنوان الكارت */
.se-pg-sector-card h3 {
  font-family: var(--inter);
  font-size: var(--text-scale-04);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  padding: 1.5rem 1.5rem 0.75rem;
  line-height: var(--line-height-tight);
  transition: color 0.3s ease;
}

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

/* وصف الكارت */
.se-pg-sector-card p {
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  font-weight: var(--font-weight-regular);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}

/* زر الكارت */
.sector-card-btn {
  margin: 0 1.5rem 1.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 6px;
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sector-card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: -1;
}

.sector-card-btn::after {
  content: '→';
  font-size: var(--text-scale-02);
  transition: transform 0.3s ease;
}

.sector-card-btn:hover {
  color: var(--navy-900);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.sector-card-btn:hover::before {
  width: 100%;
}

.sector-card-btn:hover::after {
  transform: translateX(5px);
}

/* تأثيرات إضافية لكل كارت */
.se-pg-sector-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.se-pg-sector-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.se-pg-sector-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.se-pg-sector-card:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.se-pg-sector-card:nth-child(5) {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.se-pg-sector-card:nth-child(6) {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* === Tablet (1024px and below) === */
@media (max-width: 1024px) {
  #se-pg-hero {
    min-height: calc(100vh - 80px)!important;
    padding: 5rem 2rem;
  }

  .se-pg-hero-text h1 {
    font-size: var(--text-scale-07);
  }

  .se-pg-hero-text p {
    font-size: var(--text-scale-02);
  }

  #se-pg-sectors {
    padding: 5rem 2rem;
  }

  .se-pg-setion-title {
    font-size: var(--text-scale-06);
  }

  .se-pg-card-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
  }

  .se-pg-sector-card img {
    height: 220px;
  }
}

/* === Mobile (768px and below) === */
@media (max-width: 768px) {
  #se-pg-hero {
    min-height: 50vh;
    padding: 4rem 1.5rem;
  }

  #se-pg-hero::after {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
  }

  .se-pg-hero-text h1 {
    font-size: var(--text-scale-06);
    margin-bottom: 1.25rem;
  }

  .se-pg-hero-text p {
    font-size: var(--text-scale-02);
    margin-bottom: 2rem;
  }

  .se-pg-hero-text a {
    padding: 1rem 2rem;
    font-size: var(--text-scale-01);
  }

  #se-pg-sectors {
    padding: 4rem 1.5rem;
  }

  .se-pg-setion-title {
    font-size: var(--text-scale-05);
  }

  .se-pg-setion-desc {
    font-size: var(--text-scale-02);
    margin-bottom: 3rem;
  }

  .se-pg-card-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .se-pg-sector-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .se-pg-sector-card img {
    height: 200px;
  }

  .se-pg-sector-card h3 {
    font-size: var(--text-scale-03);
    padding: 1.25rem 1.25rem 0.5rem;
  }

  .se-pg-sector-card p {
    padding: 0 1.25rem 1.25rem;
  }

  .sector-card-btn {
    margin: 0 1.25rem 1.25rem;
  }
}

/* === Small Mobile (480px and below) === */
@media (max-width: 480px) {
  #se-pg-hero {
    padding: 3rem 1rem;
  }

  .se-pg-hero-text h1 {
    font-size: var(--text-scale-05);
  }

  .se-pg-hero-text p {
    font-size: var(--text-scale-01);
  }

  .se-pg-hero-text a {
    padding: 0.875rem 1.5rem;
    font-size: var(--text-scale-00);
  }

  #se-pg-sectors {
    padding: 3rem 1rem;
  }

  .se-pg-setion-title {
    font-size: var(--text-scale-04);
  }

  .se-pg-setion-desc {
    font-size: var(--text-scale-01);
    padding: 0 0.5rem;
  }

  .se-pg-card-container {
    gap: 1.25rem;
  }

  .se-pg-sector-card img {
    height: 180px;
  }

  .se-pg-sector-card h3 {
    font-size: var(--text-scale-02);
    padding: 1rem 1rem 0.5rem;
  }

  .se-pg-sector-card p {
    font-size: var(--text-scale-00);
    padding: 0 1rem 1rem;
  }

  .sector-card-btn {
    margin: 0 1rem 1rem;
    padding: 0.75rem 1.25rem;
    font-size: var(--text-scale-00);
  }
}

/* === Extra Small Mobile (375px and below) === */
@media (max-width: 375px) {
  #se-pg-hero {
    padding: 2.5rem 0.75rem;
  }

  .se-pg-hero-text h1 {
    font-size: var(--text-scale-04);
  }

  #se-pg-sectors {
    padding: 2.5rem 0.75rem;
  }

  .se-pg-card-container {
    gap: 1rem;
  }
}

/* ========================
   ACCESSIBILITY & PERFORMANCE
   ======================== */

/* تحسين الأداء للأنيميشن */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States للوصول */
.se-pg-hero-text a:focus,
.sector-card-btn:focus {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ========================
   END OF SERVICES PAGE STYLES
   ======================== */










/* ========================
   DYNAMIC SECTOR PAGES STYLES
   Complete & Responsive Design
   ======================== */

/* ========================
   SECTOR HERO SECTION
   ======================== */

.sector-hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px)!important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

/* صورة الخلفية */
.sector-hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1);
  transition: transform 8s ease;
}

.sector-hero-section:hover img {
  transform: scale(1.05);
}

/* تأثير التدرج الداكن */
.sector-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(11, 28, 45, 0.85) 0%,
      rgba(19, 41, 61, 0.75) 50%,
      rgba(28, 58, 87, 0.85) 100%);
  z-index: 1;
}

/* تأثير النقاط المضيئة */
.sector-hero-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.15) 0%, transparent 70%);
  z-index: 1;
  animation: heroGlow 5s ease-in-out infinite;
}

@keyframes heroGlow {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2) translate(-30px, 30px);
    opacity: 0.8;
  }
}

/* محتوى Hero */
.sector-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUpHero 1s ease-out;
}

@keyframes fadeInUpHero {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.sector-hero-content h1 {
  font-family: var(--inter);
  font-size: var(--text-scale-09);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-tight);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sector-hero-content p {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--gray-200);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========================
   OVERVIEW SECTION
   ======================== */

.sector-overview-section {
  background: var(--white);
  padding: 6rem 3rem;
  width: 100%;
}

.sector-overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sector-overview-title {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
}

.sector-overview-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.sector-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

/* النص الوصفي */
.sector-overview-text {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

.sector-overview-desc {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--text-main);
  text-align: justify;
}

/* قائمة المميزات */
.sector-overview-features {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(11, 28, 45, 0.05);
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

.sector-overview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sector-overview-list li {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-medium);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(11, 28, 45, 0.03);
}

.sector-overview-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 16px rgba(201, 162, 77, 0.2);
  background: rgba(201, 162, 77, 0.05);
}

.sector-overview-list li i {
  color: var(--gold);
  font-size: var(--text-scale-03);
  min-width: 24px;
  transition: transform 0.3s ease;
}

.sector-overview-list li:hover i {
  transform: scale(1.2) rotate(360deg);
}

.sector-overview-list li span {
  flex: 1;
}

/* ========================
   SERVICES SECTION
   ======================== */

.sector-services-section {
  background: var(--gray-100);
  padding: 6rem 3rem;
  width: 100%;
}

.sector-services-title {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
}

.sector-services-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.sector-services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0;
}

/* كروت الخدمات */
.sector-services-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(11, 28, 45, 0.06);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.sector-services-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.1), transparent);
  transition: left 0.5s ease;
}

.sector-services-card:hover::before {
  left: 100%;
}

.sector-services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.12);
  border-color: var(--gold);
}

.sector-services-card i {
  font-size: var(--text-scale-08);
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.4s ease;
}

.sector-services-card:hover i {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 12px rgba(201, 162, 77, 0.3));
}

.sector-services-card h3 {
  font-family: var(--inter);
  font-size: var(--text-scale-04);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
  transition: color 0.3s ease;
}

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

.sector-services-card p {
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  font-weight: var(--font-weight-regular);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
}

/* تأثيرات دخول متتالية */
.sector-services-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.sector-services-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.sector-services-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.sector-services-card:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.sector-services-card:nth-child(5) {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.sector-services-card:nth-child(6) {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* ========================
   PROCESS SECTION
   ======================== */

.sector-process-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 6rem 3rem;
  width: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* تأثير الشبكة */
.sector-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 162, 77, 0.03) 2px, rgba(201, 162, 77, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 162, 77, 0.03) 2px, rgba(201, 162, 77, 0.03) 4px);
  z-index: 0;
}

.sector-process-title {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
  z-index: 1;
}

.sector-process-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.sector-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 4rem auto 0;
  position: relative;
  z-index: 1;
}

/* خطوات العملية */
.sector-process-step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 77, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sector-process-step::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--gold), transparent);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.sector-process-step:hover::before {
  opacity: 1;
}

.sector-process-step:hover {
  background: rgba(201, 162, 77, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(201, 162, 77, 0.2);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  color: var(--navy-900);
  font-family: var(--inter);
  font-size: var(--text-scale-06);
  font-weight: var(--font-weight-extrabold);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.3);
  position: relative;
  transition: all 0.4s ease;
}

.sector-process-step:hover .step-number {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 32px rgba(201, 162, 77, 0.5);
}

.step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
  transition: all 0.4s ease;
}

.sector-process-step:hover .step-number::after {
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.5;
}

.sector-process-step p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--gray-200);
}

/* خط الربط بين الخطوات */
.sector-process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  font-size: var(--text-scale-06);
  color: var(--gold);
  opacity: 0.3;
  z-index: 2;
}

/* ========================
   CTA SECTION
   ======================== */

.sector-cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  padding: 6rem 3rem;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* تأثير الدوائر */
.sector-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaFloat1 6s ease-in-out infinite;
}

.sector-cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaFloat2 8s ease-in-out infinite;
}

@keyframes ctaFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 50px) scale(1.2);
  }
}

@keyframes ctaFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, -50px) scale(1.1);
  }
}

.sector-cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sector-cta-container h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-08);
  font-weight: var(--font-weight-extrabold);
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.sector-cta-container p {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  color: var(--navy-800);
  line-height: var(--line-height-relaxed);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sector-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 3rem;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-semibold);
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sector-cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--navy-700);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.sector-cta-btn:hover::before {
  width: 400px;
  height: 400px;
}

.sector-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.5);
}

.sector-cta-btn::after {
  content: '→';
  font-size: var(--text-scale-04);
  transition: transform 0.3s ease;
}

.sector-cta-btn:hover::after {
  transform: translateX(8px);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* === Tablet (1024px and below) === */
@media (max-width: 1024px) {
  .sector-hero-section {
    height: 55vh;
      min-height: calc(100vh - 80px);
  }

  .sector-hero-content h1 {
    font-size: var(--text-scale-08);
  }

  .sector-hero-content p {
    font-size: var(--text-scale-02);
  }

  .sector-overview-section,
  .sector-services-section,
  .sector-process-section,
  .sector-cta-section {
    padding: 5rem 2rem;
  }

  .sector-overview-content {
    gap: 3rem;
  }

  .sector-services-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
  }

  .sector-process-steps {
    gap: 1.75rem;
  }

  .sector-process-step:not(:last-child)::after {
    display: none;
  }

  .sector-cta-container h2 {
    font-size: var(--text-scale-07);
  }
}

/* === Mobile (768px and below) === */
@media (max-width: 768px) {
  .sector-hero-section {
    min-height: calc(100vh - 80px);

  }

  .sector-hero-content {
    padding: 0 1.5rem;
  }

  .sector-hero-content h1 {
    font-size: var(--text-scale-07);
  }

  .sector-hero-content p {
    font-size: var(--text-scale-01);
  }

  .sector-overview-section,
  .sector-services-section,
  .sector-process-section,
  .sector-cta-section {
    padding: 4rem 1.5rem;
  }

  .sector-overview-title,
  .sector-services-title,
  .sector-process-title {
    font-size: var(--text-scale-06);
  }

  .sector-overview-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sector-overview-features {
    padding: 2rem;
  }

  .sector-services-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sector-services-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .sector-process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: var(--text-scale-05);
  }

  .sector-cta-container h2 {
    font-size: var(--text-scale-06);
  }

  .sector-cta-container p {
    font-size: var(--text-scale-02);
  }

  .sector-cta-btn {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-scale-02);
  }
}

/* === Small Mobile (480px and below) === */
@media (max-width: 480px) {
  .sector-hero-section {
      min-height: calc(100vh - 80px);
  }

  .sector-hero-content h1 {
    font-size: var(--text-scale-06);
  }

  .sector-hero-content p {
    font-size: var(--text-scale-00);
  }

  .sector-overview-section,
  .sector-services-section,
  .sector-process-section,
  .sector-cta-section {
    padding: 3rem 1rem;
  }

  .sector-overview-title,
  .sector-services-title,
  .sector-process-title {
    font-size: var(--text-scale-05);
  }

  .sector-overview-desc {
    font-size: var(--text-scale-01);
  }

  .sector-overview-features {
    padding: 1.5rem;
  }

  .sector-overview-list {
    gap: 1rem;
  }

  .sector-overview-list li {
    padding: 0.875rem 1rem;
    font-size: var(--text-scale-01);
  }

  .sector-services-card {
    padding: 2rem 1.5rem;
  }

  .sector-services-card i {
    font-size: var(--text-scale-07);
  }

  .sector-services-card h3 {
    font-size: var(--text-scale-03);
  }

  .sector-process-step {
    padding: 2rem 1.5rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: var(--text-scale-04);
  }

  .sector-process-step p {
    font-size: var(--text-scale-01);
  }

  .sector-cta-container h2 {
    font-size: var(--text-scale-05);
  }

  .sector-cta-container p {
    font-size: var(--text-scale-01);
  }

  .sector-cta-btn {
    padding: 1rem 2rem;
    font-size: var(--text-scale-01);
  }
}

/* === Extra Small Mobile (375px and below) === */
@media (max-width: 375px) {

  .sector-overview-section,
  .sector-services-section,
  .sector-process-section,
  .sector-cta-section {
    padding: 2.5rem 0.75rem;
  }

  .sector-hero-content h1 {
    font-size: var(--text-scale-05);
  }

  .sector-overview-title,
  .sector-services-title,
  .sector-process-title {
    font-size: var(--text-scale-04);
  }

  .step-number {
    width: 55px;
    height: 55px;
    font-size: var(--text-scale-03);
  }

  .sector-cta-container h2 {
    font-size: var(--text-scale-04);
  }
}

/* ========================
   ACCESSIBILITY & PERFORMANCE
   ======================== */

/* تحسين الأداء */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
.sector-cta-btn:focus {
  outline: 3px solid var(--navy-900);
  outline-offset: 4px;
}

.sector-overview-list li:focus-within,
.sector-services-card:focus-within,
.sector-process-step:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ========================
   UTILITY CLASSES
   ======================== */

/* مساعدة لإضافة مسافة بين الأقسام */
.sector-section-spacing {
  margin-top: 4rem;
}

/* للعناصر المخفية على الموبايل */
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* للعناصر المخفية على الديسكتوب */
@media (min-width: 769px) {
  .hide-on-desktop {
    display: none !important;
  }
}

/* ========================
   END OF SECTOR PAGES STYLES
   ======================== */





/* ========================
   ABOUT PAGE STYLES
   Complete & Responsive Design
   ======================== */

/* ========================
   1. ABOUT HERO SECTION
   ======================== */

#about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    min-height: calc(100vh - 80px);
  padding: 6rem 3rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  overflow: hidden;
  text-align: center;
}

/* تأثير الشبكة المتحركة */
#about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 162, 77, 0.04) 2px, rgba(201, 162, 77, 0.04) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 162, 77, 0.04) 2px, rgba(201, 162, 77, 0.04) 4px);
  z-index: 1;
  animation: gridMove 20s linear infinite;
}

/* دوائر مضيئة */
#about-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.1) 0%, transparent 70%);
  z-index: 1;
  animation: pulseGlow 5s ease-in-out infinite;
}

#about-hero h1 {
  position: relative;
  z-index: 2;
  font-family: var(--inter);
  font-size: var(--text-scale-08);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-tight);
  max-width: 1000px;
  animation: fadeInUp 0.8s ease-out;
}

#about-hero p {
  position: relative;
  z-index: 2;
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--gray-200);
  max-width: 850px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ========================
   2. WHO WE ARE SECTION
   ======================== */

#about-who-we-are {
  background: var(--white);
  padding: 6rem 3rem;
}

#about-who-we-are h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
}

#about-who-we-are h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}

#about-who-we-are p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  line-height: var(--line-height-relaxed);
  color: var(--text-main);
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  text-align: justify;
}

.about-who-we-are-p1 {
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-medium);
  color: var(--navy-900);
  margin-bottom: 2rem;
}

.about-who-we-are-p3 {
  font-weight: var(--font-weight-medium);
  color: var(--navy-900);
  padding: 1.5rem;
  background: var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  margin-top: 2rem;
}

/* ========================
   3. ENGINEERING PHILOSOPHY SECTION
   ======================== */

#about-engineering-philosophy {
  background: var(--gray-100);
  padding: 6rem 3rem;
}

#about-engineering-philosophy h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

#about-engineering-philosophy h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.about-engineering-intro-line {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: var(--line-height-relaxed);
}

.about-engineering-philosophy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-engineering-point {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(11, 28, 45, 0.08);
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.about-engineering-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.about-engineering-point:hover::before {
  height: 100%;
}

.about-engineering-point:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.12);
  border-color: var(--gold);
}

.about-engineering-point h3 {
  font-family: var(--inter);
  font-size: var(--text-scale-04);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.about-engineering-point:hover h3 {
  color: var(--gold);
}

.about-engineering-point p {
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  line-height: var(--line-height-relaxed);
  color: var(--text-muted);
}

/* تأثيرات دخول متتالية */
.about-engineering-point:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.about-engineering-point:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.about-engineering-point:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* ========================
   4. WHAT MAKES US DIFFERENT SECTION
   ======================== */

#about-what-makes-us-different {
  background: var(--white);
  padding: 6rem 3rem;
}

#about-what-makes-us-different h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

#about-what-makes-us-different h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}

.about-what-makes-us-different-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-difference-point {
  background: var(--gray-100);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
}

.about-difference-point::before {
  content: '✓';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  transition: all 0.4s ease;
}

.about-difference-point:hover::before {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.about-difference-point:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.1);
}

.about-difference-point h3 {
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  margin-bottom: 1rem;
  padding-right: 3rem;
}

.about-difference-point p {
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  line-height: var(--line-height-relaxed);
  color: var(--text-muted);
}

/* ========================
   5. INDUSTRIES WE SUPPORT SECTION
   ======================== */

#about-industries-we-support {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 6rem 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#about-industries-we-support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 162, 77, 0.03) 2px, rgba(201, 162, 77, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 162, 77, 0.03) 2px, rgba(201, 162, 77, 0.03) 4px);
  z-index: 0;
}

#about-industries-we-support h2 {
  position: relative;
  z-index: 1;
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

#about-industries-we-support h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}

.about-industries-we-support-text {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-industries-we-support-text p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  line-height: var(--line-height-relaxed);
  color: var(--gray-200);
  margin-bottom: 2rem;
  text-align: center;
}

.about-industries-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 0;
}

.about-industries-list li {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 77, 0.2);
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-medium);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-industries-list li::before {
  content: '▸';
  color: var(--gold);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-bold);
  transition: transform 0.3s ease;
}

.about-industries-list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.about-industries-list li:hover {
  background: rgba(201, 162, 77, 0.15);
  border-color: var(--gold);
  transform: translateX(10px);
}

.about-industries-list li:hover::before {
  transform: translateX(5px);
}

.about-industries-list li:hover::after {
  transform: scaleY(1);
}

/* ========================
   6. OUR TEAM SECTION
   ======================== */

#about-our-team {
  background: var(--white);
  padding: 6rem 3rem;
}

#about-our-team h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

#about-our-team h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}

#about-our-team p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  line-height: var(--line-height-relaxed);
  color: var(--text-main);
  max-width: 900px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.about-our-team-p1 {
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-medium);
  color: var(--navy-900);
}

/* ========================
   7. OUR COMMITMENT SECTION
   ======================== */

#about-our-commitment {
  background: var(--gray-100);
  padding: 6rem 3rem;
}

#about-our-commitment h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

#about-our-commitment h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}

#about-our-commitment p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  line-height: var(--line-height-relaxed);
  color: var(--text-main);
  max-width: 900px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.about-our-commitment-p2 {
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-semibold);
  color: var(--navy-900);
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(11, 28, 45, 0.05);
}

/* ========================
   8. FINAL CTA SECTION
   ======================== */

#about-final-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* تأثير الدوائر */
#about-final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaFloat1 6s ease-in-out infinite;
}

#about-final-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaFloat2 8s ease-in-out infinite;
}

#about-final-cta h2 {
  position: relative;
  z-index: 1;
  font-family: var(--inter);
  font-size: var(--text-scale-08);
  font-weight: var(--font-weight-extrabold);
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.about-final-cta-p {
  position: relative;
  z-index: 1;
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  color: var(--navy-800);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.about-final-cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 3rem;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-semibold);
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.3);
  overflow: hidden;
}

.about-final-cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--navy-700);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.about-final-cta-btn:hover::before {
  width: 400px;
  height: 400px;
}

.about-final-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.5);
}

.about-final-cta-btn::after {
  content: '→';
  font-size: var(--text-scale-04);
  transition: transform 0.3s ease;
}

.about-final-cta-btn:hover::after {
  transform: translateX(8px);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* === Tablet (1024px and below) === */
@media (max-width: 1024px) {
  #about-hero {
    padding: 5rem 2rem;
      min-height: calc(100vh - 80px);
  }

  #about-hero h1 {
    font-size: var(--text-scale-07);
  }

  #about-hero p {
    font-size: var(--text-scale-02);
  }

  #about-who-we-are,
  #about-engineering-philosophy,
  #about-what-makes-us-different,
  #about-industries-we-support,
  #about-our-team,
  #about-our-commitment,
  #about-final-cta {
    padding: 5rem 2rem;
  }

  #about-who-we-are h2,
  #about-engineering-philosophy h2,
  #about-what-makes-us-different h2,
  #about-industries-we-support h2,
  #about-our-team h2,
  #about-our-commitment h2 {
    font-size: var(--text-scale-06);
  }

  #about-final-cta h2 {
    font-size: var(--text-scale-07);
  }

  .about-engineering-philosophy-points {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-what-makes-us-different-points {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
  }
}

/* === Mobile (768px and below) === */
@media (max-width: 768px) {
  #about-hero {
    padding: 4rem 1.5rem;
      min-height: calc(100vh - 80px);
  }

  #about-hero h1 {
    font-size: var(--text-scale-06);
  }

  #about-hero p {
    font-size: var(--text-scale-01);
  }

  #about-who-we-are,
  #about-engineering-philosophy,
  #about-what-makes-us-different,
  #about-industries-we-support,
  #about-our-team,
  #about-our-commitment,
  #about-final-cta {
    padding: 4rem 1.5rem;
  }

  #about-who-we-are h2,
  #about-engineering-philosophy h2,
  #about-what-makes-us-different h2,
  #about-industries-we-support h2,
  #about-our-team h2,
  #about-our-commitment h2 {
    font-size: var(--text-scale-05);
  }

  #about-who-we-are p,
  #about-our-team p,
  #about-our-commitment p {
    text-align: justify;
  }

  .about-engineering-philosophy-points {
    grid-template-columns: 1fr;
  }

  .about-engineering-point {
    padding: 2rem 1.5rem;
  }

  .about-what-makes-us-different-points {
    grid-template-columns: 1fr;
  }

  .about-industries-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #about-final-cta h2 {
    font-size: var(--text-scale-06);
  }

  .about-final-cta-p {
    font-size: var(--text-scale-02);
  }

  .about-final-cta-btn {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-scale-02);
  }
}

/* === Small Mobile (480px and below) === */
@media (max-width: 480px) {
  #about-hero {
    padding: 3rem 1rem;
  }

  #about-hero h1 {
    font-size: var(--text-scale-05);
  }

  #about-hero p {
    font-size: var(--text-scale-00);
  }

  #about-who-we-are,
  #about-engineering-philosophy,
  #about-what-makes-us-different,
  #about-industries-we-support,
  #about-our-team,
  #about-our-commitment,
  #about-final-cta {
    padding: 3rem 1rem;
  }

  #about-who-we-are h2,
  #about-engineering-philosophy h2,
  #about-what-makes-us-different h2,
  #about-industries-we-support h2,
  #about-our-team h2,
  #about-our-commitment h2 {
    font-size: var(--text-scale-04);
  }

  #about-who-we-are p,
  .about-engineering-intro-line,
  .about-our-team p,
  #about-our-commitment p {
    font-size: var(--text-scale-01);
  }

  .about-engineering-point,
  .about-difference-point {
    padding: 1.75rem 1.25rem;
  }

  .about-engineering-point h3,
  .about-difference-point h3 {
    font-size: var(--text-scale-02);
  }

  .about-engineering-point p,
  .about-difference-point p {
    font-size: var(--text-scale-00);
  }

  .about-industries-list li {
    padding: 1rem 1.25rem;
    font-size: var(--text-scale-01);
  }

  #about-final-cta h2 {
    font-size: var(--text-scale-05);
  }

  .about-final-cta-p {
    font-size: var(--text-scale-01);
  }

  .about-final-cta-btn {
    padding: 1rem 2rem;
    font-size: var(--text-scale-01);
  }
}

/* === Extra Small Mobile (375px and below) === */
@media (max-width: 375px) {
  #about-hero {
    padding: 2.5rem 0.75rem;
  }

  #about-hero h1 {
    font-size: var(--text-scale-04);
  }

  #about-who-we-are,
  #about-engineering-philosophy,
  #about-what-makes-us-different,
  #about-industries-we-support,
  #about-our-team,
  #about-our-commitment,
  #about-final-cta {
    padding: 2.5rem 0.75rem;
  }

  #about-final-cta h2 {
    font-size: var(--text-scale-04);
  }
}

/* ========================
   ACCESSIBILITY
   ======================== */

/* Focus States */
.about-final-cta-btn:focus {
  outline: 3px solid var(--navy-900);
  outline-offset: 4px;
}

.about-engineering-point:focus-within,
.about-difference-point:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ========================
   END OF ABOUT PAGE STYLES
   ======================== */
   /* ========================
   HOW WE WORK PAGE STYLES
   ======================== */

/* ========================
   1. HERO SECTION
   ======================== */

#how-we-work-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 6rem 3rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  overflow: hidden;
  text-align: center;
}

/* تأثير الشبكة المتحركة */
#how-we-work-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 162, 77, 0.04) 2px, rgba(201, 162, 77, 0.04) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 162, 77, 0.04) 2px, rgba(201, 162, 77, 0.04) 4px);
  z-index: 1;
  animation: gridMove 20s linear infinite;
}

/* دوائر مضيئة */
#how-we-work-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.12) 0%, transparent 70%);
  z-index: 1;
  animation: pulseGlow 5s ease-in-out infinite;
}

#how-we-work-hero h1 {
  position: relative;
  z-index: 2;
  font-family: var(--inter);
  font-size: var(--text-scale-08);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-tight);
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out;
}

#how-we-work-hero p {
  position: relative;
  z-index: 2;
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--gray-200);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ========================
   2. OUR ENGINEERING APPROACH SECTION
   ======================== */

#how-we-work-engineering {
  background: var(--white);
  padding: 6rem 3rem;
}

#how-we-work-engineering h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
}

#how-we-work-engineering h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}

.how-we-work-engineering-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

#how-we-work-engineering p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  line-height: var(--line-height-relaxed);
  color: var(--text-main);
  text-align: justify;
  animation: fadeInLeft 0.8s ease-out;
}

.how-we-work-engineering-principles {
  list-style: none;
  animation: fadeInRight 0.8s ease-out;
}

.how-we-work-engineering-principles li {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-medium);
  color: var(--navy-900);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  background: var(--gray-100);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.how-we-work-engineering-principles li::before {
  content: '✓';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: var(--font-weight-bold);
  opacity: 0;
  transition: all 0.3s ease;
}

.how-we-work-engineering-principles li:hover {
  background: var(--white);
  transform: translateX(10px);
  box-shadow: 0 4px 16px rgba(11, 28, 45, 0.1);
}

.how-we-work-engineering-principles li:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

/* ========================
   3. OUR PROCESS SECTION
   ======================== */

#how-we-work-our-process {
  background: var(--gray-100);
  padding: 6rem 3rem;
}

#how-we-work-our-process h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
}

#how-we-work-our-process h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

#how-we-work-our-process > p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-regular);
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 4rem;
  line-height: var(--line-height-relaxed);
}

.how-we-work-our-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.how-we-work-our-process-steps article {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(11, 28, 45, 0.06);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.how-we-work-our-process-steps article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold) 0%, #B89342 100%);
  transition: height 0.4s ease;
}

.how-we-work-our-process-steps article:hover::before {
  height: 100%;
}

.how-we-work-our-process-steps article:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.12);
  border-color: var(--gold);
}

.how-we-work-our-process-steps article h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-06);
  font-weight: var(--font-weight-extrabold);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.3);
  transition: all 0.4s ease;
}

.how-we-work-our-process-steps article:hover h3 {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  color: var(--navy-900);
  transform: scale(1.1) rotate(360deg);
}

.how-we-work-our-process-steps article p {
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--text-muted);
  text-align: justify;
}

/* تأثيرات دخول متتالية */
.how-we-work-our-process-steps article:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.how-we-work-our-process-steps article:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.how-we-work-our-process-steps article:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.how-we-work-our-process-steps article:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.how-we-work-our-process-steps article:nth-child(5) {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* ========================
   4. WHAT MAKES OUR PROCESS DIFFERENT SECTION
   ======================== */

#how-we-work-our-different {
  background: var(--white);
  padding: 6rem 3rem;
}

#how-we-work-our-different h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
}

#how-we-work-our-different h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

#how-we-work-our-different > p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-regular);
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 4rem;
  line-height: var(--line-height-relaxed);
}

.differentiators {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.differentiators li {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.differentiators li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.differentiators li:hover::before {
  opacity: 1;
}

.differentiators li::after {
  content: '★';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  transition: all 0.4s ease;
  z-index: 2;
}

.differentiators li:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.differentiators li span {
  position: relative;
  z-index: 2;
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-medium);
  color: var(--navy-900);
  transition: color 0.3s ease;
}

.differentiators li:hover span {
  color: var(--white);
}

.differentiators li:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.15);
}

/* ========================
   5. INDUSTRIES & PROJECT TYPES SECTION
   ======================== */

#how-we-work-our-projects-types {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 6rem 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#how-we-work-our-projects-types::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 162, 77, 0.03) 2px, rgba(201, 162, 77, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 162, 77, 0.03) 2px, rgba(201, 162, 77, 0.03) 4px);
  z-index: 0;
}

#how-we-work-our-projects-types h2 {
  position: relative;
  z-index: 1;
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

#how-we-work-our-projects-types h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

#how-we-work-our-projects-types > p {
  position: relative;
  z-index: 1;
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-regular);
  color: var(--gray-200);
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 4rem;
  line-height: var(--line-height-relaxed);
}

#how-we-work-our-projects-types ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

#how-we-work-our-projects-types ul li {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 77, 0.2);
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-medium);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#how-we-work-our-projects-types ul li::before {
  content: '▸';
  color: var(--gold);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-bold);
  transition: transform 0.3s ease;
}

#how-we-work-our-projects-types ul li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

#how-we-work-our-projects-types ul li:hover {
  background: rgba(201, 162, 77, 0.15);
  border-color: var(--gold);
  transform: translateX(10px);
}

#how-we-work-our-projects-types ul li:hover::before {
  transform: translateX(5px);
}

#how-we-work-our-projects-types ul li:hover::after {
  transform: scaleY(1);
}

/* ========================
   6. FINAL CALL TO ACTION SECTION
   ======================== */

#how-we-work-our-final-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* تأثير الدوائر */
#how-we-work-our-final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaFloat1 6s ease-in-out infinite;
}

#how-we-work-our-final-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaFloat2 8s ease-in-out infinite;
}

#how-we-work-our-final-cta h2 {
  position: relative;
  z-index: 1;
  font-family: var(--inter);
  font-size: var(--text-scale-08);
  font-weight: var(--font-weight-extrabold);
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

#how-we-work-our-final-cta p {
  position: relative;
  z-index: 1;
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  color: var(--navy-800);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

#how-we-work-our-final-cta a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 3rem;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-semibold);
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.3);
  overflow: hidden;
}

#how-we-work-our-final-cta a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--navy-700);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

#how-we-work-our-final-cta a:hover::before {
  width: 400px;
  height: 400px;
}

#how-we-work-our-final-cta a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.5);
}

#how-we-work-our-final-cta a::after {
  content: '→';
  font-size: var(--text-scale-04);
  transition: transform 0.3s ease;
}

#how-we-work-our-final-cta a:hover::after {
  transform: translateX(8px);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* === Tablet (1024px and below) === */
@media (max-width: 1024px) {
  #how-we-work-hero {
    padding: 5rem 2rem;
  }

  #how-we-work-hero h1 {
    font-size: var(--text-scale-07);
  }

  #how-we-work-hero p {
    font-size: var(--text-scale-02);
  }

  #how-we-work-engineering,
  #how-we-work-our-process,
  #how-we-work-our-different,
  #how-we-work-our-projects-types,
  #how-we-work-our-final-cta {
    padding: 5rem 2rem;
  }

  #how-we-work-engineering h2,
  #how-we-work-our-process h2,
  #how-we-work-our-different h2,
  #how-we-work-our-projects-types h2 {
    font-size: var(--text-scale-06);
  }

  .how-we-work-engineering-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .how-we-work-our-process-steps {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
  }

  .differentiators {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
  }

  #how-we-work-our-projects-types ul {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  #how-we-work-our-final-cta h2 {
    font-size: var(--text-scale-07);
  }
}

/* === Mobile (768px and below) === */
@media (max-width: 768px) {
  #how-we-work-hero {
    padding: 4rem 1.5rem;
  }

  #how-we-work-hero h1 {
    font-size: var(--text-scale-06);
  }

  #how-we-work-hero p {
    font-size: var(--text-scale-01);
  }

  #how-we-work-engineering,
  #how-we-work-our-process,
  #how-we-work-our-different,
  #how-we-work-our-projects-types,
  #how-we-work-our-final-cta {
    padding: 4rem 1.5rem;
  }

  #how-we-work-engineering h2,
  #how-we-work-our-process h2,
  #how-we-work-our-different h2,
  #how-we-work-our-projects-types h2 {
    font-size: var(--text-scale-05);
  }

  #how-we-work-engineering p,
  #how-we-work-our-process > p,
  #how-we-work-our-different > p,
  #how-we-work-our-projects-types > p {
    font-size: var(--text-scale-01);
  }

  .how-we-work-engineering-principles li {
    font-size: var(--text-scale-01);
    padding: 1rem 1.25rem;
  }

  .how-we-work-our-process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .how-we-work-our-process-steps article {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .differentiators {
    grid-template-columns: 1fr;
  }

  #how-we-work-our-projects-types ul {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #how-we-work-our-final-cta h2 {
    font-size: var(--text-scale-06);
  }

  #how-we-work-our-final-cta p {
    font-size: var(--text-scale-02);
  }

  #how-we-work-our-final-cta a {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-scale-02);
  }
}

/* === Small Mobile (480px and below) === */
@media (max-width: 480px) {
  #how-we-work-hero {
    padding: 3rem 1rem;
  }

  #how-we-work-hero h1 {
    font-size: var(--text-scale-05);
  }

  #how-we-work-hero p {
    font-size: var(--text-scale-00);
  }

  #how-we-work-engineering,
  #how-we-work-our-process,
  #how-we-work-our-different,
  #how-we-work-our-projects-types,
  #how-we-work-our-final-cta {
    padding: 3rem 1rem;
  }

  #how-we-work-engineering h2,
  #how-we-work-our-process h2,
  #how-we-work-our-different h2,
  #how-we-work-our-projects-types h2 {
    font-size: var(--text-scale-04);
  }

  #how-we-work-engineering p,
  #how-we-work-our-process > p,
  #how-we-work-our-different > p,
  #how-we-work-our-projects-types > p {
    font-size: var(--text-scale-00);
  }

  .how-we-work-engineering-principles li {
    padding: 0.875rem 1rem;
    font-size: var(--text-scale-00);
  }

  .how-we-work-our-process-steps article {
    padding: 2rem 1.5rem;
  }

  .how-we-work-our-process-steps article h3 {
    width: 60px;
    height: 60px;
    font-size: var(--text-scale-05);
  }

  .how-we-work-our-process-steps article p {
    font-size: var(--text-scale-00);
  }

  .differentiators li {
    padding: 2rem 1.5rem;
  }

  #how-we-work-our-projects-types ul li {
    padding: 1rem 1.25rem;
    font-size: var(--text-scale-01);
  }

  #how-we-work-our-final-cta h2 {
    font-size: var(--text-scale-05);
  }

  #how-we-work-our-final-cta p {
    font-size: var(--text-scale-01);
  }

  #how-we-work-our-final-cta a {
    padding: 1rem 2rem;
    font-size: var(--text-scale-01);
  }
}

/* === Extra Small Mobile (375px and below) === */
@media (max-width: 375px) {
  #how-we-work-hero {
    padding: 2.5rem 0.75rem;
  }

  #how-we-work-hero h1 {
    font-size: var(--text-scale-04);
  }

  #how-we-work-engineering,
  #how-we-work-our-process,
  #how-we-work-our-different,
  #how-we-work-our-projects-types,
  #how-we-work-our-final-cta {
    padding: 2.5rem 0.75rem;
  }

  #how-we-work-our-final-cta h2 {
    font-size: var(--text-scale-04);
  }
}

/* ========================
   ACCESSIBILITY & PERFORMANCE
   ======================== */

/* تحسين الأداء للأنيميشن */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States للوصول */
#how-we-work-our-final-cta a:focus,
.how-we-work-engineering-principles li:focus-within,
.how-we-work-our-process-steps article:focus-within,
.differentiators li:focus-within,
#how-we-work-our-projects-types ul li:focus-within {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ========================
   UTILITY CLASSES
   ======================== */

/* مساعدة لإضافة مسافة بين الأقسام */
.how-we-work-section-spacing {
  margin-top: 4rem;
}

/* للعناصر المخفية على الموبايل */
@media (max-width: 768px) {
  .how-we-work-hide-on-mobile {
    display: none !important;
  }
}

/* للعناصر المخفية على الديسكتوب */
@media (min-width: 769px) {
  .how-we-work-hide-on-desktop {
    display: none !important;
  }
}

/* ========================
   END OF HOW WE WORK PAGE STYLES
   ======================== */


/* ========================
   CONTACT PAGE STYLES
   ======================== */

/* ========================
   1. CONTACT HERO SECTION
   ======================== */

#contact-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 6rem 3rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  overflow: hidden;
  text-align: center;
}

/* تأثير الشبكة المتحركة */
#contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 162, 77, 0.04) 2px, rgba(201, 162, 77, 0.04) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 162, 77, 0.04) 2px, rgba(201, 162, 77, 0.04) 4px);
  z-index: 1;
  animation: gridMove 20s linear infinite;
}

/* دوائر مضيئة */
#contact-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.12) 0%, transparent 70%);
  z-index: 1;
  animation: pulseGlow 5s ease-in-out infinite;
}

#contact-hero h1 {
  position: relative;
  z-index: 2;
  font-family: var(--inter);
  font-size: var(--text-scale-08);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-tight);
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out;
}

#contact-hero p {
  position: relative;
  z-index: 2;
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--gray-200);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ========================
   2. CONTACT INFORMATION SECTION
   ======================== */

#contact-info {
  background: var(--white);
  padding: 6rem 3rem;
}

#contact-info h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
}

#contact-info h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}

.contact-info-content {
  max-width: 900px;
  margin: 0 auto;
}

#contact-info .contact-info-content p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  line-height: var(--line-height-relaxed);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.contact-details li {
  background: var(--gray-100);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-details li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.contact-details li:hover::before {
  opacity: 1;
}

.contact-details li strong {
  display: block;
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-semibold);
  color: var(--navy-900);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-details li span {
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  font-weight: var(--font-weight-regular);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  display: block;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-details li:hover strong {
  color: var(--white);
}

.contact-details li:hover span {
  color: var(--gray-200);
}

.contact-details li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.1);
}

/* تأثيرات دخول متتالية */
.contact-details li:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.contact-details li:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.contact-details li:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.contact-details li:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* ========================
   3. CONTACT FORM SECTION
   ======================== */

#contact-form-section {
  background: var(--gray-100);
  padding: 6rem 3rem;
}

#contact-form-section h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
}

#contact-form-section h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

#contact-form-section>p {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-regular);
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 1.5rem auto 4rem;
  line-height: var(--line-height-relaxed);
}

#contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11, 28, 45, 0.08);
  border: 1px solid var(--gray-200);
  animation: fadeInUp 0.8s ease-out;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  font-weight: var(--font-weight-medium);
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.form-group label[required]::after {
  content: ' *';
  color: #dc2626;
  font-weight: var(--font-weight-bold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  color: var(--text-main);
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
  background: var(--gray-100);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--navy-700);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: var(--line-height-relaxed);
}

/* تخصيص الـ select */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230B1C2D' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 3rem;
  cursor: pointer;
}

/* تخطيط النموذج */
#contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

#contact-form .form-group:nth-child(5),
#contact-form .form-group:nth-child(6) {
  grid-column: span 2;
}

#contact-form button[type="submit"] {
  grid-column: span 2;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-semibold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 1rem;
}

#contact-form button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

#contact-form button[type="submit"]:hover::before {
  width: 400px;
  height: 400px;
}

#contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.3);
}

#contact-form button[type="submit"]:active {
  transform: translateY(0);
}

/* ========================
   4. WHY CONTACT US SECTION
   ======================== */

#contact-why-us {
  background: var(--white);
  padding: 6rem 3rem;
}

#contact-why-us h2 {
  font-family: var(--inter);
  font-size: var(--text-scale-07);
  font-weight: var(--font-weight-bold);
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
}

#contact-why-us h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}

.contact-why-us-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.contact-why-us-points li {
  background: var(--gray-100);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-why-us-points li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-why-us-points li:hover::before {
  left: 100%;
}

.contact-why-us-points li::after {
  content: '✓';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  transition: all 0.4s ease;
}

.contact-why-us-points li:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.contact-why-us-points li span {
  font-family: var(--inter);
  font-size: var(--text-scale-02);
  font-weight: var(--font-weight-medium);
  color: var(--navy-900);
  display: block;
  transition: color 0.3s ease;
}

.contact-why-us-points li:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.1);
}

/* تأثيرات دخول متتالية */
.contact-why-us-points li:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.contact-why-us-points li:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.contact-why-us-points li:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.contact-why-us-points li:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* ========================
   5. FINAL CALL TO ACTION SECTION
   ======================== */

#contact-final-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #B89342 100%);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* تأثير الدوائر */
#contact-final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaFloat1 6s ease-in-out infinite;
}

#contact-final-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaFloat2 8s ease-in-out infinite;
}

#contact-final-cta h2 {
  position: relative;
  z-index: 1;
  font-family: var(--inter);
  font-size: var(--text-scale-08);
  font-weight: var(--font-weight-extrabold);
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

#contact-final-cta p {
  position: relative;
  z-index: 1;
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-regular);
  color: var(--navy-800);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

#contact-final-cta a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 3rem;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--inter);
  font-size: var(--text-scale-03);
  font-weight: var(--font-weight-semibold);
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.3);
  overflow: hidden;
}

#contact-final-cta a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--navy-700);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

#contact-final-cta a:hover::before {
  width: 400px;
  height: 400px;
}

#contact-final-cta a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(11, 28, 45, 0.5);
}

#contact-final-cta a::after {
  content: '→';
  font-size: var(--text-scale-04);
  transition: transform 0.3s ease;
}

#contact-final-cta a:hover::after {
  transform: translateX(8px);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* === Tablet (1024px and below) === */
@media (max-width: 1024px) {
  #contact-hero {
    padding: 5rem 2rem;
  }

  #contact-hero h1 {
    font-size: var(--text-scale-07);
  }

  #contact-hero p {
    font-size: var(--text-scale-02);
  }

  #contact-info,
  #contact-form-section,
  #contact-why-us,
  #contact-final-cta {
    padding: 5rem 2rem;
  }

  #contact-info h2,
  #contact-form-section h2,
  #contact-why-us h2 {
    font-size: var(--text-scale-06);
  }

  .contact-details {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
  }

  #contact-form {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  #contact-form .form-group:nth-child(5),
  #contact-form .form-group:nth-child(6) {
    grid-column: span 1;
  }

  #contact-form button[type="submit"] {
    grid-column: span 1;
  }

  .contact-why-us-points {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
  }

  #contact-final-cta h2 {
    font-size: var(--text-scale-07);
  }
}

/* === Mobile (768px and below) === */
@media (max-width: 768px) {
  #contact-hero {
    padding: 4rem 1.5rem;
  }

  #contact-hero h1 {
    font-size: var(--text-scale-06);
  }

  #contact-hero p {
    font-size: var(--text-scale-01);
  }

  #contact-info,
  #contact-form-section,
  #contact-why-us,
  #contact-final-cta {
    padding: 4rem 1.5rem;
  }

  #contact-info h2,
  #contact-form-section h2,
  #contact-why-us h2 {
    font-size: var(--text-scale-05);
  }

  #contact-info .contact-info-content p,
  #contact-form-section>p {
    font-size: var(--text-scale-01);
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-details li {
    padding: 1.75rem 1.5rem;
  }

  #contact-form {
    padding: 2rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .contact-why-us-points {
    grid-template-columns: 1fr;
  }

  .contact-why-us-points li {
    padding: 2rem 1.5rem;
  }

  #contact-final-cta h2 {
    font-size: var(--text-scale-06);
  }

  #contact-final-cta p {
    font-size: var(--text-scale-02);
  }

  #contact-final-cta a {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-scale-02);
  }
}

/* === Small Mobile (480px and below) === */
@media (max-width: 480px) {
  #contact-hero {
    padding: 3rem 1rem;
  }

  #contact-hero h1 {
    font-size: var(--text-scale-05);
  }

  #contact-hero p {
    font-size: var(--text-scale-00);
  }

  #contact-info,
  #contact-form-section,
  #contact-why-us,
  #contact-final-cta {
    padding: 3rem 1rem;
  }

  #contact-info h2,
  #contact-form-section h2,
  #contact-why-us h2 {
    font-size: var(--text-scale-04);
  }

  #contact-info .contact-info-content p,
  #contact-form-section>p {
    font-size: var(--text-scale-00);
  }

  .contact-details li {
    padding: 1.5rem 1.25rem;
  }

  .contact-details li strong {
    font-size: var(--text-scale-01);
  }

  .contact-details li span {
    font-size: var(--text-scale-00);
  }

  #contact-form {
    padding: 1.5rem;
  }

  .form-group label {
    font-size: var(--text-scale-00);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: var(--text-scale-00);
    padding: 0.875rem 1rem;
  }

  .contact-why-us-points li {
    padding: 1.75rem 1.25rem;
  }

  .contact-why-us-points li span {
    font-size: var(--text-scale-01);
  }

  #contact-final-cta h2 {
    font-size: var(--text-scale-05);
  }

  #contact-final-cta p {
    font-size: var(--text-scale-01);
  }

  #contact-final-cta a {
    padding: 1rem 2rem;
    font-size: var(--text-scale-01);
  }
}

/* === Extra Small Mobile (375px and below) === */
@media (max-width: 375px) {
  #contact-hero {
    padding: 2.5rem 0.75rem;
  }

  #contact-hero h1 {
    font-size: var(--text-scale-04);
  }

  #contact-info,
  #contact-form-section,
  #contact-why-us,
  #contact-final-cta {
    padding: 2.5rem 0.75rem;
  }

  #contact-form {
    padding: 1.25rem;
  }

  #contact-final-cta h2 {
    font-size: var(--text-scale-04);
  }
}

/* ========================
   FORM VALIDATION STYLES
   ======================== */

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #dc2626;
  background: #fef2f2;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: #16a34a;
  background: #f0fdf4;
}

/* ========================
   ACCESSIBILITY & PERFORMANCE
   ======================== */

/* تحسين الأداء للأنيميشن */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States للوصول */
#contact-form button[type="submit"]:focus,
#contact-final-cta a:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.contact-details li:focus-within,
.contact-why-us-points li:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ========================
   LOADING STATE
   ======================== */

#contact-form button[type="submit"].loading {
  position: relative;
  color: transparent;
}

#contact-form button[type="submit"].loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: loadingSpin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes loadingSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ========================
   SUCCESS/ERROR MESSAGES
   ======================== */

.form-message {
  grid-column: span 2;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: var(--inter);
  font-size: var(--text-scale-01);
  font-weight: var(--font-weight-medium);
  text-align: center;
  margin-top: 1rem;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

/* ========================
   UTILITY CLASSES
   ======================== */

/* مساعدة لإضافة مسافة بين الأقسام */
.contact-section-spacing {
  margin-top: 4rem;
}

/* للعناصر المخفية على الموبايل */
@media (max-width: 768px) {
  .contact-hide-on-mobile {
    display: none !important;
  }
}

/* للعناصر المخفية على الديسكتوب */
@media (min-width: 769px) {
  .contact-hide-on-desktop {
    display: none !important;
  }
}

/* ========================
   END OF CONTACT PAGE STYLES
   ======================== */