/* ====================================
   EMIREX CAPITAL - MAIN STYLESHEET
   ==================================== */

/* ============ FONT IMPORTS ============ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* SF Pro Display style fonts - thin, tall, smooth */
@font-face {
  font-family: 'SF Pro Display';
  src: local('SF Pro Display'), local('SFProDisplay-Regular'),
       url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYREGULAR.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: local('SF Pro Display Light'), local('SFProDisplay-Light'),
       url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYLIGHT.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: local('SF Pro Display Medium'), local('SFProDisplay-Medium'),
       url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYMEDIUM.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: local('SF Pro Display Semibold'), local('SFProDisplay-Semibold'),
       url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYSEMIBOLD.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: local('SF Pro Display Bold'), local('SFProDisplay-Bold'),
       url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYBOLD.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* ============ CSS VARIABLES ============ */
:root, [data-theme="dark"] {
  /* Brand Colors - Emirex Capital Exact Theme */
  --primary-gold: #fdb63e;
  --secondary-green: #00bf63;
  --accent-orange: #ff914d;
  --accent-yellow: #ffde59;
  --dark-gold: #c89116;

  /* Button Gradients - Exact Specifications */
  --btn-green-gradient: linear-gradient(90deg, #0097b2, #7ed957);
  --btn-orange-gradient: linear-gradient(90deg, #ffde59, #ff914d);
  --btn-dark-gold-gradient: linear-gradient(90deg, #000000, #c89116);
  
  /* Legacy button names for compatibility */
  --btn-primary-gradient: linear-gradient(90deg, #0097b2, #7ed957);
  --btn-secondary-gradient: linear-gradient(90deg, #ffde59, #ff914d);
  --btn-tertiary-gradient: linear-gradient(90deg, #000000, #c89116);

  /* Background Colors - Dark Theme */
  --dark-bg: #000000;
  --dark-bg-secondary: #0a0a0a;
  --dark-bg-card: #111111;
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;

  /* Text Colors - Exact Specifications */
  --text-primary: #fdb63e;
  --text-secondary: #00bf63;
  --text-normal: #ffffff;
  --text-white: #ffffff;
  --text-muted: #888888;
  --text-body: #ffffff;

  /* Fonts - SF Pro Display for iPhone 17 Pro Max style */
  --font-heading: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
  
  /* Border */
  --border-color: rgba(253, 182, 62, 0.2);
}

/* Light Theme */
[data-theme="light"] {
  --dark-bg: #f5f5f5;
  --dark-bg-secondary: #ffffff;
  --dark-bg-card: #fafafa;
  --bg-primary: #f5f5f5;
  --bg-secondary: #ffffff;
  --bg-card: #fafafa;
  
  /* Text Colors - Darker on Light Theme */
  --text-primary: #b8860b;
  --text-secondary: #008a47;
  --text-normal: #1a1a1a;
  --text-white: #1a1a1a;
  --text-muted: #666666;
  --text-body: #333333;
  
  --border-color: rgba(184, 134, 11, 0.2);
}

/* ============ GLOBAL RESET ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  padding-top: 150px;
}

/* ============ ANIMATED BACKGROUND ============ */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #000000;
}

.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(ellipse at 20% 80%, rgba(253, 182, 62, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 145, 77, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(200, 145, 22, 0.08) 0%, transparent 70%);
}

/* Abstract floating shapes - Golden/Orange/Yellow */
.shape {
  position: absolute;
  opacity: 0.2;
  filter: blur(1px);
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(253, 182, 62, 0.4), rgba(200, 145, 22, 0.1));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 145, 77, 0.35), rgba(255, 222, 89, 0.15));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 60%;
  right: -5%;
  animation-delay: -5s;
  animation-duration: 22s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.25), rgba(253, 182, 62, 0.08));
  border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
  animation-duration: 28s;
}

.shape-4 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(200, 145, 22, 0.3), rgba(255, 145, 77, 0.1));
  border-radius: 40% 60% 60% 40% / 50% 30% 70% 50%;
  top: 30%;
  right: 20%;
  animation-delay: -15s;
  animation-duration: 30s;
}

