/* ProBiz Landing Page Styling */

:root {
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --text-gradient: linear-gradient(135deg, #a5b4fc 0%, #c084fc 50%, #f472b6 100%);
  --btn-gradient: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  --bg-dark: #070a13;
  --bg-card: rgba(255, 255, 255, 0.02);
  --border-card: rgba(255, 255, 255, 0.07);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --font-body: 'Poppins', sans-serif;
  --font-headings: 'Khand', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

/* Background Glowing Mesh */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60%;
  height: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
}

.glow-helper {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 50%;
  height: 40%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
}

/* Navbar */
.navbar-custom {
  background: rgba(7, 10, 19, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-card);
  padding: 15px 0;
}

.brand-text {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: 0.5px;
}

#hero-title {
  font-weight: 700 !important;
}

.english-font {
  font-family: var(--font-body);
}

.gradient-text {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-text {
  color: var(--text-secondary);
  font-size: 1.15rem;
  font-weight: 300;
}

/* Buttons */
.btn-whatsapp {
  background: var(--btn-gradient);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp i {
  font-size: 1.4rem;
}

/* Pulse animation for main CTA button */
.pulse-btn {
  animation: pulse-effect 2.5s infinite;
}

@keyframes pulse-effect {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-whatsapp:hover {
  transform: translateY(-5px) rotate(10deg);
  background: #128c7e;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
}

/* Feature Icons */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #818cf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.glass-card:hover .icon-box {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  transform: scale(1.05);
}

/* Subdomain Showcases */
.subdomain-card {
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.subdomain-card:hover {
  border-color: rgba(236, 72, 153, 0.3);
  transform: translateX(5px);
  background: rgba(11, 15, 25, 0.8);
}

.subdomain-text {
  font-family: var(--font-body);
  font-weight: 500;
  color: #e2e8f0;
  font-size: 1.1rem;
}

.subdomain-highlight {
  color: #f472b6;
}

.subdomain-badge {
  background: rgba(236, 72, 153, 0.1);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.2);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* List Style Customizations */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.custom-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #10b981;
  font-size: 1.2rem;
}

/* Highlights */
.badge-offer {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #818cf8;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
}

.highlight-border-card {
  border-color: rgba(236, 72, 153, 0.2) !important;
}

/* Hero Mockup Graphic */
.mockup-window {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #0f172a;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mockup-header {
  height: 40px;
  background: #1e293b;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-address {
  background: #0f172a;
  border-radius: 6px;
  font-family: var(--font-english);
  font-size: 0.8rem;
  color: #64748b;
  flex-grow: 1;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  padding: 4px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-content {
  padding: 24px;
}

/* Footer styling */
.footer-section {
  border-top: 1px solid var(--border-card);
  padding: 40px 0;
  color: var(--text-secondary);
}

/* Responsiveness overrides */
@media (max-width: 991.98px) {
  .hero-text {
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .mockup-container {
    margin-top: 40px;
  }
}
