/* ================================
   SaleCentra Brand Styles
   ================================ */

/* Brand Colors */
:root {
  --primary: #0072CE;      /* Deep Blue */
  --primary-light: #4DA8FF;
  --accent: #F15A29;       /* Orange-Red */
  --text-dark: #2C3E50;
  --bg-light: #EAF4FF;
}

/* Global */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
}

/* Navbar */
.navbar-brand img {
  height: 42px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  background: radial-gradient(circle at top left, var(--bg-light), #ffffff);
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #5f6f81;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background-color: #d94f22;
  border-color: #d94f22;
}

/* Features */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

/* Sections */
.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-padding {
  padding: 70px 0;
}

/* Pricing Cards */
.card-title {
  color: var(--primary);
}

.card:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
}

/* Footer */
.footer {
  padding: 30px 0;
  background: #f5f7fa;
  font-size: 0.9rem;
  color: #7b8a9a;
}
/* Screenshot Cards (desktop images) */
.screenshot-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-card img {
    max-height: 260px;
    object-fit: contain;
    border-radius: 8px;
}

/* Phone Frame */
.phone-frame {
    width: 240px;
    height: 480px;
    background: #000;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.screenshot-card:hover,
.phone-frame:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Cleaner shadow (not blurry glow) */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    z-index: 9999;
    transition: all 0.25s ease;
}

.whatsapp-float img {
    width: 34px;   /* Bigger icon */
    height: 34px;
}

/* Hover = subtle, not dramatic */
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* REMOVE the big pulse glow ❌ */
/* Instead use a subtle ring */

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    opacity: 0;
    transition: 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

.hero {
    padding: 80px 0;
}

.hero-title {
    font-size: 44px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #6c757d;
}