/* ========================================
   About Page Specific Styles
   ======================================== */

/* About Hero Section */
.about-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.1);
}

.bg-slider .slide.active {
  opacity: 0.3;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(6, 6, 6, 0.8) 0%,
    rgba(55, 105, 131, 0.6) 50%,
    rgba(221, 189, 127, 0.4) 100%
  );
  z-index: 2;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="sparkle" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(221,189,127,0.8);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(221,189,127,0);stop-opacity:0" /></radialGradient></defs><circle cx="20" cy="20" r="1" fill="url(%23sparkle)" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="url(%23sparkle)" opacity="0.4"><animate attributeName="opacity" values="0.4;0.8;0.4" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="1" fill="url(%23sparkle)" opacity="0.7"><animate attributeName="opacity" values="0.7;1;0.7" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
  animation: sparkle 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.about-hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 4;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(
    circle at center,
    rgba(221, 189, 127, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(221, 189, 127, 0.2);
  border: 1px solid rgba(221, 189, 127, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  animation: float 3s ease-in-out infinite;
}

.hero-badge i {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--primary-gold) 50%,
    #fff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(221, 189, 127, 0.5);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-gold),
    transparent
  );
  border-radius: 2px;
  animation: titleUnderline 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes titleUnderline {
  0%,
  100% {
    width: 50px;
    opacity: 0.5;
  }
  50% {
    width: 150px;
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
  padding-bottom: 20px;
}

.hero-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: subtitleGlow 2s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
  0% {
    width: 60px;
    opacity: 0.4;
  }
  100% {
    width: 120px;
    opacity: 0.8;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.2);
  color: #fff;
}

/* Hero Graphics */
.hero-graphics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(221, 189, 127, 0.2);
  border: 2px solid rgba(221, 189, 127, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-gold);
  backdrop-filter: blur(10px);
  animation: floatRotate 6s ease-in-out infinite;
}

.floating-icon-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: 30%;
  right: 15%;
  animation-delay: 1.5s;
}

.floating-icon-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.floating-icon-4 {
  bottom: 20%;
  right: 25%;
  animation-delay: 4.5s;
}

