/* =========================================
   SMC El Tiburón Jose - Main Stylesheet
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-deep: #030610;
  --bg-dark: #060d1a;
  --bg-panel: rgba(10, 18, 38, 0.6);
  --border: rgba(255,255,255,0.06);
  --border-glow: rgba(0, 210, 255, 0.15);
  --cyan: #00d2ff;
  --cyan-dim: rgba(0, 210, 255, 0.15);
  --blue: #3b82f6;
  --purple: #a855f7;
  --green: #10b981;
  --red: #ef4444;
  --orange: #f59e0b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --glass: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  --shadow-cyan: 0 0 30px rgba(0,210,255,0.12);
  --shadow-card: 0 20px 40px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ====== HEADER ====== */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(3, 6, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 40px;
  background: rgba(3, 6, 16, 0.97);
  border-bottom-color: var(--border-glow);
}

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.shark-logo-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 20px rgba(0,210,255,0.4);
  flex-shrink: 0;
}

.shark-logo-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-smc {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.logo-jose {
  color: var(--cyan);
}

/* Nav */
nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.nav-link.active {
  color: var(--cyan);
  background: rgba(0,210,255,0.08);
}

/* Header Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,210,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,210,255,0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-block { width: 100%; justify-content: center; }

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* ====== HERO SECTION ====== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  filter: blur(2px);
  transform: scale(1.05);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,210,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(168,85,247,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(59,130,246,0.1) 0%, transparent 50%),
    linear-gradient(180deg, transparent 50%, var(--bg-deep) 100%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,210,255,0.08);
  border: 1px solid rgba(0,210,255,0.2);
  color: var(--cyan);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle strong { color: var(--cyan); }

.hero-price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,210,255,0.05);
  border: 1px solid rgba(0,210,255,0.2);
  border-radius: 16px;
  padding: 20px 40px;
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.price-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.price-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.stat-val {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.stat-val.cyan { color: var(--cyan); text-shadow: 0 0 20px rgba(0,210,255,0.4); }
.stat-val.green { color: var(--green); text-shadow: 0 0 20px rgba(16,185,129,0.4); }

.stat-lab {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ====== PROMO STRIP ====== */
.promo-strip {
  background: linear-gradient(135deg, rgba(0,210,255,0.08), rgba(168,85,247,0.08));
  border-top: 1px solid rgba(0,210,255,0.1);
  border-bottom: 1px solid rgba(168,85,247,0.1);
  padding: 16px 0;
  overflow: hidden;
}

.promo-marquee {
  display: flex;
  gap: 50px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.promo-marquee span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan);
}

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

