/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(18, 18, 26, 0.8);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #8b8b9a;
  --text-muted: #5a5a6a;
  --accent-green: #00ff88;
  --accent-blue: #00d4ff;
  --accent-purple: #b829dd;
  --accent-orange: #ff6b35;
  --terminal-green: #0f0;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --font-sans: 'Inter', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== DEVELOPER BACKGROUND ===== */
.dev-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(184, 41, 221, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 70%),
    var(--bg-primary);
}

/* Matrix Canvas */
#matrixCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
}

/* Floating Code Snippets */
.floating-code {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.4;
  animation: float-code 25s infinite ease-in-out;
  pointer-events: none;
  white-space: nowrap;
}

.code-1 { top: 15%; left: 5%; animation-delay: 0s; }
.code-2 { top: 25%; right: 10%; animation-delay: -5s; }
.code-3 { top: 60%; left: 8%; animation-delay: -10s; }
.code-4 { top: 70%; right: 5%; animation-delay: -15s; }
.code-5 { top: 40%; left: 15%; animation-delay: -8s; }
.code-6 { top: 85%; right: 15%; animation-delay: -12s; }

@keyframes float-code {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
  25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
  50% { transform: translateY(20px) translateX(-10px); opacity: 0.3; }
  75% { transform: translateY(-10px) translateX(5px); opacity: 0.5; }
}

/* Grid Lines */
.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-scroll 20s linear infinite;
}

@keyframes grid-scroll {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

/* Glowing Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: orb-pulse 15s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-purple);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-blue);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-green);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

/* Terminal Cursor */
.terminal-cursor {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--terminal-green);
  animation: blink 1s infinite;
  opacity: 0.5;
}

@keyframes blink {
  0%, 50% { opacity: 0.5; }
  51%, 100% { opacity: 0; }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

/* ===== HEADER ===== */
header {
  margin-bottom: 80px;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  width: fit-content;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-min { background: #febc2e; }
.btn-max { background: #28c840; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.brand-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(184, 41, 221, 0.3);
  filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.3));
  transition: all 0.3s;
}

.brand-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.5));
}

.by-softcode {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 5px;
  font-family: var(--font-mono);
}

