/* css/trading.css */
/* ====================================
   TRADING PAGE SPECIFIC STYLES
   Fully Responsive - Chevron Caspian Theme
   ==================================== */

:root {
  --primary-color: #003E7E;
  --primary-dark: #002B57;
  --primary-light: #0A5BB5;
  --secondary-color: #E31E24;
  --secondary-dark: #B9151A;
  --secondary-light: #FF4A4F;
  --dark-color: #0F172A;
  --dark-alt: #1E293B;
  --gray-dark: #334155;
  --gray-medium: #64748B;
  --gray-light: #CBD5E1;
  --light-color: #F8FAFC;
  --white-color: #FFFFFF;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.15);
  --font-primary: 'Inter', sans-serif;
  --max-width: 1280px;
  --section-padding: clamp(60px, 10vw, 100px) 0;
  --container-padding: 0 24px;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* ---------- HERO SECTION ---------- */
.trading-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  max-height: 1080px;
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
}

.trading-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trading-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
  animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.trading-hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  color: var(--white-color);
  z-index: 3;
  text-align: center;
  padding-top: env(safe-area-inset-top);
}

@media (max-width: 768px) {
  .trading-hero-content { top: 55%; width: 95%; }
}
@media (max-width: 480px) {
  .trading-hero-content { top: 50%; width: 92%; }
}

.breadcrumb {
  margin-bottom: clamp(15px, 3vh, 25px);
  margin-top: clamp(10px, 4vh, 50px);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.breadcrumb a:hover { color: var(--secondary-color); }
.breadcrumb span {
  color: rgba(255,255,255,0.8);
  margin: 0 4px;
}
.breadcrumb .current {
  color: var(--secondary-color);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: clamp(15px, 3vh, 25px);
  color: var(--white-color);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  margin-bottom: clamp(25px, 5vh, 40px);
  opacity: 0.95;
  color: var(--white-color);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
  padding: 0 10px;
}

.hero-stats {
  display: flex;
  gap: clamp(15px, 3vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 25px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 120px;
  flex: 1 0 auto;
  max-width: 180px;
}
@media (max-width: 640px) {
  .hero-stat-item {
    min-width: 100px;
    padding: 10px 12px;
  }
  .hero-stats { gap: 10px; }
}
@media (max-width: 480px) {
  .hero-stat-item {
    min-width: calc(50% - 10px);
    max-width: none;
  }
}

.hero-stat-value {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}
.hero-stat-label {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

/* ---------- General Section Styles ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
  background-color: var(--white-color);
}
.section-light { background-color: var(--light-color); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}
@media (min-width: 768px) {
  .container { padding: 0 30px; }
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 60px);
}
.section-subtitle {
  display: inline-block;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}
.section-header p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--gray-medium);
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---------- Content Block ---------- */
.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: center;
}
@media (min-width: 992px) {
  .content-block { grid-template-columns: 1fr 1fr; }
}

.content-image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  height: 100%;
  min-height: 350px;
}
.content-image .img-placeholder {
  width: 100%;
  height: 100%;
}
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.content-image:hover img { transform: scale(1.05); }

.trading-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-color);
  padding: 12px 20px;
  border-radius: 40px;
  transition: all 0.3s ease;
}
.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}
.highlight-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}
.highlight-item span {
  font-weight: 500;
  color: var(--primary-color);
}

/* ---------- Trading Grid (Flip Cards) ---------- */
.trading-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 640px) {
  .trading-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .trading-grid { grid-template-columns: repeat(3, 1fr); }
}

.trading-card {
  background: transparent;
  height: 380px;
  perspective: 1500px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 20px;
}

.trading-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.card-front {
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.card-back {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  transform: rotateY(180deg);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  overflow-y: auto;
}

.trading-icon {
  width: 80px;
  height: 80px;
  background: var(--light-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 2.5rem;
  transition: all 0.4s ease;
}

.card-front h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.card-front p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 0;
  border-top: 1px dashed var(--gray-light);
  width: 100%;
  justify-content: center;
}
.hint-text {
  color: var(--gray-medium);
}
.card-hint i {
  transition: transform 0.3s ease;
}
.trading-card:hover .card-hint i {
  transform: translateX(8px);
}

.card-back h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 12px;
  width: 100%;
  text-align: left;
}