/* ====== SECTIONS ====== */
.section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.dark-section {
  max-width: 100%;
  background: rgba(6, 10, 24, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dark-section > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-tag {
  display: inline-block;
  background: rgba(0,210,255,0.08);
  border: 1px solid rgba(0,210,255,0.2);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ====== CURRICULUM GRID ====== */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.curriculum-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.curriculum-card:hover {
  border-color: rgba(0,210,255,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-cyan);
}

.featured-card {
  border-color: rgba(168,85,247,0.3);
  background: linear-gradient(135deg, rgba(168,85,247,0.05), rgba(0,210,255,0.03));
}

.featured-card:hover {
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 30px rgba(168,85,247,0.15);
}

.curriculum-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.curriculum-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.curriculum-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.curriculum-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.curriculum-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #d1d5db;
}

.curriculum-list li i {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ====== GALLERY ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  padding: 0 40px 40px;
}

.gallery-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,210,255,0.2);
  box-shadow: var(--shadow-card);
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,6,16,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-result {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.gallery-result.win { color: var(--green); text-shadow: 0 0 20px rgba(16,185,129,0.4); }

.gallery-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.gallery-info {
  padding: 20px 24px;
}

.gallery-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.gallery-admin-row {
  display: flex;
  justify-content: center;
  padding: 20px 40px;
}

/* ====== VIDEO SECTION ====== */
.video-filter-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vfilter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vfilter-btn.active,
.vfilter-btn:hover {
  color: var(--cyan);
  border-color: rgba(0,210,255,0.3);
  background: rgba(0,210,255,0.06);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.video-card-smc {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card-smc:hover {
  transform: translateY(-4px);
  border-color: rgba(0,210,255,0.15);
  box-shadow: var(--shadow-card);
}

.video-card-smc[style*="none"] { display: none; }

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card-smc:hover .video-thumb-wrap img {
  transform: scale(1.05);
}

.vplay-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,6,16,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.video-card-smc:hover .vplay-overlay { opacity: 1; background: rgba(3,6,16,0.4); }

.vplay-btn {
  width: 60px; height: 60px;
  background: rgba(0,210,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 0 30px rgba(0,210,255,0.5);
  transition: transform 0.3s ease;
}

.vplay-overlay:hover .vplay-btn {
  transform: scale(1.1);
}

.vcard-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.profit-tag { background: rgba(16,185,129,0.85); color: #fff; }
.analysis-tag { background: rgba(0,210,255,0.85); color: #000; }
.tutorial-tag { background: rgba(168,85,247,0.85); color: #fff; }

.vcard-info {
  padding: 18px 20px;
}

.vcard-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.vcard-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.vcard-date {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====== ANALYSIS SECTION ====== */
.analysis-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  padding: 0 40px;
}

.analysis-post {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.analysis-post:hover {
  border-color: rgba(0,210,255,0.15);
}

.featured-analysis {
  border-color: rgba(0,210,255,0.2);
  background: linear-gradient(135deg, rgba(0,210,255,0.04), rgba(59,130,246,0.02));
}

.analysis-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.analysis-badge {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.analysis-badge-normal {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.analysis-date {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.analysis-post h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.analysis-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16/8;
}

.analysis-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.analysis-post p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.analysis-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.analysis-tag-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Sidebar */
.sidebar-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
}

.sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-outlook {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.outlook-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.outlook-pair {
  font-size: 13px;
  font-weight: 600;
}

.outlook-bias {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.outlook-bias.bullish { background: rgba(16,185,129,0.1); color: var(--green); }
.outlook-bias.bearish { background: rgba(239,68,68,0.1); color: var(--red); }
.outlook-bias.neutral { background: rgba(245,158,11,0.1); color: var(--orange); }

.events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.event-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.event-dot.red { background: var(--red); box-shadow: 0 0 8px rgba(239,68,68,0.4); }
.event-dot.yellow { background: var(--orange); box-shadow: 0 0 8px rgba(245,158,11,0.4); }

.event-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.event-date {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.sidebar-cta {
  background: linear-gradient(135deg, rgba(0,210,255,0.06), rgba(59,130,246,0.04));
  border: 1px solid rgba(0,210,255,0.15);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.sidebar-cta-icon { font-size: 40px; margin-bottom: 12px; }

.sidebar-cta h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tcard {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
}

.tcard:hover {
  transform: translateY(-4px);
  border-color: rgba(0,210,255,0.15);
  box-shadow: var(--shadow-card);
}

.featured-tcard {
  border-color: rgba(0,210,255,0.25);
  background: linear-gradient(135deg, rgba(0,210,255,0.04), rgba(59,130,246,0.02));
}

.featured-tcard-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tcard-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.tcard-stars {
  color: var(--orange);
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.tcard-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.tcard-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.tcard-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ====== CONTACT SECTION ====== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: 0 40px;
}

.contact-highlight-box {
  background: linear-gradient(135deg, rgba(0,210,255,0.06), rgba(59,130,246,0.04));
  border: 1px solid rgba(0,210,255,0.2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.highlight-shark {
  font-size: 56px;
  margin-bottom: 12px;
}

.contact-highlight-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-price {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.contact-price span {
  font-size: 24px;
  font-weight: 600;
}

.contact-includes {
  list-style: none;
  text-align: left;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #d1d5db;
}

.contact-includes li i {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-methods-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method-btn i {
  font-size: 26px;
  flex-shrink: 0;
}

.whatsapp-btn {
  background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(18,140,126,0.08));
  border: 1px solid rgba(37,211,102,0.25);
  color: #25D366;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, rgba(37,211,102,0.2), rgba(18,140,126,0.15));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.2);
}

.phone-btn {
  background: linear-gradient(135deg, rgba(0,210,255,0.08), rgba(59,130,246,0.05));
  border: 1px solid rgba(0,210,255,0.2);
  color: var(--cyan);
}

.phone-btn:hover {
  background: linear-gradient(135deg, rgba(0,210,255,0.15), rgba(59,130,246,0.1));
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}

.cmethod-main {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.cmethod-sub {
  display: block;
  font-size: 13px;
  opacity: 0.75;
}

/* Contact Form */
.contact-right h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-form-smc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ====== UPLOAD / ADMIN PANELS ====== */
.upload-panel,
.video-upload-panel,
.analysis-upload-panel {
  background: rgba(10, 18, 40, 0.8);
  border: 1px solid rgba(0,210,255,0.2);
  border-radius: 16px;
  padding: 28px;
  margin: 20px 40px;
  backdrop-filter: blur(10px);
}

.upload-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.upload-panel-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
}

.upload-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.upload-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group-upload {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-upload label {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group-upload input,
.form-group-upload textarea,
.form-group-upload select,
.form-select,
.form-input-admin {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}

.form-group-upload input:focus,
.form-group-upload textarea:focus,
.form-group-upload select:focus,
.form-select:focus,
.form-input-admin:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,210,255,0.1);
}

.form-group-upload textarea { resize: vertical; }
.form-select option { background: #060d1a; }

/* Admin Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3,6,16,0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: var(--bg-dark);
  border: 1px solid rgba(0,210,255,0.2);
  border-radius: 20px;
  padding: 36px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.modal-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-box p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.form-input-admin {
  margin-bottom: 16px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 4px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.admin-pass-error {
  color: var(--red);
  font-size: 13px;
  margin-top: 10px;
}

.btn-admin-toggle {
  opacity: 0.4;
  font-size: 11px;
}

.btn-admin-toggle:hover { opacity: 0.8; }

/* ====== VIDEO MODAL ====== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3,6,16,0.95);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-container {
  background: var(--bg-dark);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.vmodal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.vmodal-close:hover {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
  color: var(--red);
}

.video-modal-note h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.video-modal-note p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ====== TESTIMONIAL SUBMIT FORM ====== */
.testimonial-submit-wrap {
  max-width: 720px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.testimonial-submit-box {
  background: linear-gradient(135deg, rgba(0,210,255,0.04), rgba(59,130,246,0.03));
  border: 1px solid rgba(0,210,255,0.18);
  border-radius: 22px;
  padding: 36px;
}

.tsub-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.tsub-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.tsub-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tsub-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.tsub-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Star selector */
.star-selector {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.star-opt {
  font-size: 32px;
  color: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1;
  user-select: none;
}

.star-opt:hover,
.star-opt.selected {
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245,158,11,0.5);
}

/* Pending item */
.pending-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pending-item-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pending-item-info p {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.pending-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-approve {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #10b981;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-approve:hover {
  background: rgba(16,185,129,0.2);
}

.btn-reject {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #ef4444;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-reject:hover {
  background: rgba(239,68,68,0.2);
}

/* ====== FOOTER ====== */
.footer-smc {
  background: #020508;
  border-top: 1px solid var(--border);
  padding: 60px 40px 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-shark-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 15px rgba(0,210,255,0.3);
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-contact-info a {
  color: #25D366;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links-col ul li a:hover { color: var(--cyan); }

.footer-disclaimer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-disclaimer-col p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-bottom-smc {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-smc a {
  color: var(--cyan);
  text-decoration: none;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .analysis-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  header { padding: 12px 20px; }
  nav { display: none; position: fixed; top: 70px; left: 0; width: 100%; background: rgba(3,6,16,0.97); padding: 20px; border-bottom: 1px solid var(--border); }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 4px; }
  .nav-link { display: block; padding: 12px 16px; }
  .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }
  .header-actions { gap: 6px; }
  .header-actions .btn-whatsapp span { display: none; }
  .section { padding: 70px 20px; }
  .gallery-grid { padding: 0 20px 20px; grid-template-columns: 1fr; }
  .upload-form-row { grid-template-columns: 1fr; }
  .analysis-layout { padding: 0 20px; }
  .contact-layout { padding: 0 20px; }
  .hero-content-wrap { padding: 60px 20px; }
  .hero-stats-row { gap: 10px; }
  .hero-stat { padding: 0 15px; }
  .hero-stat-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-smc { padding: 40px 20px 0; }
  .gallery-admin-row { padding: 20px; }
  .upload-panel, .video-upload-panel, .analysis-upload-panel { margin: 20px; }
}

@media (max-width: 480px) {
  .logo-smc { font-size: 18px; }
  .logo-name { font-size: 10px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .price-amount { font-size: 36px; }
  .contact-price { font-size: 42px; }
}
