/* Golden Visa Page - Enhanced Premium Styles */

/* Import color variables from main theme */
:root {
  --primary-dark: #1a1a2e;
  --primary-gold: #ffd700;
  --primary-blue: #4169e1;
  --text-light: #ffffff;
  --text-dark: var(--primary-dark);
  --gradient-gold: linear-gradient(135deg, #ffd700, #ffed4e);
  --gradient-blue: linear-gradient(135deg, #4169e1, #1e90ff);
  --section-padding: 80px 0;
}

/* Compact Hero Section - Contact Style */
.golden-visa-hero-compact {
  background: linear-gradient(
      135deg,
      rgba(26, 26, 46, 0.9) 0%,
      rgba(65, 105, 225, 0.8) 100%
    ),
    url("../img/vecteezy_toy-airplane-air-ticket-credit-cards-dollars-and-passport_7182634[1].jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.golden-visa-hero-compact::before {
  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 1000 1000"><defs><pattern id="golden-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23ffd700" opacity="0.15"/></pattern></defs><rect width="100%" height="100%" fill="url(%23golden-pattern)"/></svg>');
  animation: patternFloat 20s ease-in-out infinite;
}

.golden-visa-hero-compact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(65, 105, 225, 0.1) 0%,
      transparent 50%
    );
  animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes patternFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(2deg);
  }
}

@keyframes gradientShift {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 215, 0, 0.3);
  font-size: 2rem;
  animation: floatRandom 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.floating-icon:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes floatRandom {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(5deg);
  }
  50% {
    transform: translateY(10px) translateX(-15px) rotate(-3deg);
  }
  75% {
    transform: translateY(-15px) translateX(20px) rotate(8deg);
  }
}

/* Compact Hero Content */
.golden-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.golden-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}
.golden-hero-content .hero-badge i {
  color: var(--primary-dark) !important;
}

.golden-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-top: 10px;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  animation: heroTitleSlide 1.2s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.golden-hero-content h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-gold);
  animation: titleUnderline 1.5s ease-out 0.8s forwards;
}

@keyframes heroTitleSlide {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleUnderline {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}

.golden-hero-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  animation: heroTextFade 1s ease-out 0.5s both;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.7;
}

@keyframes heroTextFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quick Stats */
.hero-quick-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-quick-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-quick-stats .stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.hero-quick-stats .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold);
  font-family: "Playfair Display", serif;
  display: block;
  margin-bottom: 0.5rem;
}

.hero-quick-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-actions .btn::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.5s ease;
}

.hero-actions .btn:hover::before {
  left: 100%;
}

.hero-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.golden-visa-hero .hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

/* Hero Slider for Golden Visa */
.golden-visa-hero .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.golden-visa-hero .hero-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: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.golden-visa-hero .hero-slider .slide.active {
  opacity: 1;
}

.golden-visa-hero .hero-slider .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9) 0%,
    rgba(65, 105, 225, 0.8) 50%,
    rgba(26, 26, 46, 0.9) 100%
  );
  z-index: 1;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn.active,
.slider-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: scale(1.2);
}

/* Premium Hero Content */
.golden-visa-hero .hero-content {
  position: relative;
  z-index: 10;
  color: white;
}

.golden-visa-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  }
}

.golden-visa-hero .hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.golden-visa-hero .title-highlight {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    #f4d03f 50%,
    #fff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 4s ease-in-out infinite;
  display: block;
}

.golden-visa-hero .title-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 2.2rem;
}

@keyframes titleShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.golden-visa-hero .hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Enhanced CTA Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.cta-button.primary {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  color: var(--primary-dark);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

/* Premium Floating Cards */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 250px;
  animation: floatCard 8s ease-in-out infinite;
}

.premium-card-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.premium-card-2 {
  bottom: 40%;
  left: -20px;
  animation-delay: -2.5s;
}

.premium-card-3 {
  top: 50%;
  right: -30px;
  animation-delay: -5s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(1deg);
  }
  66% {
    transform: translateY(-25px) rotate(-1deg);
  }
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-card .card-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.floating-card .card-content p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.floating-card .card-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-card-1 .card-badge {
  background: linear-gradient(135deg, #3498db, #2980b9);
}
.premium-card-2 .card-badge {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}
.premium-card-3 .card-badge {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* Central Passport Visual */
.passport-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.passport-visual i {
  font-size: 4rem;
  color: var(--primary-gold);
  z-index: 10;
  position: relative;
  animation: passportGlow 3s ease-in-out infinite;
}

@keyframes passportGlow {
  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    transform: scale(1);
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    transform: scale(1.1);
  }
}

.passport-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
  }
}

