/* ========================================
   Kenz Brokerage - Premium Redesign
   Dark Theme with Gold Accents
   ======================================== */

/* --- CSS Variables --- */
:root {
  --primary: #c9a227;
  --primary-light: #e8c84a;
  --primary-dark: #a88420;
  --secondary: #0f1923;
  --dark: #0a0e1a;
  --darker: #070a12;
  --card-bg: #111827;
  --card-bg-light: #1a2332;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #1e293b;
  --gradient-primary: linear-gradient(135deg, #c9a227 0%, #e8c84a 50%, #a88420 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #0f1923 50%, #111827 100%);
  --gradient-section: linear-gradient(180deg, #0f1923 0%, #1a2332 100%);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.25);
}

/* --- Global Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--darker);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

a { text-decoration: none; color: var(--primary); transition: all 0.3s ease; }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; }

::selection {
  background: var(--primary);
  color: var(--dark);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
  background: rgba(10, 14, 26, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand img { height: 45px; }

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1rem !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}

.dropdown-menu {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
}

.dropdown-item:hover {
  background: var(--card-bg-light);
  color: var(--primary);
}

.dropdown-divider { border-color: var(--border); }

.btn-account {
  background: var(--gradient-primary);
  color: var(--dark) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: all 0.3s ease;
}

.btn-account:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--dark) !important;
}

/* Top bar */
.top-bar {
  background: var(--darker);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 0;
  font-size: 0.8rem;
}

.top-bar a {
  color: var(--text-muted);
  margin-left: 1.5rem;
}

.top-bar a:hover { color: var(--primary); }

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.95) 0%, rgba(15,25,35,0.85) 50%, rgba(10,14,26,0.75) 100%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,162,39,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,162,39,0.06) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 30px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* --- Animated background lines --- */
.hero-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.hero-lines::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(201,162,39,0.03) 2px,
    rgba(201,162,39,0.03) 4px
  );
  animation: heroLineMove 20s linear infinite;
}

@keyframes heroLineMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Hero slider dots */
.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--primary);
  width: 60px;
}

/* Slide counter */
.slide-counter {
  position: absolute;
  bottom: 40px;
  left: 30px;
  z-index: 20;
  font-size: 1rem;
  color: var(--text-muted);
}

.slide-counter span {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

/* Navigation arrows */
.hero-nav {
  position: absolute;
  right: 30px;
  bottom: 40px;
  z-index: 20;
  display: flex;
  gap: 10px;
}

.hero-nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(201,162,39,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201,162,39,0.4);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(201,162,39,0.05);
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline-gold:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* ========================================
   SECTIONS - GENERAL
   ======================================== */

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.section-header {
  margin-bottom: 60px;
}

.section-label {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

/* Gold gradient text */
.text-gold {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   CARDS
   ======================================== */

.card-kenz {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card-kenz::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card-kenz:hover::before {
  transform: scaleX(1);
}

.card-kenz:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card-kenz .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15) 0%, rgba(201,162,39,0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,162,39,0.15);
}

.card-kenz .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.card-kenz .card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Feature card (horizontal) */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateX(5px);
}

.feature-card .feature-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.3rem;
}

.feature-card .feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.feature-card .feature-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  width: 100%; height: 100%;
  border: 2px solid var(--primary);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.3;
}

/* ========================================
   STATS / COUNTER
   ======================================== */

.stats-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #111827 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========================================
   SERVICES / PRODUCTS
   ======================================== */

.services-section {
  background: var(--dark);
  position: relative;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.service-card {
  background: linear-gradient(145deg, #111827 0%, #1a2332 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card .service-number {
  font-size: 4rem;
  font-weight: 800;
  position: absolute;
  top: 10px; right: 20px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,162,39,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.service-card .service-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.service-card .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.service-card .service-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ========================================
   MISSION / VISION CARDS
   ======================================== */

.mission-card, .vision-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-5px);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--gradient-primary);
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}

/* ========================================
   PRICING / ACCOUNT TYPES
   ======================================== */

.pricing-card {
  background: linear-gradient(180deg, #111827 0%, #0f1923 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 15px; right: -35px;
  background: var(--gradient-primary);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,162,39,0.3);
  box-shadow: var(--shadow);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card .pricing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(201,162,39,0.2) 0%, rgba(201,162,39,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary);
  border: 2px solid rgba(201,162,39,0.2);
}

.pricing-card .pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pricing-card .pricing-type {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pricing-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.pricing-feature:last-child { border-bottom: none; }
.pricing-feature .feature-label { color: var(--text-muted); }
.pricing-feature .feature-value { color: #fff; font-weight: 600; }

/* ========================================
   PARTNERSHIP SECTION
   ======================================== */

.partnership-section {
  background: var(--gradient-section);
  position: relative;
}

.partnership-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

/* ========================================
   EDUCATION SECTION
   ======================================== */

.education-section {
  background: linear-gradient(180deg, #0a0e1a 0%, #0f1923 100%);
}

.edu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.edu-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-5px);
}

.edu-card .edu-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--dark);
}

/* ========================================
   PROJECTS MARQUEE
   ======================================== */

.marquee-section {
  background: var(--darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 2rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  flex-shrink: 0;
}

.marquee-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */

.page-header {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a0e1a 0%, #0f1923 100%);
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(201,162,39,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201,162,39,0.05) 0%, transparent 50%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ========================================
   PRODUCT DETAIL CARDS
   ======================================== */

.product-detail-card {
  background: linear-gradient(145deg, #111827 0%, #1a2332 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.product-detail-card:hover {
  border-color: rgba(201,162,39,0.3);
}

.product-detail-card .product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-detail-card .product-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-features-list {
  list-style: none;
  padding: 0;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.product-features-list li i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* ========================================
   CONTACT / FOOTER
   ======================================== */

.footer-section {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,162,39,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-item .contact-info-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-item .contact-info-value {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Social icons */
.social-icon {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Risk Warning */
.risk-warning {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.risk-warning strong { color: #ef4444; }

/* Copyright bar */
.copyright-bar {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.copyright-bar a { color: var(--primary); }

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Pulse animation for gold elements */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(201,162,39,0); }
}

.pulse-gold {
  animation: pulse-gold 2s infinite;
}

/* Shimmer effect */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--primary) 0%, #fff 50%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: scale(1) translateY(-10px); }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-description { font-size: 1rem; }
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 1.75rem; }
  .page-title { font-size: 2rem; }
  .page-header { padding: 120px 0 60px; }

  .hero-nav { display: none; }
  .slide-counter { display: none; }
}

/* ========================================
   UTILITIES
   ======================================== */

.border-gold { border-color: rgba(201,162,39,0.3) !important; }
.bg-dark-gradient { background: var(--gradient-dark) !important; }
.bg-card { background: var(--card-bg) !important; }
.text-primary-gold { color: var(--primary) !important; }
.glow-gold { box-shadow: 0 0 20px rgba(201,162,39,0.15); }

/* Gradient border effect */
.gradient-border {
  position: relative;
  background: var(--card-bg);
  border-radius: 16px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,162,39,0.4) 0%, transparent 50%, rgba(201,162,39,0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