.shape-5 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(253, 182, 62, 0.3), rgba(200, 145, 22, 0.12));
  border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
  bottom: 10%;
  right: 30%;
  animation-delay: -7s;
  animation-duration: 24s;
}

/* Grid pattern overlay */
.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(253, 182, 62, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253, 182, 62, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 30s linear infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -30px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) rotate(-5deg) scale(0.95);
  }
  75% {
    transform: translate(15px, 10px) rotate(3deg) scale(1.02);
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Light theme background adjustments */
[data-theme="light"] .animated-bg {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
}

[data-theme="light"] .animated-bg::before {
  background-image: 
    radial-gradient(ellipse at 20% 80%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 138, 71, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(253, 182, 62, 0.04) 0%, transparent 70%);
}

[data-theme="light"] .shape-1 {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(253, 182, 62, 0.03));
}

[data-theme="light"] .shape-2 {
  background: linear-gradient(135deg, rgba(0, 138, 71, 0.08), rgba(0, 191, 99, 0.03));
}

[data-theme="light"] .shape-3 {
  background: linear-gradient(135deg, rgba(253, 182, 62, 0.08), rgba(184, 134, 11, 0.02));
}

[data-theme="light"] .shape-4 {
  background: linear-gradient(135deg, rgba(255, 145, 77, 0.06), rgba(255, 222, 89, 0.02));
}

[data-theme="light"] .shape-5 {
  background: linear-gradient(135deg, rgba(0, 138, 71, 0.08), rgba(0, 191, 99, 0.03));
}

[data-theme="light"] .grid-pattern {
  background-image: 
    linear-gradient(rgba(184, 134, 11, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 11, 0.02) 1px, transparent 1px);
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* ============ CUSTOM CURSOR ============ */
.custom-cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s ease;
  opacity: 0;
}

.custom-cursor.active {
  opacity: 1;
}

.custom-cursor.hover {
  transform: scale(1.5);
  background: rgba(253, 182, 62, 0.1);
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  animation: fadeInScale 1s ease-in-out;
}