.by-softcode a {
  color: var(--accent-green);
  text-decoration: none;
}
.bracket { color: white; }
.slash { 
  color: var(--accent-green); 
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.logo-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.version {
  display: inline-block;
  background: rgba(0, 255, 136, 0.15);
  color: var(--accent-green);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.developer-credit {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-family: var(--font-mono);
}

.developer-credit a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.developer-credit a:hover {
  color: var(--accent-blue);
}

.tagline {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-family: var(--font-mono);
}

.typing-text {
  color: var(--terminal-green);
}

.cursor {
  color: var(--terminal-green);
  animation: blink 1s infinite;
}

.tech-stack {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tech-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.tech-badge:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.template-section {
  margin-bottom: 100px;
}

.section-header {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.free-badge {
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.premium-badge {
  background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,237,78,0.1) 100%);
  color: #ffd700;
  border: 1px solid rgba(255,215,0,0.4);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Card Terminal Line */
.card-terminal {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 20px;
  opacity: 0.6;
}

.card-terminal .prompt {
  color: var(--accent-green);
  margin-right: 8px;
}

.card-terminal .command {
  color: var(--text-muted);
}

/* Card Icon */
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.card > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Tech Tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.tech-tags span {
  background: rgba(255,255,255,0.05);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Card Footer */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.price {
  font-family: var(--font-mono);
  font-weight: 700;
}

.free-price {
  color: var(--accent-green);
  font-size: 1.2rem;
}

.premium-price {
  color: #ffd700;
  font-size: 1.5rem;
}

.card button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.btn-icon {
  font-size: 1.1rem;
}

/* Free Card Buttons */
.card.free button {
  background: linear-gradient(135deg, var(--accent-green) 0%, #00cc6a 100%);
  color: var(--bg-primary);
}

.card.free button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Premium Cards */
.card.premium {
  border: 2px solid rgba(255, 215, 0, 0.15);
  background: linear-gradient(135deg, rgba(255,215,0,0.03) 0%, var(--bg-card) 100%);
}

.premium-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: var(--bg-primary);
  padding: 8px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.card.premium button {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: var(--bg-primary);
}

.card.premium button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-top: 80px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== MODALS ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.modal-terminal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(0,255,136,0.05);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.premium-terminal {
  background: rgba(255,215,0,0.05);
}

.modal-terminal-header .prompt {
  color: var(--accent-green);
}

.premium-terminal .prompt {
  color: #ffd700;
}

.modal-terminal-header .command {
  color: var(--text-secondary);
}

.modal-terminal-header .command span {
  color: var(--accent-blue);
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s;
  z-index: 10;
}

.close:hover {
  color: var(--text-primary);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  padding: 20px 25px 0;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
}

.tab-btn.active {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

.tab-icon {
  font-size: 1.1rem;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 25px;
}

.tab-content.active {
  display: block;
  animation: slideIn 0.3s;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Forms */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.label-icon {
  font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: rgba(0,0,0,0.2);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-mono);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(0,0,0,0.3);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* Color Presets */
.color-presets {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.color-preset {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.color-preset:hover {
  transform: scale(1.1);
  border-color: white;
}

input[type="color"] {
  width: 100%;
  height: 50px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

/* Modal Buttons */
.modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.modal-buttons button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.preview-btn {
  background: transparent;
  border: 2px solid var(--accent-blue) !important;
  color: var(--accent-blue);
}

.preview-btn:hover {
  background: rgba(0, 212, 255, 0.1);
}

.download-btn {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
  color: white;
}

.download-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Learn Tab */
.explanation-content {
  max-height: 400px;
  overflow-y: auto;
}

.explanation-section {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  border-left: 4px solid var(--accent-blue);
}

.explanation-section h4 {
  color: var(--accent-blue);
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.explanation-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.code-snippet {
  background: #050508;
  padding: 20px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  overflow-x: auto;
  border: 1px solid var(--border);
  line-height: 1.6;
}

/* Payment Modal */
.payment-content {
  max-width: 480px;
}

.payment-header {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.template-icon-large {
  font-size: 5rem;
  margin-bottom: 15px;
  display: block;
}

.payment-header h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price-display .currency {
  font-size: 1.5rem;
  color: #ffd700;
  font-weight: 700;
}

.price-display .amount {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-display .period {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 5px;
}

.payment-form {
  padding: 25px;
}

.payment-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
}

.pfeature {
  color: var(--accent-green);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.paystack-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.paystack-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(11, 163, 96, 0.3);
}

.lock-icon {
  font-size: 1.2rem;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.shield {
  font-size: 1.2rem;
}

/* Preview Modal */
.preview-content {
  max-width: 900px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  border-bottom: 1px solid var(--border);
}

.preview-terminal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.preview-terminal .prompt {
  color: var(--accent-green);
}

.preview-terminal .command {
  color: var(--text-secondary);
}

.preview-header .close {
  position: static;
}

#previewFrame {
  flex: 1;
  width: 100%;
  border: none;
  background: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .logo-text h1 {
    font-size: 2.5rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .payment-features {
    grid-template-columns: 1fr;
  }
  
  .floating-code {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo-container {
    flex-direction: column;
    text-align: center;
  }
  
  .tech-stack {
    justify-content: center;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .card-footer {
    flex-direction: column;
    gap: 15px;
  }
  
  .card button {
    width: 100%;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, rgba(10,10,15,0) 0%, rgba(10,10,15,1) 5%, #0d0d14 100%);
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  padding: 60px 30px 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.footer-brand h3 {
  color: var(--accent-green);
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-contact h4,
.footer-social h4 {
  color: var(--text-primary);
  margin: 0 0 18px 0;
  font-size: 1rem;
  font-weight: 600;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 0;
  font-size: 0.9rem;
  font-family: var(--font-mono);
  transition: all 0.3s;
}

.contact-link:hover {
  color: var(--accent-green);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-btn.whatsapp-btn {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.social-btn.whatsapp-btn:hover {
  background: #25d366;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.social-btn.website-btn {
  background: rgba(0, 255, 136, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.social-btn.website-btn:hover {
  background: var(--accent-green);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 5px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--accent-blue);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .contact-link {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}