.trading-details {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  width: 100%;
  flex: 1;
}

.trading-details li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  line-height: 1.4;
}

.trading-details li:last-child {
  border-bottom: none;
}

.trading-details li i {
  color: var(--secondary-color);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.trading-details li span {
  flex: 1;
}

.trading-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--secondary-color);
  border-radius: 40px;
  transition: all 0.3s ease;
  margin-top: 10px;
  align-self: flex-start;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(227,30,36,0.3);
}

.trading-link:hover {
  background: var(--secondary-dark);
  transform: translateX(5px);
  box-shadow: 0 6px 16px rgba(227,30,36,0.4);
}

.trading-link i {
  transition: transform 0.3s ease;
}

.trading-link:hover i {
  transform: translateX(5px);
}

/* ---------- World Map ---------- */
.map-container {
  background: var(--white-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
}

.world-map {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e6f0fa 0%, #d4e3f0 100%);
  border-radius: 16px;
  margin: 30px 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 500" opacity="0.2"><path d="M200,100 Q400,50 600,100 Q800,150 900,250 Q800,350 600,400 Q400,450 200,400 Q100,300 200,100" fill="none" stroke="%23333" stroke-width="2"/><circle cx="300" cy="200" r="4"/><circle cx="500" cy="250" r="4"/><circle cx="700" cy="300" r="4"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border: 1px solid var(--gray-light);
}

.map-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.marker-dot {
  width: 16px;
  height: 16px;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(227,30,36,0.3);
  transition: all 0.3s ease;
}

.map-marker:hover .marker-dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 6px rgba(227,30,36,0.2);
}

.marker-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  font-weight: 500;
  box-shadow: var(--shadow-medium);
}

.marker-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
}

.map-marker:hover .marker-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: 150%;
}

.map-note {
  text-align: center;
  color: var(--gray-medium);
  font-style: italic;
  margin-top: 20px;
}

/* ---------- Trading Products Slider ---------- */
.tradingProductSwiper {
 width: 100%;
  padding: 20px 20px 80px; /* ⭐ Extra bottom space for controls */
  position: relative;
  overflow: visible !important;
}#globalMap {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  margin-top: 30px;
}

@media (max-width: 768px) {
  #globalMap {
    height: 400px;
  }
}

.product-slide-card {
  background: var(--white-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.product-slide-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
}

.product-slide-icon {
  width: 80px;
  height: 80px;
  background: var(--light-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary-color);
  font-size: 2.5rem;
  transition: all 0.4s ease;
}
.product-slide-card:hover .product-slide-icon {
  background: var(--secondary-color);
  color: white;
  transform: rotate(10deg) scale(1.1);
}
.product-slide-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.product-slide-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.product-specs span {
  background: var(--light-color);
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}
/* ---------- Swiper Navigation - Responsive Safe Positioning ---------- */

.swiper-button-next,
.swiper-button-prev {
  position: absolute !important;
  bottom: -20px !important; /* Keeps controls visible */
  top: auto !important;

  width: 48px !important;
  height: 48px !important;

  background: var(--secondary-color);
  color: white !important;

  border-radius: 50%;
  box-shadow: var(--shadow-medium);

  z-index: 50;
}

/* Horizontal placement */
.swiper-button-next {
  right: 40% !important;
}

.swiper-button-prev {
  left: 40% !important;
}
/* Hover Effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-color);
  transform: translateY(45%) scale(1.08);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px !important;
  font-weight: 700;
}

/* Pagination positioning */
.swiper-pagination {
  bottom: -10px !important;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 1024px) {

  .swiper-button-next {
    right: 25% !important;
  }

  .swiper-button-prev {
    left: 25% !important;
  }
}

@media (max-width: 640px) {

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    bottom: -5px !important;
  }

  .swiper-button-next {
    right: 20% !important;
  }

  .swiper-button-prev {
    left: 20% !important;
  }
}
/* ---------- Specialized Products Grid ---------- */
.specialized-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .specialized-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.specialized-card {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: all 0.4s ease;
}
.specialized-card:hover {
  transform: translateY(-10px);
}

