@import url("https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");

/* متغیرهای طراحی سیستم */
:root {
  /* رنگ‌های اصلی */
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #4caf50;
  --secondary: #ff9800;
  --secondary-dark: #f57c00;
  --accent: #ff5722;

  /* رنگ‌های خنثی */
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --black: #000000;

  /* رنگ‌های زمینه */
  --bg-light: #f8f9fa;
  --bg-dark: #001f3f;

  /* تایپوگرافی */
  --font-main: "Vazirmatn", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-arabic: "Vazirmatn", sans-serif;

  /* سایه‌ها */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* انحناها */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* ترنزیشن‌ها */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* فاصله‌ها */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/* Reset و استایل‌های پایه */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--bg-light);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* کانتینرها */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.container1 {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* استایل هدر */
header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  gap: var(--space-lg);
}

/* لوگو */
.logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.logo-container:hover {
  transform: translateY(-2px);
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--white);
  padding: 3px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.logo:hover {
  transform: rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.logo-container h1 {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 800;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.logo-container h1 span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* استایل آیکون مدیریت */
.admin-access {
  flex-shrink: 0;
  margin-right: 15px;
}

.admin-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.admin-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.admin-btn i {
  font-size: 1.1rem;
}

.admin-text {
  white-space: nowrap;
}

/* ناوبری اصلی */
nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  margin: 0 var(--space-md);
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: nowrap;
  padding: 5px 0;
}

nav ul li {
  flex-shrink: 0;
  position: relative;
}

/* منوی کشویی */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  list-style: none;
  min-width: 200px;
  padding: var(--space-sm) 0;
  margin-top: var(--space-xs);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-normal);
  z-index: 1000;
  border: 1px solid var(--light-gray);
}

.dropdown-menu li a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: var(--light);
  color: var(--primary);
  padding-right: calc(var(--space-md) + 4px);
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  display: block;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  font-size: 0.9rem;
  position: relative;
  font-weight: 500;
  white-space: nowrap;
}

nav ul li a:hover,
nav ul li a:focus {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

nav ul li a.active {
  background: var(--secondary);
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

nav ul li a.active:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

/* تغییر زبان */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-toggle {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}

.lang-toggle:hover,
.lang-toggle:focus {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  width: 150px;
  padding: var(--space-sm) 0;
  margin-top: var(--space-xs);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 1000;
  border: 1px solid var(--light-gray);
}

.lang-switcher:hover .lang-dropdown,
.lang-toggle:focus + .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.lang-dropdown li a:hover,
.lang-dropdown li a:focus {
  background: var(--light);
  color: var(--primary);
  padding-right: calc(var(--space-md) + 4px);
  outline: none;
}

/* بخش Hero */
.hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  z-index: 3;
  color: var(--white);
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-button {
  padding: var(--space-md) var(--space-lg);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-normal);
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  border: 2px solid transparent;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-slow);
}

.cta-button:hover::before {
  right: 100%;
}

.cta-button:hover,
.cta-button:focus {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
  background: var(--white);
  color: var(--primary);
}

/* استایل‌های مخصوص صفحه مدیریت */
.management-intro {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.management-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: var(--space-lg);
  color: var(--primary);
  font-weight: 700;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  color: var(--gray);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.intro-stats .stat {
  text-align: center;
  padding: var(--space-md);
  background: var(--light);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  border: 1px solid var(--light-gray);
}

.intro-stats .stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.intro-stats .stat .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.intro-stats .stat .label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.about-image img:hover {
  transform: scale(1.02);
}

/* رویکرد مدیریتی */
.management-approach {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-xl);
  color: var(--primary);
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--light-gray);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
  font-weight: 600;
}

.step-content p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* خدمات مدیریت */
.management-services {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition-normal);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
  font-size: 1.8rem;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
  font-weight: 600;
}

.service-card p {
  color: var(--gray);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card ul {
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0;
}

.service-card ul li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--dark);
  font-size: 0.95rem;
}

.service-card ul li i {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* پروژه‌های مدیریت شده */
.management-projects {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.projects-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.project-tab {
  padding: var(--space-md) var(--space-lg);
  background: var(--light-gray);
  color: var(--dark);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  font-weight: 500;
  font-family: inherit;
}

.project-tab.active,
.project-tab:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.management-projects .project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}

.management-projects .project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.management-projects .project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.management-projects .project-info {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.management-projects .project-info h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
  font-weight: 600;
}

.project-meta {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gray);
  font-size: 0.9rem;
}

.project-meta i {
  color: var(--primary);
}

.management-projects .project-info p {
  color: var(--gray);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  flex-grow: 1;
}

.project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
}

.project-stats .stat {
  text-align: center;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}

.project-stats .stat:hover {
  transform: none;
}

.project-stats .stat span {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.project-stats .stat strong {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

/* تیم مدیریت */
.management-team {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.team-member {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-lg);
  border: 4px solid var(--primary);
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
  font-weight: 600;
}

.team-member .position {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.team-member .qualifications {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.team-member .experience {
  color: var(--dark);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* CTA مدیریت */
.management-cta {
  padding: var(--space-xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
}

.cta-content p {
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.6;
}

/* فوتر */
footer {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--black) 100%
  );
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-col h4 {
  margin-bottom: var(--space-lg);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
  text-decoration: none;
  display: block;
  padding: var(--space-xs) 0;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus {
  color: var(--secondary);
  padding-right: var(--space-sm);
  outline: none;
}

.contact-info {
  color: rgba(255, 255, 255, 0.9);
}

.contact-info p {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-info a:hover,
.contact-info a:focus {
  color: var(--secondary);
  outline: none;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover,
.social-links a:focus {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  outline: none;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--secondary);
  outline: none;
}

/* رسپانسیو */
@media (max-width: 992px) {
  .header-content {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  nav {
    order: 3;
    width: 100%;
    margin: var(--space-md) 0 0;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: 0;
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  }

  .dropdown-menu li a {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: flex;
  }

  .management-intro .container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image {
    order: -1;
  }

  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    right: 5%;
    left: 5%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 500px;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .intro-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .project-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .project-meta {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 576px) {
  .header-content {
    justify-content: space-between !important;
    padding: 10px 0 !important;
  }
  .logo-container {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }

  .logo-container h1 {
    font-size: 1.2rem;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .projects-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .project-tab {
    text-align: center;
  }

  .service-card,
  .team-member {
    padding: var(--space-lg);
  }

  .step {
    padding: var(--space-md);
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .step-number {
    align-self: center;
  }

  /* Mobile Menu Toggle */
  .menu-toggle {
    display: flex;
    order: 1;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 27px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-normal);
  }

  .menu-toggle:hover,
  .menu-toggle:focus {
    transform: scale(1.1);
    outline: none;
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
