/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #2B5A9E;
  --primary-blue-dark: #1a3d6e;
  --primary-gold: #C5A572;
  --primary-gold-dark: #b8975e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Cairo', 'Tajawal', 'Noto Sans Arabic', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  font-feature-settings: 'rlig' 1, 'calt' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: white;
}

[dir="rtl"] {
  direction: rtl;
}

[dir="ltr"] {
  direction: ltr;
}

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 64px;
  width: auto;
}

nav {
  display: none;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  nav {
    display: flex;
  }
}

nav a {
  color: var(--gray-700);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary-blue);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.btn-primary {
  padding: 0.625rem 1.5rem;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  padding: 1rem 2rem;
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 0.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
}

.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle:hover {
  background: var(--gray-100);
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--gray-100);
  padding: 1rem;
}

.mobile-menu:not(.hidden) {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.3s;
}

.mobile-menu a:hover {
  background: var(--gray-50);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #eff6ff, white, rgba(197, 165, 114, 0.1));
  z-index: -10;
}

.hero-decorative-1 {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 18rem;
  height: 18rem;
  background: rgba(43, 90, 158, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -10;
}

.hero-decorative-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(197, 165, 114, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -10;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(to right, rgba(43, 90, 158, 0.1), rgba(197, 165, 114, 0.1));
  border: 1px solid rgba(43, 90, 158, 0.2);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #C5A572;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge span {
  font-size: 0.875rem;
  color: #2B5A9E;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title-line1 {
  display: block;
}

.hero-title-line2 {
  display: block;
  margin-top: 0.5rem;
  background: linear-gradient(to right, #2B5A9E, #1a3d6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-description-highlight {
  display: block;
  margin-top: 0.5rem;
  color: #2B5A9E;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #2B5A9E, #1a3d6e);
  color: white;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-btn-primary i {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.hero-btn-primary:hover i {
  transform: translateX(-0.25rem);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  border: 2px solid #2B5A9E;
  color: #2B5A9E;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary:hover {
  background: #2B5A9E;
  color: white;
  transform: scale(1.02);
}

.hero-btn-secondary i {
  width: 20px;
  height: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-stat-icon-green {
  background: #dcfce7;
}

.hero-stat-icon-green i {
  color: #16a34a;
  width: 24px;
  height: 24px;
}

.hero-stat-icon-blue {
  background: #dbeafe;
}

.hero-stat-icon-blue i {
  color: #2B5A9E;
  width: 24px;
  height: 24px;
}

.hero-stat-icon-gold {
  background: rgba(197, 165, 114, 0.2);
}

.hero-stat-icon-gold i {
  color: #C5A572;
  width: 24px;
  height: 24px;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .hero-stat-number {
    font-size: 1.875rem;
  }
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray-600);
}

@media (min-width: 640px) {
  .hero-stat-label {
    font-size: 0.875rem;
  }
}

/* Hero Image Section */
.hero-image-container {
  position: relative;
}

.hero-image-bg-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #2B5A9E, #1a3d6e);
  border-radius: 1.875rem;
  transform: rotate(3deg);
  opacity: 0.1;
  z-index: 0;
}

.hero-image-card {
  position: relative;
  background: white;
  border-radius: 1.875rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero-image {
    height: 500px;
  }
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.hero-floating-card-1 {
  top: 1.5rem;
  right: 1.5rem;
}

.hero-floating-card-2 {
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(to bottom right, #C5A572, #b8975e);
  color: white;
}

.hero-floating-card-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-floating-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-icon-green {
  background: linear-gradient(to bottom right, #16a34a, #15803d);
}

.hero-floating-icon-green i {
  color: white;
  width: 24px;
  height: 24px;
}

.hero-floating-number {
  font-size: 1.5rem;
  color: var(--gray-900);
  font-weight: 600;
}

.hero-floating-label {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.hero-floating-clock-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.hero-floating-text {
  font-size: 0.875rem;
  opacity: 0.9;
  color: white;
}

.hero-floating-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

/* Decorative Elements */
.hero-decorative-dots {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.2;
  z-index: 0;
  background-image: 
    radial-gradient(circle, #2B5A9E 0.25rem, transparent 0.25rem);
  background-size: 1.5rem 1.5rem;
  background-position: 0 0;
}

.hero-decorative-circle {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border: 4px solid rgba(197, 165, 114, 0.3);
  border-radius: 50%;
  z-index: 0;
}

.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  backdrop-filter: blur(4px);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--primary-blue);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: var(--primary-blue);
}

.service-description {
  color: var(--gray-600);
  line-height: 1.75;
}

/* Features Section */
.features-section {
  background: linear-gradient(to bottom, var(--gray-50), white);
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.features-content {
  text-align: right;
}

.features-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #2B5A9E;
}

.features-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  text-align: right;
}

@media (min-width: 640px) {
  .features-title {
    font-size: 2.25rem;
  }
}

.features-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  text-align: right;
  line-height: 1.75;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateX(-0.625rem);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, #2B5A9E, #1a3d6e);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.feature-item:hover .feature-icon-wrapper {
  transform: rotate(-10deg) scale(1.1);
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.feature-item:hover .feature-title {
  color: #2B5A9E;
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.75;
}

/* Features Visual */
.features-visual {
  position: relative;
}

.stats-grid-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card-visual {
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.stat-card-visual:hover {
  transform: scale(1.05) rotate(-2deg);
}

.stat-card-visual.stat-card-2:hover {
  transform: scale(1.05) rotate(2deg);
}

.stat-card-visual.stat-card-3:hover {
  transform: scale(1.05) rotate(-2deg);
}

.stat-card-visual.stat-card-4:hover {
  transform: scale(1.05) rotate(2deg);
}

.stat-card-1 {
  background: linear-gradient(to bottom right, #2B5A9E, #1a3d6e);
}

.stat-card-2 {
  background: linear-gradient(to bottom right, #C5A572, #b8975e);
  margin-top: 3rem;
}

.stat-card-3 {
  background: linear-gradient(to bottom right, #14b8a6, #0d9488);
  margin-top: -3rem;
}

.stat-card-4 {
  background: linear-gradient(to bottom right, #a855f7, #9333ea);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Decorative Elements */
.decorative-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(3rem);
  pointer-events: none;
  animation: pulse 3s ease-in-out infinite;
}

.decorative-1 {
  top: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background: #2B5A9E;
  animation-delay: 0s;
}

.decorative-2 {
  bottom: -1rem;
  left: -1rem;
  width: 10rem;
  height: 10rem;
  background: #C5A572;
  animation-delay: 1s;
  animation-duration: 4s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.15;
  }
}

@media (max-width: 1023px) {
  .stat-card-2 {
    margin-top: 0;
  }
  
  .stat-card-3 {
    margin-top: 0;
  }
}

/* FAQ */
.faq-item {
  background: white;
  border: 2px solid var(--gray-100);
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--gray-200);
}

.faq-item.faq-open {
  border-color: var(--primary-blue);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: right;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question {
  font-size: 1.125rem;
  color: var(--gray-900);
  transition: color 0.3s;
}

.faq-item.faq-open .faq-question {
  color: var(--primary-blue);
}

.faq-icon-wrapper {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  transition: all 0.3s;
}

.faq-item.faq-open .faq-icon-wrapper {
  background: rgba(43, 90, 158, 0.1);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: all 0.3s;
}

.faq-item.faq-open .faq-icon {
  color: var(--primary-blue);
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-content-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(to bottom, var(--gray-50), white);
  padding: 5rem 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #2B5A9E;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 2.25rem;
  }
}

.contact-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s;
}

.contact-card:hover .contact-icon-wrapper {
  transform: rotate(360deg);
}

.contact-icon-phone {
  background: linear-gradient(to bottom right, #2B5A9E, #1a3d6e);
}

.contact-icon-email {
  background: linear-gradient(to bottom right, #C5A572, #b8975e);
}

.contact-icon-location {
  background: linear-gradient(to bottom right, #14b8a6, #0d9488);
}

.contact-icon-social {
  background: linear-gradient(to bottom right, #a855f7, #9333ea);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
}

.contact-item:hover {
  background: var(--gray-100);
  transform: translateX(-0.3125rem);
}

.contact-item-label {
  color: var(--gray-600);
}

.contact-item-value {
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-phone {
  color: #2B5A9E;
}

.contact-email {
  color: #C5A572;
}

.contact-location-item {
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
}

.contact-location-item:hover {
  background: var(--gray-100);
  transform: translateX(-0.3125rem);
}

.contact-location-city {
  color: #2B5A9E;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-location-address {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.contact-right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Social Media */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.social-card:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.social-facebook {
  background: linear-gradient(to bottom right, #2563eb, #1e40af);
}

.social-twitter {
  background: linear-gradient(to bottom right, #0ea5e9, #0284c7);
}

.social-instagram {
  background: linear-gradient(to bottom right, #db2777, #9333ea);
}

.social-linkedin {
  background: linear-gradient(to bottom right, #1e40af, #1e3a8a);
}

.social-youtube {
  background: linear-gradient(to bottom right, #dc2626, #b91c1c);
}

.social-icon {
  width: 28px;
  height: 28px;
  color: white;
  transition: transform 0.3s;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-name {
  color: white;
  font-size: 0.875rem;
}

/* Working Hours */
.working-hours-card {
  background: linear-gradient(to bottom right, #2B5A9E, #1a3d6e);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.working-hours-card:hover {
  transform: scale(1.02);
}

.working-hours-bg {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  animation: workingHoursPulse 3s ease-in-out infinite;
}

@keyframes workingHoursPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.05;
    transform: scale(1.5);
  }
}

.working-hours-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.working-hours-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.working-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.working-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
  cursor: pointer;
}

.working-hours-item:hover {
  transform: translateX(-0.3125rem);
  background: rgba(255, 255, 255, 0.15);
}

/* Footer */
footer {
  background: linear-gradient(to bottom, var(--gray-900), #030712);
  color: white;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Company Info - Centered */
.footer-company-info {
  text-align: center;
  max-width: 42rem;
}

.footer-logo {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  margin-left: auto;
  margin-right: auto;
}

.footer-description {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  text-decoration: none;
}

.footer-social-link:hover {
  background: #2B5A9E;
}

.footer-social-link i {
  width: 20px;
  height: 20px;
  color: white;
}

/* Footer Image - Centered */
.footer-image-wrapper {
  display: flex;
  justify-content: center;
}

.footer-image {
  height: 8rem;
  width: auto;
}

/* Bottom Bar */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

/* Scroll to Top */
#scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

#scroll-to-top:hover {
  transform: scale(1.1);
}

[dir="rtl"] #scroll-to-top {
  left: auto;
  right: 2rem;
}

/* Verify Page */
.verify-section {
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, rgba(239, 246, 255, 0.5), white);
}

.verify-container {
  max-width: 42rem;
  margin: 0 auto;
}

.verify-header {
  text-align: center;
  margin-bottom: 3rem;
}

.verify-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(to bottom right, var(--primary-blue), var(--primary-blue-dark));
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.verify-icon-wrapper svg {
  width: 40px;
  height: 40px;
  color: white;
}

.verify-form-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border: 1px solid var(--gray-100);
}

@media (min-width: 640px) {
  .verify-form-card {
    padding: 3rem;
  }
}

.code-inputs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  direction: ltr;
}

.code-input {
  width: 3rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .code-input {
    width: 4rem;
    height: 5rem;
    font-size: 1.875rem;
  }
}

.code-input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.verify-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.verify-submit:hover:not(.disabled) {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.verify-submit.disabled {
  background: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
}

.security-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #eff6ff;
  border-radius: 0.75rem;
}

.security-note-content {
  display: flex;
  gap: 0.75rem;
}

.security-note svg {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Story & Stats Section */
.story-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.stats-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: linear-gradient(to bottom right, var(--primary-blue), var(--primary-blue-dark));
  border-radius: 1rem;
  padding: 1.5rem;
  color: white;
  text-align: center;
}

/* Vision & Mission Section */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .vision-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vision-card {
  background: linear-gradient(to bottom right, var(--primary-blue), var(--primary-blue-dark));
  border-radius: 1rem;
  padding: 2rem;
  color: white;
}

.mission-card {
  background: linear-gradient(to bottom right, var(--primary-gold), var(--primary-gold-dark));
  border-radius: 1rem;
  padding: 2rem;
  color: white;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background: white;
}

.steps-container {
  position: relative;
}

.steps-connection-line {
  display: none;
}

@media (min-width: 1024px) {
  .steps-connection-line {
    display: block;
    position: absolute;
    top: 6rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gray-200), transparent);
    z-index: 0;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.step-item {
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.step-item:hover {
  transform: translateY(-0.625rem);
}

.step-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.step-icon-circle {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(to bottom right, var(--primary-blue), var(--primary-blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.step-icon {
  color: white;
  width: 32px;
  height: 32px;
}

.step-number-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.step-pulse {
  position: absolute;
  inset: 0;
  background: var(--primary-blue);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.step-item:hover .step-title {
  color: var(--primary-blue);
}

.step-description {
  color: var(--gray-600);
}

.step-arrow {
  display: none;
}

@media (min-width: 1024px) {
  .step-arrow {
    display: block;
    position: absolute;
    top: 2.5rem;
    right: -2rem;
    color: var(--gray-300);
    animation: arrowMove 2s infinite;
  }
  
  .step-item:last-child .step-arrow {
    display: none;
  }
}

@keyframes arrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.steps-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.values-grid > div {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.values-grid > div:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Contract Details */
.details-section {
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, rgba(239, 246, 255, 0.5), white);
}

.details-container {
  max-width: 80rem;
  margin: 0 auto;
}

.details-header {
  margin-bottom: 2rem;
}

.back-button {
  color: var(--gray-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.back-button:hover {
  color: var(--primary-blue);
}

.details-title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.status-badge {
  padding: 0.5rem 1rem;
  background: #fef3c7;
  color: #92400e;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.details-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .details-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.detail-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border: 1px solid var(--gray-100);
}

.detail-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-card-title svg {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
}

.info-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.info-label {
  color: var(--gray-600);
}

.info-value {
  color: var(--gray-900);
  font-weight: 500;
}

.terms-list {
  list-style: none;
  padding: 0;
}

.terms-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.terms-list li::before {
  content: '•';
  color: var(--primary-blue);
  flex-shrink: 0;
}

.summary-card {
  background: linear-gradient(to bottom right, var(--primary-blue), var(--primary-blue-dark));
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  color: white;
  position: sticky;
  top: 6rem;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item svg {
  width: 20px;
  height: 20px;
}

.summary-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.summary-value {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.actions-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
}

.action-button {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  margin-bottom: 1rem;
  border: none;
}

.action-button:last-child {
  margin-bottom: 0;
}

.btn-approve {
  background: linear-gradient(to right, #16a34a, #15803d);
  color: white;
}

.btn-approve:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-reject {
  background: white;
  color: #dc2626;
  border: 2px solid #dc2626;
}

.btn-reject:hover {
  background: #fef2f2;
}

.btn-download {
  background: white;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-download:hover {
  background: var(--gray-50);
}

/* Modal/Dialog */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  max-width: 42rem;
  width: 100%;
  text-align: center;
}

.modal-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.modal-icon.success {
  background: #dcfce7;
  color: #16a34a;
}

.modal-icon.error {
  background: #fee2e2;
  color: #dc2626;
}

.modal-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.modal-message {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.confirm-dialog {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 32rem;
  width: 100%;
}

.confirm-message {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.confirm-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.confirm-btn.yes {
  background: #16a34a;
  color: white;
}

.confirm-btn.yes:hover {
  background: #15803d;
}

.confirm-btn.reject {
  background: #dc2626;
  color: white;
}

.confirm-btn.reject:hover {
  background: #b91c1c;
}

.confirm-btn.cancel {
  background: white;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.confirm-btn.cancel:hover {
  background: var(--gray-50);
}

/* Language Toggle */
.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.language-toggle:hover {
  background: var(--gray-200);
}

.language-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--gray-700);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  section {
    padding: 3rem 0;
  }
}

/* Print styles */
@media print {
  header,
  footer,
  #scroll-to-top {
    display: none;
  }
}