.specialized-image {
  height: 200px;
  overflow: hidden;
}
.specialized-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.specialized-card:hover .specialized-image img {
  transform: scale(1.1);
}

.specialized-content {
  padding: 25px;
  position: relative;
}
.specialized-tag {
  position: absolute;
  top: -15px;
  left: 25px;
  background: var(--secondary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: var(--shadow-medium);
}
.specialized-content h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 15px 0 10px;
  line-height: 1.4;
}
.specialized-content p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}
.specialized-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.specialized-link:hover {
  gap: 12px;
  color: var(--primary-color);
}

/* ---------- Documentation Section ---------- */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 768px) {
  .docs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.doc-card {
  background: var(--white-color);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.doc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--secondary-color);
}
.doc-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--light-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.8rem;
}
.doc-content h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.doc-content p {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 10px;
}
.doc-meta {
  font-size: 0.75rem;
  color: black;
  margin-bottom: 10px;
}
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.3s ease;
}
.doc-link:hover {
  gap: 8px;
  color: var(--primary-color);
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-lead {
  font-size: 1.1rem;
  color: var(--gray-medium);
  margin-bottom: 40px;
  line-height: 1.6;
}
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-option {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 20px;
  background: var(--light-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.contact-option:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}
.option-icon {
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-option h4 {
  font-size: 1rem;
  color: var(--gray-medium);
  margin-bottom: 5px;
}
.contact-option a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.contact-option a:hover {
  color: var(--secondary-color);
}

.contact-form-container {
  background: var(--white-color);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow-heavy);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--gray-dark);
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gray-medium);
}
.checkbox-label input {
  width: auto;
  margin-top: 3px;
}
.btn-submit {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 16px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-submit:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 30px 20px;
  }
}

/* ---------- Other Solutions ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  background: var(--white-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--secondary-color);
}
.solution-card i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.solution-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.solution-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}
.solution-link {
   color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.solution-link i{
  font-size: 1rem;
  align-items: center;
  justify-content: center;
}
.solution-card:hover .solution-link {
  gap: 10px;
  color: var(--primary-color);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: clamp(60px, 12vw, 120px) 0;
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: clamp(15px, 3vh, 20px);
}
.cta-section p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: clamp(25px, 5vh, 40px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .cta-buttons .btn,
  .cta-buttons .cc-btn {
    width: 100%;
    max-width: 280px;
  }
}

.btn {
  padding: clamp(12px, 2vw, 15px) clamp(24px, 4vw, 30px);
  font-size: clamp(0.9rem, 2vw, 1rem);
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn-secondary {
  background: var(--secondary-color);
  color: var(--white-color);
}
.btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}
.cc-btn-outline {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  padding: clamp(12px, 2vw, 15px) clamp(24px, 4vw, 30px);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cc-btn-outline:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ---------- Animations ---------- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="slide-left"] { transform: translateX(-30px); }
[data-animate="slide-right"] { transform: translateX(30px); }
[data-animate="scale-in"] { transform: scale(0.9); }
@media (min-width: 768px) {
  [data-animate="slide-left"] { transform: translateX(-50px); }
  [data-animate="slide-right"] { transform: translateX(50px); }
}

/* ---------- Page Loader ---------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
  color: var(--white-color);
}
.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto 20px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loader-text {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ---------- Header ---------- */
.site-header.scrolled {
  background: rgba(0, 30, 60, 0.95);
  backdrop-filter: blur(10px);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  font-size: 1.2rem;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section-header h2:after { width: 40px; }
  .trading-highlights { flex-direction: column; }
  .trading-highlights .highlight-item { width: 100%; }
  .contact-options { gap: 15px; }
  .world-map { height: 300px; }
  .map-marker .marker-tooltip {
    white-space: normal;
    width: 120px;
    text-align: center;
  }
}