.passport-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 140px;
  height: 140px;
  animation: ringRotate 10s linear infinite;
}

.ring-2 {
  width: 180px;
  height: 180px;
  animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
  width: 220px;
  height: 220px;
  animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  color: var(--primary-gold);
  transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Enhanced Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  font-family: "Playfair Display", serif;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Benefits Section */
.benefits-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  padding: var(--section-padding);
}

.benefits-section::before {
  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 1000 1000"><defs><radialGradient id="g"><stop offset="0%" stop-color="#ffd700" stop-opacity="0.05"/><stop offset="100%" stop-color="#ffd700" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23g)"/><circle cx="800" cy="800" r="250" fill="url(%23g)"/></svg>')
    no-repeat;
  background-size: cover;
  opacity: 0.5;
  z-index: 1;
}

.benefits-section .container {
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(10deg);
}

.benefit-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.benefit-card:hover .benefit-icon::before {
  left: 100%;
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
  z-index: 2;
  position: relative;
}

.benefit-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.benefit-card:hover h4 {
  color: var(--primary-blue);
}

.benefit-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* What is Section */
.what-is-section {
  padding: var(--section-padding);
  background: var(--text-light);
}

.content-text {
  padding-right: 2rem;
}

.content-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  font-size: 1.2rem;
}