.preloader-logo img {
  height: 100px;
  width: auto;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============ TOPBAR ============ */
.topbar {
  background: linear-gradient(90deg, #ffde59, #ff914d);
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

.topbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-info {
  display: flex;
  gap: 30px;
  align-items: center;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-weight: 500;
}

.topbar-item i {
  color: #000000;
}

.topbar-social {
  display: flex;
  gap: 15px;
}

.topbar-social a {
  color: #000000;
  transition: var(--transition);
  font-size: 1rem;
}

.topbar-social a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* ============ THEME TOGGLE BUTTON ============ */
.theme-toggle-btn {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(253,182,62,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.theme-toggle-btn:hover {
  background: var(--btn-primary-gradient);
  transform: scale(1.05);
}

.theme-toggle-btn:hover i {
  color: white;
}

.theme-toggle-btn i {
  font-size: 1.1rem;
  color: var(--orange);
  position: absolute;
  transition: opacity 0.3s, transform 0.3s;
}

[data-theme="dark"] .theme-toggle-btn .dark-icon {
  opacity: 1;
  transform: rotate(0deg);
}

[data-theme="dark"] .theme-toggle-btn .light-icon {
  opacity: 0;
  transform: rotate(180deg);
}

[data-theme="light"] .theme-toggle-btn .dark-icon {
  opacity: 0;
  transform: rotate(-180deg);
}

[data-theme="light"] .theme-toggle-btn .light-icon {
  opacity: 1;
  transform: rotate(0deg);
}

/* Light theme adjustments */
[data-theme="light"] .topbar {
  background: linear-gradient(90deg, #ffde59, #ff914d);
  border-bottom: none;
}

[data-theme="light"] .topbar-item,
[data-theme="light"] .topbar-item i,
[data-theme="light"] .topbar-social a {
  color: #000000;
}

[data-theme="light"] .header {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-bottom: 1px solid rgba(253, 182, 62, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .header.scrolled {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

/* ============ HEADER / NAVBAR ============ */
.header {
  background: linear-gradient(135deg, #111111, #1a1a1a);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9998;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(253, 182, 62, 0.15);
}

.header.scrolled {
  padding: 8px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo i {
  color: var(--blue);
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Dropdown Navigation */
.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu .dropdown > a i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, #1a1a1a, #111111);
  border: 1px solid rgba(253, 182, 62, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 15px;
}

/* Light Theme Dropdown */
[data-theme="light"] .dropdown-menu {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border: 1px solid rgba(253, 182, 62, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(253, 182, 62, 0.15);
  color: var(--primary-gold);
  padding-left: 25px;
}

.dropdown-menu a i {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.cta-button {
  background: var(--btn-secondary-gradient);
  color: var(--dark-bg);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 5px 15px rgba(244, 160, 32, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 160, 32, 0.5);
}

/* ============ USER ACCOUNT MENU ============ */
.user-account-menu {
  position: relative;
}

.user-account-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
}

.user-account-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

.user-name {
  font-weight: 500;
  font-size: 0.9rem;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-account-btn .fa-chevron-down {
  font-size: 10px;
  transition: transform 0.3s;
}

.user-account-menu.active .fa-chevron-down {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
}

.user-account-menu.active .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  padding: 15px;
  text-align: center;
}

.user-dropdown-header strong {
  display: block;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.user-dropdown-header span {
  font-size: 0.8rem;
  color: var(--primary-color);
}

.user-dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.user-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.user-dropdown-item i {
  width: 18px;
  text-align: center;
  color: var(--primary-color);
}

.user-dropdown-item.logout {
  color: #ef4444;
}

.user-dropdown-item.logout:hover {
  background: rgba(239, 68, 68, 0.1);
}

.user-dropdown-item.logout i {
  color: #ef4444;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10000;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--primary-gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
  pointer-events: none;
}

.menu-backdrop.active {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ============ TYPOGRAPHY ============ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.8rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.2rem;
}

p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.gradient-text {
  background: var(--btn-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blue-text {
  color: var(--primary-gold);
}
.green-text {
  color: var(--green);
}
.orange-text {
  color: var(--orange);
}

/* ============ CONTAINER ============ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 15px;
  color: var(--orange);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    #051530,
    #0a1e3a
  );
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 160, 32, 0.1), transparent);
  border-radius: 50%;
  top: -250px;
  right: -250px;
  animation: float 20s infinite ease-in-out;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253, 182, 62, 0.1), transparent);
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(50px, 50px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 25px;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  border: 2px solid transparent;
}

/* Green Button - Primary Actions */
.btn-primary, .btn-green {
  background: linear-gradient(90deg, #0097b2, #7ed957);
  color: #000000;
  box-shadow: 0 5px 20px rgba(0, 151, 178, 0.3);
}

.btn-primary:hover, .btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(126, 217, 87, 0.5);
}

/* Orange Button - Secondary Actions */
.btn-secondary, .btn-orange {
  background: linear-gradient(90deg, #ffde59, #ff914d);
  color: #000000;
  box-shadow: 0 5px 20px rgba(255, 145, 77, 0.3);
}

.btn-secondary:hover, .btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 145, 77, 0.5);
}

/* Dark Gold Button - Serious Actions */
.btn-tertiary, .btn-dark-gold, .btn-danger {
  background: linear-gradient(90deg, #000000, #c89116);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(200, 145, 22, 0.3);
}

.btn-tertiary:hover, .btn-dark-gold:hover, .btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 145, 22, 0.5);
}

.btn-outline {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-outline:hover {
  background: var(--primary-gold);
  color: #000000;
}

/* ============ STATISTICS SECTION ============ */
.stats {
  background: var(--dark-bg-secondary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--dark-bg-card);
  border-radius: 15px;
  transition: var(--transition);
  border: 1px solid rgba(253, 182, 62, 0.15);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(253, 182, 62, 0.2);
  border-color: var(--primary-gold);
}

.stat-item i {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0097b2, #7ed957);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ============ CARDS ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--dark-bg-card);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition);
  border: 1px solid rgba(253, 182, 62, 0.15);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--btn-primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(253, 182, 62, 0.2);
  border-color: var(--primary-gold);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(253, 182, 62, 0.2),
    rgba(0, 180, 160, 0.2)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: var(--primary-gold);
}

.card h3 {
  margin-bottom: 15px;
  color: var(--orange);
}

.card p {
  margin-bottom: 20px;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: var(--dark-bg-secondary);
  padding: 40px 0;
  margin-bottom: 60px;
}

.breadcrumb-content {
  text-align: center;
}

.breadcrumb h1 {
  margin-bottom: 15px;
  color: var(--orange);
}

.breadcrumb-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--text-secondary);
}

.breadcrumb-links a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-links a:hover {
  color: var(--orange);
}

/* ============ FOOTER ============ */
.footer {
  background: #0a0a0a;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(253, 182, 62, 0.15);
}

[data-theme="light"] .footer {
  background: #e8e8e8;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}

[data-theme="light"] .footer,
[data-theme="light"] .footer p,
[data-theme="light"] .footer-bottom {
  color: #333333;
}

[data-theme="light"] .footer-links a {
  color: #555555;
}

[data-theme="light"] .footer-links a:hover {
  color: #b8860b;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about h3 {
  color: var(--orange);
}

.footer-links h4 {
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.footer-social h4 {
  color: var(--orange);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(253, 182, 62, 0.1);
  border: 1px solid rgba(253, 182, 62, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 182, 62, 0.15);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
}

.disclaimer {
  background: rgba(244, 160, 32, 0.05);
  border: 1px solid rgba(244, 160, 32, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============ TABLE ============ */
.table-responsive {
  overflow-x: auto;
  margin: 30px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-bg-card);
  border-radius: 10px;
  overflow: hidden;
}

thead {
  background: linear-gradient(
    135deg,
    rgba(244, 160, 32, 0.15),
    rgba(253, 182, 62, 0.15)
  );
}

th {
  padding: 20px;
  text-align: left;
  color: var(--orange);
  font-weight: 600;
  white-space: nowrap;
}

td {
  padding: 20px;
  border-bottom: 1px solid rgba(253, 182, 62, 0.15);
  color: var(--text-secondary);
  white-space: nowrap;
}

tr:hover {
  background: rgba(253, 182, 62, 0.05);
}

/* ============ FORM ============ */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: var(--dark-bg-card);
  border: 1px solid rgba(253, 182, 62, 0.2);
  border-radius: 10px;
  color: var(--text-white);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 20px rgba(253, 182, 62, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 15px;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    gap: 12px;
  }

  .nav-menu a {
    font-size: 0.85rem;
  }

  .logo-img {
    height: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  /* Show topbar on mobile with only social links */
  .topbar {
    padding: 8px 0;
  }

  .topbar-info {
    display: none;
  }

  .topbar-container {
    justify-content: center;
  }

  .topbar-social {
    display: flex;
    gap: 20px;
  }

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .header {
    padding: 10px 0;
    top: 40px;
  }

  .nav-container {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .logo-img {
    height: 80px;
  }

  nav {
    order: 1;
    flex: 0;
    display: none;
  }

  .cta-button {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.85rem;
    order: 2;
    margin-left: auto;
    margin-right: 10px;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-bg-secondary);
    flex-direction: column;
    padding: 80px 30px 40px;
    transition: right 0.4s ease;
    align-items: flex-start;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    gap: 0;
    overflow-y: scroll;
    scrollbar-width: none;
    z-index: 10000;
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 0;
  }

  .nav-menu > li > a {
    font-size: 1rem;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(253, 182, 62, 0.15);
  }

  .nav-menu a::after {
    display: none;
  }

  /* Mobile Dropdown Styles */
  .nav-menu .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: transparent;
  }

  .nav-menu .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 10px 0;
  }

  .nav-menu .dropdown.active > a i {
    transform: rotate(180deg);
  }

  .nav-menu .dropdown > a i {
    transition: transform 0.3s ease;
  }

  .nav-menu .dropdown > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .nav-menu .dropdown-menu a {
    padding: 12px 0 12px 20px;
    font-size: 0.9rem;
    border: none;
  }

  .nav-menu .dropdown-menu a:hover {
    padding-left: 25px;
    background: transparent;
  }

  .nav-menu.active {
    right: 0;
  }

  .logo-img {
    height: 60px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .topbar-container {
    justify-content: center;
  }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .logo-img {
    height: 45px;
  }

  .cta-button {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .topbar-item span {
    font-size: 0.75rem;
  }

  .topbar-social a {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .nav-container {
    padding: 12px 20px;
  }

  .topbar-container {
    justify-content: center;
  }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .logo-img {
    height: 45px;
  }

  .cta-button {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .topbar-item span {
    font-size: 0.75rem;
  }

  .topbar-social a {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .topbar-container {
    justify-content: center;
  }

  .topbar-info {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ UTILITY CLASSES ============ */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
.hidden {
  display: none;
}

/* ============ ENHANCED ANIMATIONS ============ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-up[data-delay="0"] {
  animation-delay: 0s;
}

.fade-up[data-delay="100"] {
  animation-delay: 0.1s;
}

.fade-up[data-delay="200"] {
  animation-delay: 0.2s;
}

.fade-up[data-delay="300"] {
  animation-delay: 0.3s;
}

.fade-up[data-delay="400"] {
  animation-delay: 0.4s;
}

.fade-up[data-delay="500"] {
  animation-delay: 0.5s;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ============ ENHANCED HERO SLIDER ============ */
.hero-enhanced {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: zoomIn 20s ease infinite;
}

@keyframes zoomIn {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(1, 24, 83, 0.5),
    rgba(18, 23, 42, 0.6)
  );
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(253, 182, 62, 0.15);
  border: 1px solid var(--primary-gold);
  border-radius: 30px;
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  animation: fadeIn 1.2s ease;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn {
  padding: 16px 35px;
  font-size: 1.1rem;
}

.hero-buttons .btn i {
  margin-right: 10px;
}

/* Hero Navigation */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-nav:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.1);
}

.hero-prev {
  left: 30px;
}

.hero-next {
  right: 30px;
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--green);
  width: 40px;
  border-radius: 6px;
}

/* ============ ENHANCED STATS SECTION ============ */
.stats {
  background: var(--dark-bg-secondary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.stat-item {
  text-align: center;
  padding: 30px;
  width: 100%;
}

.stat-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stat-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
  z-index: 0;
}

.stat-icon-wrapper i {
  font-size: 2.5rem;
  color: #ffffff !important;
  z-index: 10;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-heading);
  margin: 15px 0;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ============ CONTENT WITH IMAGE LAYOUT ============ */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.content-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
}

.content-image img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.content-image:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(244, 160, 32, 0.3),
    rgba(253, 182, 62, 0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.content-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  font-size: 5rem;
  color: white;
}

.content-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-text h3 i {
  margin-right: 15px;
}

.feature-list {
  list-style: none;
  margin-top: 30px;
}

.feature-list li {
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.feature-list li i {
  color: var(--primary-gold);
  margin-right: 15px;
  font-size: 1.1rem;
}

/* ============ YIELD HIGHLIGHT BOX ============ */
.yield-section-wrapper {
  max-width: 1000px;
  margin: 60px auto 0;
}

.yield-main-card {
  background: var(--dark-bg-card);
  border-radius: 30px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.yield-card-header {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.yield-icon-box {
  width: 80px;
  height: 80px;
  background: var(--btn-primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(253, 182, 62, 0.3);
}

.yield-icon-box i {
  font-size: 2.5rem;
  color: white;
}

.yield-card-header h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.yield-card-header p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

.yield-display-card {
  background: linear-gradient(
    135deg,
    rgba(253, 182, 62, 0.15),
    rgba(0, 180, 160, 0.1)
  );
  border: 2px solid var(--primary-gold);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.yield-display-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(253, 182, 62, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

.yield-percentage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.percentage-start,
.percentage-end {
  font-size: 5rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-heading);
  text-shadow: 0 0 30px rgba(244, 160, 32, 0.5);
}

.percentage-divider {
  font-size: 3rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.yield-subtitle {
  color: var(--text-secondary);
  font-size: 1.3rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.yield-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.yield-feature-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.yield-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--green);
  transform: translateY(-3px);
}

.feature-icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-circle i {
  color: white;
  font-size: 1.3rem;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-text strong {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.feature-text span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.yield-disclaimer-box {
  background: rgba(56, 177, 242, 0.1);
  border-left: 4px solid var(--blue);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.disclaimer-icon {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclaimer-icon i {
  color: white;
  font-size: 1.5rem;
}

.yield-disclaimer-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.yield-disclaimer-box strong {
  color: var(--text-primary);
}

.yield-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* ============ GROWTH HIGHLIGHT BOX ============ */
.growth-section-wrapper {
  max-width: 1000px;
  margin: 60px auto 0;
}

.growth-main-card {
  background: var(--dark-bg-card);
  border-radius: 30px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.growth-card-header {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.growth-icon-box {
  width: 80px;
  height: 80px;
  background: var(--btn-primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(253, 182, 62, 0.3);
}

.growth-icon-box i {
  font-size: 2.5rem;
  color: white;
}

.growth-card-header h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.growth-card-header p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

.growth-display-card {
  background: linear-gradient(
    135deg,
    rgba(253, 182, 62, 0.15),
    rgba(0, 180, 160, 0.1)
  );
  border: 2px solid var(--primary-gold);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.growth-display-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(253, 182, 62, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

.growth-percentage {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.percentage-number {
  font-size: 6.5rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-heading);
  line-height: 1;
  text-shadow: 0 0 40px rgba(244, 160, 32, 0.5);
}

.percentage-symbol {
  font-size: 4rem;
  color: var(--orange);
  font-weight: 700;
  margin-top: 10px;
}

.growth-subtitle {
  color: var(--text-secondary);
  font-size: 1.3rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.growth-journey-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
  position: relative;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 700;
  background: rgba(244, 160, 32, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--btn-primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(253, 182, 62, 0.3);
}

.step-icon i {
  font-size: 2rem;
  color: white;
}

.step-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-content strong {
  color: var(--text-primary);
  font-size: 1.2rem;
}

.step-content span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.timeline-connector {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--blue));
  position: relative;
  top: -60px;
}

.timeline-connector::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.growth-disclaimer-box {
  background: rgba(56, 177, 242, 0.1);
  border-left: 4px solid var(--blue);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.growth-disclaimer-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.growth-disclaimer-box strong {
  color: var(--text-primary);
}

.growth-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* ============ ENHANCED CARDS WITH IMAGES ============ */
.card-image {
  position: relative;
  width: calc(100% + 40px);
  margin: -20px -20px 20px -20px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  height: 250px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 25px;
  color: var(--green);
  font-weight: 600;
  z-index: 2;
}

.card-badge i {
  margin-right: 8px;
}

/* ============ DARK SECTION ============ */
.dark-section {
  background: var(--dark-bg-secondary);
}

/* ============ YIELD SHOWCASE ============ */
.yield-showcase {
  max-width: 1200px;
  margin: 60px auto 0;
}

.yield-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: var(--dark-bg-card);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.yield-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(
    135deg,
    rgba(244, 160, 32, 0.1),
    rgba(253, 182, 62, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.yield-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yield-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-circle {
  width: 150px;
  height: 150px;
  background: rgba(253, 182, 62, 0.3);
  border: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.yield-details {
  padding: 50px 50px 50px 0;
}

.yield-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.yield-header i {
  font-size: 3rem;
  color: var(--primary-gold);
}

.yield-header h3 {
  font-size: 2rem;
  margin: 0;
}

.yield-range {
  background: rgba(253, 182, 62, 0.1);
  border-left: 4px solid var(--primary-gold);
  padding: 40px;
  border-radius: 15px;
  margin: 30px 0;
}

.yield-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.yield-number .number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-heading);
}

.yield-number .separator {
  font-size: 3rem;
  color: var(--text-secondary);
}

.yield-period {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.yield-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.feature-item i {
  color: var(--blue);
  font-size: 1.5rem;
}

.yield-disclaimer {
  background: rgba(56, 177, 242, 0.1);
  border-left: 3px solid var(--blue);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  display: flex;
  gap: 15px;
}

.yield-disclaimer i {
  color: var(--blue);
  font-size: 1.3rem;
  margin-top: 3px;
}

.yield-disclaimer p {
  margin: 0;
  color: var(--text-secondary);
}

.yield-cta {
  margin-top: 30px;
}

/* ============ GROWTH SHOWCASE ============ */
.growth-showcase {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 60px auto 0;
}

.growth-visual {
  position: relative;
}

.growth-chart {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.growth-chart img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.growth-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--btn-primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(253, 182, 62, 0.5);
  animation: float 3s ease-in-out infinite;
}

.growth-badge i {
  font-size: 3.5rem;
  color: white;
}

.growth-content h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.growth-content h3 i {
  color: var(--primary-gold);
  margin-right: 15px;
}

.growth-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.growth-number {
  text-align: center;
  margin: 40px 0;
  padding: 40px;
  background: rgba(253, 182, 62, 0.1);
  border-radius: 20px;
}

.growth-number .number {
  font-size: 6rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-heading);
  line-height: 1;
}

.growth-number .percent {
  font-size: 4rem;
  color: var(--orange);
}

.growth-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.growth-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--dark-bg-card);
  border-radius: 15px;
  border-left: 4px solid var(--green);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--green);
}

.feature-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-box span {
  color: var(--text-secondary);
}

.growth-note {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  color: var(--text-muted);
}

/* ============ SETTLEMENT TIMELINE ============ */
.settlement-wrapper {
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.settlement-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  height: 300px;
}

.settlement-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settlement-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #011853,
    rgba(18, 23, 42, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.settlement-pulse-icon {
  width: 100px;
  height: 100px;
  background: var(--btn-primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(253, 182, 62, 0.6);
}

.settlement-pulse-icon i {
  font-size: 3rem;
  color: white;
}

.settlement-cards-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}

.settlement-card {
  background: var(--dark-bg-card);
  border-radius: 25px;
  padding: 45px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.settlement-card:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 20px 50px rgba(253, 182, 62, 0.2);
}

.cycle-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.cycle-a-badge {
  background: linear-gradient(
    135deg,
    rgba(253, 182, 62, 0.2),
    rgba(0, 180, 160, 0.1)
  );
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
}

.cycle-b-badge {
  background: linear-gradient(
    135deg,
    rgba(244, 160, 32, 0.2),
    rgba(212, 165, 32, 0.1)
  );
  border: 1px solid var(--orange);
  color: var(--orange);
}

.settlement-card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: var(--btn-primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(253, 182, 62, 0.3);
  position: relative;
  z-index: 2;
}

.cycle-b-card .settlement-card-icon {
  background: var(--btn-secondary-gradient);
}

.settlement-card-icon i {
  font-size: 2.8rem;
  color: white;
}

.settlement-card h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 35px;
  color: var(--text-primary);
}

.settlement-details-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
}

.settlement-detail-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 15px 0;
}

.settlement-detail-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
}

.settlement-detail-row .detail-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cycle-b-card .settlement-detail-row .detail-icon {
  background: linear-gradient(135deg, var(--blue), #5ac8fa);
}

.settlement-detail-row .detail-icon i {
  color: white;
  font-size: 1.2rem;
}

.detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-content strong {
  color: var(--green);
  font-size: 1rem;
  font-weight: 600;
}

.cycle-b-card .detail-content strong {
  color: var(--blue);
}

.detail-content span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.settlement-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.settlement-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  opacity: 0.03;
  pointer-events: none;
}

.cycle-a-pattern {
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
}

.cycle-b-pattern {
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
}

.settlement-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 2.5rem;
  animation: bounce-horizontal 2s ease-in-out infinite;
}

@keyframes bounce-horizontal {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

/* ============ LOCATIONS GRID ============ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.location-card {
  background: var(--dark-bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.location-badge {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 30px;
  color: var(--green);
  font-weight: 600;
  font-size: 1.1rem;
}

.location-badge i {
  margin-right: 10px;
}

.location-content {
  padding: 35px;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.location-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.location-icon.uk {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.location-icon.dubai {
  background: linear-gradient(135deg, var(--green), #f4c542);
}

.location-header h3 {
  font-size: 2rem;
  margin: 0;
}

.location-features {
  list-style: none;
  margin-top: 20px;
}

.location-features li {
  padding: 10px 0;
  color: var(--text-secondary);
}

.location-features li i {
  color: var(--green);
  margin-right: 12px;
}

/* ============ NETWORK SHOWCASE ============ */
.network-showcase {
  margin-top: 60px;
}

.network-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.network-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.network-stats {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}

.network-stat {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px 40px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--green);
}

.network-stat .stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-heading);
}

.network-stat .stat-label {
  color: var(--text-secondary);
  margin-top: 5px;
}

.network-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.network-card {
  background: var(--dark-bg-card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.network-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: white;
}

.network-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.incentive-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-heading);
  margin: 20px 0;
}

.feature-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(253, 182, 62, 0.1);
  border-radius: 25px;
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-tag i {
  margin-right: 8px;
}

/* ============ FEATURES GRID ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: var(--dark-bg-card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-heading);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

/* ============ CTA ENHANCED ============ */
.cta-enhanced {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(244, 160, 32, 0.1),
    rgba(253, 182, 62, 0.1)
  );
  border-radius: 30px;
  padding: 80px 60px;
  border: 1px solid rgba(244, 160, 32, 0.2);
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(244, 160, 32, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(253, 182, 62, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(0, 180, 160, 0.1) 0%,
      transparent 50%
    );
  animation: float 15s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--btn-primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  animation: pulse 2s ease-in-out infinite;
}

.cta-enhanced h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-enhanced p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-lg i {
  margin-right: 10px;
}

.cta-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.cta-feature i {
  color: var(--green);
  font-size: 1.2rem;
}

/* ============ RESPONSIVE ENHANCEMENTS ============ */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .yield-content {
    grid-template-columns: 1fr;
  }

  .yield-details {
    padding: 40px;
  }

  .growth-showcase {
    grid-template-columns: 1fr;
  }

  .timeline-cards {
    grid-template-columns: 1fr;
  }

  .timeline-divider {
    transform: rotate(90deg);
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-enhanced {
    height: auto;
    min-height: 600px;
  }

  .hero-content {
    padding: 100px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-prev {
    left: 15px;
  }

  .hero-next {
    right: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .network-cards {
    grid-template-columns: 1fr;
  }

  .network-stats {
    flex-direction: column;
    gap: 15px;
  }

  .cta-enhanced {
    padding: 50px 30px;
  }

  .cta-enhanced h2 {
    font-size: 2rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .yield-main-card,
  .growth-main-card {
    padding: 30px 20px;
  }

  .yield-card-header,
  .growth-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .percentage-start,
  .percentage-end {
    font-size: 3rem;
  }

  .percentage-number {
    font-size: 4.5rem;
  }

  .percentage-symbol {
    font-size: 3rem;
  }

  .yield-features-grid {
    grid-template-columns: 1fr;
  }

  .growth-journey-timeline {
    flex-direction: column;
    gap: 30px;
  }

  .timeline-connector {
    display: none;
  }
  .settlement-hero-image {
    height: 200px;
  }

  .settlement-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .settlement-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  .settlement-card {
    padding: 30px;
  }
}

/* ============ FLOATING SOCIAL SIDEBAR ============ */
.floating-social {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-link::before {
  content: attr(title);
  position: absolute;
  left: 65px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.social-link::after {
  content: '';
  position: absolute;
  left: 55px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.social-link:hover::before,
.social-link:hover::after {
  opacity: 1;
}

.social-link:hover {
  transform: translateX(5px) scale(1.1);
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2, #0d5dbb);
}

.social-link.facebook:hover {
  box-shadow: 0 6px 25px rgba(24, 119, 242, 0.5);
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link.twitter:hover {
  box-shadow: 0 6px 25px rgba(29, 161, 242, 0.5);
}

.social-link.instagram {
  background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737, #fcaf45);
}

.social-link.instagram:hover {
  box-shadow: 0 6px 25px rgba(225, 48, 108, 0.5);
}

.social-link.linkedin {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link.linkedin:hover {
  box-shadow: 0 6px 25px rgba(0, 119, 181, 0.5);
}

.social-link.telegram {
  background: linear-gradient(135deg, #0088cc, #006699);
}

.social-link.telegram:hover {
  box-shadow: 0 6px 25px rgba(0, 136, 204, 0.5);
}

/* ============ RESPONSIVE - FLOATING ELEMENTS ============ */
@media (max-width: 768px) {
  .floating-social {
    display: none;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .social-link::before {
    display: none;
  }
  
  .social-link::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .floating-social {
    display: none;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
    /* bottom: 15px;
    right: 10px;
    z-index: 999;
  } */
}