@keyframes floatRotate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
    opacity: 0.8;
  }
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(221, 189, 127, 0.1),
    rgba(55, 105, 131, 0.1)
  );
  animation: morphShape 8s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes morphShape {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
    border-radius: 50%;
  }
  25% {
    transform: scale(1.2) rotate(90deg);
    opacity: 0.5;
    border-radius: 30%;
  }
  50% {
    transform: scale(0.8) rotate(180deg);
    opacity: 0.7;
    border-radius: 10%;
  }
  75% {
    transform: scale(1.1) rotate(270deg);
    opacity: 0.4;
    border-radius: 40%;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* About Story Section */
.about-story {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.about-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(221, 189, 127, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.floating-element {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(221, 189, 127, 0.4);
  animation: float 4s ease-in-out infinite;
}

.story-content {
  padding-left: 2rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(221, 189, 127, 0.1) 0%,
    rgba(55, 105, 131, 0.1) 100%
  );
  border-left: 4px solid var(--primary-gold);
  padding: 25px;
  border-radius: 0 15px 15px 0;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.highlight-box:hover::before {
  transform: translateX(100%);
}

.highlight-box i {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

/* Services Overview Section */
.services-overview {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.services-overview .row {
  justify-content: center;
}

.services-overview .col-lg-4 {
  max-width: 300px;
  margin-bottom: 2rem;
}

@media (min-width: 1200px) {
  .services-overview .row {
    justify-content: space-between;
  }

  .services-overview .col-lg-4 {
    flex: 0 0 23%;
    max-width: 23%;
  }
}

.services-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(221, 189, 127, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(55, 105, 131, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(221, 189, 127, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.services-overview::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(221,189,127,0.1)" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="4s" repeatCount="indefinite"/></circle></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
  z-index: 1;
}

.services-overview .container {
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(221, 189, 127, 0.2);
  padding: 50px 35px;
  border-radius: 24px;
  text-align: center;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(221, 189, 127, 0.15),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(221, 189, 127, 0.3),
    rgba(55, 105, 131, 0.3),
    rgba(221, 189, 127, 0.3)
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4),
    0 15px 40px rgba(221, 189, 127, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(221, 189, 127, 0.5);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.2rem;
  color: var(--primary-dark);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(221, 189, 127, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    135deg,
    rgba(221, 189, 127, 0.4),
    rgba(244, 208, 63, 0.4)
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 20px 50px rgba(221, 189, 127, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #fff 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-size: 1rem;
}

.service-features {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Special styling for visa service card with more tags */
.service-card:nth-child(3) .service-features {
  gap: 6px;
}

.service-card:nth-child(3) .feature-tag {
  padding: 6px 12px;
  font-size: 0.8rem;
}

.feature-tag {
  background: rgba(221, 189, 127, 0.15);
  color: var(--primary-gold);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(221, 189, 127, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.feature-tag:hover::before {
  left: 100%;
}

.service-card:hover .feature-tag {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
  color: var(--primary-dark);
  border-color: var(--primary-gold);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(221, 189, 127, 0.4);
}

/* Why Choose Us Section */
.why-choose {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(221, 189, 127, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(55, 105, 131, 0.08) 0%,
      transparent 50%
    );
  z-index: 1;
}

.why-card {
  text-align: center;
  padding: 50px 30px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(221, 189, 127, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(221, 189, 127, 0.1) 0%,
    rgba(55, 105, 131, 0.1) 100%
  );
  border-radius: 24px;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.why-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(221, 189, 127, 0.2),
    rgba(55, 105, 131, 0.2),
    rgba(221, 189, 127, 0.2)
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(221, 189, 127, 0.2);
  border-color: rgba(221, 189, 127, 0.3);
}

.why-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-gold) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.why-card:hover .why-icon {
  transform: rotate(360deg) scale(1.1);
}

.why-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.why-card p {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Values Section */
.values-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    #1a1a1a 50%,
    var(--primary-blue) 100%
  );
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(221, 189, 127, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.values-section .container {
  position: relative;
  z-index: 2;
}

.values-content {
  color: #fff;
}

.values-list {
  margin-top: 3rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease forwards;
}

.value-item:nth-child(2) {
  animation-delay: 0.2s;
}

.value-item:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(221, 189, 127, 0.2);
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: var(--primary-gold);
  color: var(--primary-dark);
  transform: scale(1.1);
}

.value-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-gold);
}

.value-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.values-image {
  position: relative;
}

.values-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-stats {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-item:first-child {
  margin-bottom: 20px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.cta-content {
  background: #fff;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(221, 189, 127, 0.2);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.cta-text {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
  color: var(--primary-dark);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(221, 189, 127, 0.4);
  color: var(--primary-dark);
}

.cta-button.secondary {
  background: transparent;
  color: #25d366;
  border-color: #25d366;
}

.cta-button.secondary:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .story-content {
    padding-left: 0;
    margin-top: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .shape-1 {
    width: 120px;
    height: 120px;
  }

  .shape-2 {
    width: 100px;
    height: 100px;
  }

  .shape-3 {
    width: 80px;
    height: 80px;
  }

  .about-story,
  .services-overview,
  .why-choose,
  .values-section,
  .cta-section {
    padding: 60px 0;
  }

  .service-card,
  .why-card {
    margin-bottom: 2rem;
  }

  .services-overview .col-lg-4 {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .service-card:nth-child(3) .feature-tag {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .cta-content {
    padding: 40px 25px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .floating-stats {
    position: static;
    margin-top: 2rem;
    display: flex;
    justify-content: space-around;
  }

  .stat-item:first-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .service-card,
  .why-card {
    padding: 30px 20px;
  }

  .value-item {
    display: flex !important;
    width: 100% !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 15px;
  }
  .value-icon {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
}

/* RTL Support */
[dir="rtl"] .story-content {
  padding-left: 0;
  padding-right: 2rem;
}

[dir="rtl"] .highlight-box {
  border-left: none;
  border-right: 4px solid var(--primary-gold);
  border-radius: 15px 0 0 15px;
}

[dir="rtl"] .value-item {
  flex-direction: row-reverse !important;
  text-align: right;
}

[dir="rtl"] .value-content {
  text-align: right;
}

[dir="rtl"] .value-content h4 {
  text-align: right;
}

[dir="rtl"] .value-content p {
  text-align: right;
}

[dir="rtl"] .floating-stats {
  left: auto;
  right: -30px;
}

[dir="rtl"] .floating-element {
  left: -20px;
  right: auto;
}

[dir="rtl"] .story-content::before {
  left: auto;
  right: 0;
}
[dir="rtl"] .values-list {
  display: flex;
  flex-direction: column-reverse !important;
}

[dir="rtl"] .value-item {
  display: flex;
  align-items: center !important;
  flex-direction: row !important;
  text-align: right !important;
  animation: slideInRight 0.8s ease forwards !important;
}
[dir="rtl"] .value-icon {
  display: flex;

  animation: slideInRight 0.8s ease forwards !important;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation Classes for AOS */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}