.feature-item span {
  font-weight: 500;
  color: var(--primary-dark);
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(65, 105, 225, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.image-container:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Visa Types Section */
.visa-types-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.visa-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.visa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.visa-card:hover::before {
  transform: scaleX(1);
}

.visa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.visa-card .card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.visa-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.visa-card .card-icon i {
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.visa-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.visa-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.visa-features {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.visa-features .badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Documents Section - Compact Design */
.documents-section {
  padding: 60px 0;
  background: var(--primary-dark);
  position: relative;
}

.documents-section::before {
  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 1000 1000"><defs><radialGradient id="g"><stop offset="0%" stop-color="#4169e1" stop-opacity="0.03"/><stop offset="100%" stop-color="#4169e1" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23g)"/><circle cx="800" cy="800" r="250" fill="url(%23g)"/></svg>')
    no-repeat;
  background-size: cover;
  z-index: 1;
}

.documents-section .container {
  position: relative;
  z-index: 2;
}

.document-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.document-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.document-card:hover::before {
  transform: scaleX(1);
}

.document-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.doc-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(65, 105, 225, 0.1);
}

.doc-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.4s ease;
}

.document-card:hover .doc-icon {
  transform: scale(1.1) rotate(5deg);
}

.doc-icon i {
  font-size: 1.5rem;
  color: white;
}

.doc-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(65, 105, 225, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.doc-item:hover {
  background: rgba(65, 105, 225, 0.1);
  transform: translateX(5px);
}

.doc-item i {
  font-size: 1.1rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.doc-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.quick-action-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(65, 105, 225, 0.1);
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.quick-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quick-action-card i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.quick-action-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.quick-action-card .btn {
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quick-action-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

/* Consultation Section */
.consultation-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.consultation-section::before {
  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 1000 1000"><defs><radialGradient id="g"><stop offset="0%" stop-color="#ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="#ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23g)"/><circle cx="800" cy="800" r="250" fill="url(%23g)"/></svg>')
    no-repeat;
  background-size: cover;
  z-index: 1;
}

.consultation-section .container {
  position: relative;
  z-index: 2;
}

.consultation-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.consultation-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.consultation-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.consultation-buttons .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.consultation-buttons .btn-light {
  background: white;
  color: var(--primary-dark);
  border-color: white;
}

.consultation-buttons .btn-light:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.consultation-buttons .btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.consultation-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

.consultation-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.consultation-image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Responsive Design Enhancements */
@media (max-width: 1200px) {
  .golden-visa-hero .hero-title {
    font-size: 3.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .golden-visa-hero {
    padding: 100px 0 50px;
  }

  .golden-visa-hero .hero-title {
    font-size: 3rem;
  }

  .golden-visa-hero .title-subtitle {
    font-size: 1.8rem;
  }

  .hero-stats {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .floating-card {
    position: static;
    margin-bottom: 20px;
    transform: none !important;
    animation: none;
  }

  .hero-visual {
    height: auto;
    margin-top: 3rem;
  }

  .passport-visual {
    position: static;
    transform: none;
    margin: 2rem 0;
  }
}

@media (max-width: 768px) {
  .golden-visa-hero-compact {
    padding: 120px 0 60px;
    min-height: 60vh;
  }

  .golden-hero-content h1 {
    font-size: 2.5rem;
  }

  .golden-hero-content p {
    font-size: 1.1rem;
  }

  .hero-quick-stats {
    gap: 1rem;
  }

  .hero-quick-stats .stat-item {
    padding: 12px 20px;
  }

  .hero-quick-stats .stat-number {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .floating-icon {
    font-size: 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stat-item {
    display: inline-block;
    margin: 0 1rem;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .scroll-indicator {
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .golden-visa-hero-compact {
    padding: 100px 0 50px;
    min-height: 50vh;
  }

  .golden-hero-content h1 {
    font-size: 2rem;
  }

  .golden-hero-content p {
    font-size: 1rem;
  }

  .hero-quick-stats {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-quick-stats .stat-item {
    padding: 10px 15px;
    margin: 0 1rem;
  }

  .hero-quick-stats .stat-number {
    font-size: 1.5rem;
  }

  .floating-icon {
    font-size: 1.2rem;
  }

  .floating-card {
    min-width: auto;
    padding: 15px;
  }

  .passport-visual i {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-text h3 {
    font-size: 1.5rem;
  }

  .consultation-content h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .content-text {
    padding-right: 0;
    text-align: center;
  }

  .doc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .document-card {
    padding: 25px 20px;
  }

  .doc-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }

  .doc-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .quick-action-card {
    padding: 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .consultation-buttons {
    justify-content: center;
  }

  .consultation-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .visa-features {
    justify-content: center;
  }
}

/* Additional Mobile Enhancements */
@media (max-width: 480px) {
  .golden-visa-hero {
    padding: 80px 0 40px;
  }

  .golden-visa-hero .hero-badge {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    margin: 0.5rem;
    min-width: 80px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .benefit-card,
  .visa-card {
    padding: 25px 20px;
  }

  .benefit-icon,
  .visa-card .card-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i,
  .visa-card .card-icon i {
    font-size: 1.5rem;
  }

  .doc-category {
    padding: 20px;
  }

  .slider-nav {
    bottom: 20px;
    right: 20px;
  }
}

/* Enhanced Animations for Better Performance */
.golden-visa-hero,
.floating-card,
.passport-visual,
.benefit-card,
.visa-card {
  will-change: transform;
}

/* Enhanced UI Components */
.hero-badge i {
  animation: crownGlow 2s ease-in-out infinite alternate;
}

@keyframes crownGlow {
  0% {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  100% {
    color: #f4d03f;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

/* Enhanced Button Styles */
.hero-buttons .cta-button,
.consultation-buttons .btn {
  position: relative;
  overflow: hidden;
}

.hero-buttons .cta-button::before,
.consultation-buttons .btn::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.5s ease;
}

.hero-buttons .cta-button:hover::before,
.consultation-buttons .btn:hover::before {
  left: 100%;
}

/* Enhanced Card Interactions */
.benefit-card,
.visa-card {
  cursor: pointer;
  transform-origin: center;
}

.benefit-card:active,
.visa-card:active {
  transform: scale(0.98);
}

/* Improved Typography */
.golden-visa-hero .hero-title,
.section-title,
.content-text h3,
.consultation-content h2 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Focus States for Accessibility */
.cta-button:focus,
.consultation-buttons .btn:focus,
.slider-btn:focus {
  outline: 3px solid rgba(255, 215, 0, 0.5);
  outline-offset: 2px;
}

/* Improved Loading Animation */
.loading-overlay {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-blue) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Enhanced Loading States */
.golden-visa-hero .hero-content,
.floating-card,
.benefit-card,
.visa-card {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.golden-visa-hero .hero-content {
  animation-delay: 0.3s;
}

.floating-card:nth-child(1) {
  animation-delay: 0.5s;
}

.floating-card:nth-child(2) {
  animation-delay: 0.7s;
}

.floating-card:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RTL Support Enhancements */
[dir="rtl"] .floating-card {
  flex-direction: row-reverse;
}

[dir="rtl"] .premium-card-1 {
  right: auto;
  left: 0;
}

[dir="rtl"] .premium-card-3 {
  right: auto;
  left: -30px;
}

[dir="rtl"] .hero-stats {
  flex-direction: row-reverse;
}

/* Performance Optimizations */
.golden-visa-hero,
.floating-card,
.passport-visual,
.benefit-card {
  will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-card {
    animation: none !important;
  }
}

/* Loading States */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-blue) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 215, 0, 0.3);
  border-top: 4px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced Section Alternating Themes */
@keyframes patternMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(50px) translateY(-30px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes floatingBubbles {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
  }
}

/* Light Section Theme */
.section-light {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.95) 30%,
    rgba(241, 245, 249, 0.95) 70%,
    rgba(236, 242, 248, 0.95) 100%
  );
  position: relative;
  overflow: hidden;
}


/* Dark Section Theme */
.section-dark {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    #1e1e3a 25%,
    #2a2a4a 50%,
    #1e1e3a 75%,
    var(--primary-dark) 100%
  );
  position: relative;
  overflow: hidden;
}



.section-dark::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><pattern id="dark-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="%23ffd700" stroke-width="0.5" opacity="0.15"/><circle cx="15" cy="15" r="2" fill="%234169e1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dark-pattern)"/></svg>');
  animation: patternMove 45s linear infinite reverse;
  z-index: 1;
}

/* Enhanced Card Styles */
.enhanced-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.05);
}

.enhanced-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}

.enhanced-card:hover::before {
  transform: scaleX(1);
}

.enhanced-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Dark Card Variant */
.enhanced-card-dark {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
}

.enhanced-card-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}

.enhanced-card-dark:hover::before {
  transform: scaleX(1);
}

.enhanced-card-dark:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 5px 20px rgba(65, 105, 225, 0.2);
  border-color: rgba(65, 105, 225, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

/* Enhanced Icons */
.enhanced-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.enhanced-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.enhanced-card:hover .enhanced-icon::before,
.enhanced-card-dark:hover .enhanced-icon::before {
  left: 100%;
}

.enhanced-card:hover .enhanced-icon {
  transform: scale(1.15) rotate(10deg);
  background: var(--gradient-gold);
}

.enhanced-card-dark:hover .enhanced-icon {
  transform: scale(1.15) rotate(-10deg);
  background: var(--gradient-gold);
}

.enhanced-icon i {
  font-size: 2.2rem;
  color: white;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.enhanced-card:hover .enhanced-icon i,
.enhanced-card-dark:hover .enhanced-icon i {
  color: var(--primary-dark);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.enhanced-card h4,
.enhanced-card h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.enhanced-card-dark h4,
.enhanced-card-dark h5 {
  color: white;
}

.enhanced-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.enhanced-card-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.enhanced-card:hover h4,
.enhanced-card:hover h5 {
  color: var(--primary-blue);
}

.enhanced-card-dark:hover h4,
.enhanced-card-dark:hover h5 {
  color: var(--primary-gold);
}

/* Floating Elements for Dark Sections */
.floating-elements-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-bubble {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
  animation: floatingBubbles 8s ease-in-out infinite;
}

.floating-bubble:nth-child(1) {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.floating-bubble:nth-child(2) {
  top: 70%;
  right: 20%;
  animation-delay: 2s;
}

.floating-bubble:nth-child(3) {
  bottom: 20%;
  left: 70%;
  animation-delay: 4s;
}

/* Enhanced Section Transitions */
.section-transition {
  position: relative;
}

.section-transition::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-gold),
    var(--primary-blue),
    var(--primary-gold),
    transparent
  );
  opacity: 0.6;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .enhanced-card,
  .enhanced-card-dark {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .enhanced-icon {
    width: 70px;
    height: 70px;
  }

  .enhanced-icon i {
    font-size: 1.8rem;
  }

  .enhanced-card h4,
  .enhanced-card h5,
  .enhanced-card-dark h4,
  .enhanced-card-dark h5 {
    font-size: 1.2rem;
  }
}
