:root {
  --color-primary: #6e3f20;
  --color-secondary: #d7b24a;
  --color-accent: #263611;
  --color-light: #efe6d5;
  --color-dark: #1a1a1a;
  --color-text: #333333;
  --color-background: #f9f9f9;
  --gradient-primary: linear-gradient(135deg, #6e3f20 0%, #8c5e3b 100%);
  --gradient-secondary: linear-gradient(135deg, #d7b24a 0%, #e5c87a 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --border-radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  color: var(--color-text);
  line-height: 1.7;
  background-color: var(--color-background);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  color: var(--color-primary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--color-dark);
  font-size: 1.2rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 4px;
  background: var(--color-secondary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(rgba(110, 63, 32, 0.8), rgba(110, 63, 32, 0.8)), url('https://images.unsplash.com/photo-1533750349088-cd871a92f312?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  color: var(--color-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 极 c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-极 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.极 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23efe6d5' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.page-hero-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2极 10px rgba(0, 0, 0, 0.2);
}

.page-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 20px;
}

.breadcrumb li {
  margin: 0 12px;
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '•';
  margin-right: 12px;
  color: rgba(239, 230, 213, 0.7);
}

.breadcrumb a {
  color: rgba(239, 230, 213, 0.9);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--color-light);
}

/* Marketing Intro */
.marketing-intro {
  background: white;
  position: relative;
  overflow: hidden;
}

.marketing-int极::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(110, 63, 32, 0.1);
  z-index: 0;
}

.marketing-intro::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(215, 178, 74, 0.1);
  z-index: 0;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.intro-text h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 800;
}

.intro-text p {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 25px;
}

.marketing-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-light);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.marketing-badge i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.intro-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  height: 450px;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transform: perspective(1000px) rotateY(5deg);
  transition: var(--transition);
}

.intro-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.intro-image-content {
  text-align: center;
  padding: 30px;
}

.intro-image-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.intro-image-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Services Section */
.services-section {
  background: var(--color-light);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-secondary);
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--极adow-hover);
}

.service-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.service-icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(110, 63, 32, 0.1);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  color: var(--color-light);
}

.service-title {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.service-description {
  color: #666;
  line-height: 1.8;
}

/* Markets Section */
.markets-section {
  background: white;
}

.markets-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.world-map {
  position: relative;
  height: 500px;
  background: url('https://images.unsplash.com/photo-1580261450046-d0a30080dc9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/contain no-repeat;
  margin: 40px 0;
}

.market-point {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--color-secondary);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(215, 178, 74, 0.3);
  animation: pulse 2s infinite;
  transition: var(--transition);
}

.market-point:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 0 15px rgba(215, 178, 74, 0.4);
}

.market-point.europe {
  top: 30%;
  left: 50%;
}

.market-point.usa {
  top: 40%;
  left: 25%;
}

.market-point.asia {
  top: 40%;
  left: 75%;
}

.market-point.africa {
  top: 60%;
  left: 50%;
}

.market-point.gcc {
  top: 45%;
  left: 55%;
}

.market-info {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 10;
}

.market-point:hover .market-info {
  opacity: 1;
  visibility: visible;
}

.market-info h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.market-info p {
  color: #666;
  font-size: 0.9rem;
}

.market-point.europe .market-info {
  top: -100px;
  right: 50px;
}

.market-point.usa .market-info {
  top: -100px;
  left: 50px;
}

.market-point.asia .market-info {
  top: -100px;
  left: 50px;
}

.market-point.africa .market-info {
  bottom: -100px;
  right: 50px;
}

.market-point.gcc .market-info {
  bottom: -100px;
  left: 50px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 178, 74, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(215, 178, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(215, 178, 74, 0);
  }
}

/* Strategy Section */
.strategy-section {
  background: linear-gradient(135deg, rgba(110, 63, 32, 0.05) 0%, rgba(215, 178, 74, 极.05) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.strategy-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 极 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3极%3Cg fill='%236e3f20' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.strategy-container {
  position: relative;
  z-index: 2;
}

.strategy-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.strategy-tab {
  padding: 15px 30px;
  background: white;
  border: none;
  border-radius: 50px;
  margin: 0 10px 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.strategy-tab.active {
  background: var(--color-primary);
  color: white;
}

.strategy-tab:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.strategy-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.strategy-item {
  display: none;
}

.strategy-item.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.strategy-item h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.strategy-item p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.strategy-features {
  list-style: none;
  margin-top: 30px;
}

.strategy-features li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.strategy-features li:last-child {
  border-bottom: none;
}

.strategy-features li i {
  color: var(--color-secondary);
  margin-right: 15px;
  font-size: 1.2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Success Section */
.success-section {
  background: white;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.success-card {
  background: var(--color-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.success-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.success-icon {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.success-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.success-text {
  color: #666;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: var(--color-primary);
  color: var(--color-light);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='极://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31极1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23efe6d5' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-description {
  margin-bottom: 40px;
  opacity: 0.9;
  font-size: 1.3rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: var(--color-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
  margin-left: 20px;
}

.btn-secondary:hover {
  background: var(--color-light);
  color: var(--color-primary);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .intro-content {
    grid-template-column极: 1fr;
  }

  .world-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .page-hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

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

  .section {
    padding: 80px 0;
  }

  .world-map {
    height: 300px;
  }

  .market-point .market-info {
    display: none;
  }
}

@media (max-width: 576px) {
  .page-hero-title {
    font-size: 2.2rem;
  }

  .page-hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .btn {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 15px;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .strategy-tabs {
    flex-direction: column;
  }

  .strategy-tab {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.animated {
  opacity: 1;
  transform: translateY(0);
}