/*
Theme Name: Shaheen Money
Theme URI: https://shaheenmoney.test
Author: Pneuma
Description: Borderless payment platform — dark fintech theme with glassmorphism
Version: 1.0.0
Text Domain: shaheenmoney
*/

/* === Base Reset & Dark Theme === */
:root {
  --color-primary: #6366F1;
  --color-secondary: #06B6D4;
  --color-accent: #F59E0B;
  --color-dark: #0B0F1A;
  --color-dark-lighter: #111827;
  --color-card-bg: rgba(255,255,255,0.05);
  --color-card-border: rgba(255,255,255,0.08);
  --color-text: #F1F5F9;
  --color-text-muted: #94A3B8;
  --gradient-primary: linear-gradient(135deg, #6366F1, #06B6D4);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Work Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* === Glassmorphism === */
.glass-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

/* === Buttons === */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-gradient:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.35);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(99, 102, 241, 0.08);
  transform: translateY(-1px);
  color: #fff;
}

/* === Navigation === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-link {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* === Phone Mockup === */
.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 25px 50px rgba(0,0,0,0.5),
    0 0 80px rgba(99, 102, 241, 0.1);
  flex-shrink: 0;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #0B0F1A;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Stats Counter === */
.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .stat-number { font-size: 3rem; }
}

/* === Section Spacing === */
.section-padding {
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .section-padding { padding: 8rem 2rem; }
}

/* === Pricing Cards === */
.pricing-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.08);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured:hover {
  transform: translateY(-6px) scale(1.02);
}

/* === Connector Card === */
.connector-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.connector-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
}

/* === Team Card === */
.team-card { text-align: center; }

.team-card .team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  object-fit: cover;
  border: 3px solid rgba(99, 102, 241, 0.3);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-photo {
  border-color: var(--color-secondary);
}

/* === Contact Form === */
.contact-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.contact-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.contact-input::placeholder {
  color: var(--color-text-muted);
}

textarea.contact-input {
  resize: vertical;
  min-height: 140px;
}

/* === Blog Cards === */
.blog-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
}

.blog-card .blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Footer === */
.site-footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-link {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover { color: #fff; }

/* === GSAP Animation Prep === */
.gsap-reveal { visibility: hidden; }
body.gsap-ready .gsap-reveal { visibility: hidden; }

/* === Trusted By Logos === */
.trusted-logo {
  color: rgba(255,255,255,0.25);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.trusted-logo:hover { color: rgba(255,255,255,0.5); }

/* === Step Number === */
.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gradient-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

/* === Testimonial === */
.testimonial-card { padding: 2rem; }
.testimonial-card .stars { color: var(--color-accent); }

/* === Mobile Menu === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 15, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.mobile-menu a:hover { color: var(--color-primary); }

/* === Utility === */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), rgba(6, 182, 212, 0.3), transparent);
}

.bg-grid-pattern {
  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;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-dark); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

.glow-indigo { box-shadow: 0 0 60px rgba(99, 102, 241, 0.15); }
.glow-cyan { box-shadow: 0 0 60px rgba(6, 182, 212, 0.15); }

.icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.2);
  flex-shrink: 0;
}

.four-oh-four h1 {
  font-size: 8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

::selection {
  background: rgba(99, 102, 241, 0.3);
  color: #fff;
}

/* === Responsive === */
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 3rem;
  }
  .phone-mockup { width: 220px; height: 440px; }
  .section-padding { padding: 4rem 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}
