/* ═══════════════════════════════════════════════════════════
   Creative Vision IT – Best POS Software Pakistan
   Custom Stylesheet  |  style.css
   Version: 1.0  |  2026
═══════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --primary:     #0047AB;
  --primary-dk:  #003080;
  --accent:      #FF6B35;
  --accent-dk:   #e55c28;
  --success:     #16A34A;
  --dark:        #1e293b;
  --mid:         #475569;
  --light-text:  #94A3B8;
  --bg-light:    #F1F5F9;
  --bg-card:     #FFFFFF;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.14);
  --transition:  all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ─── BASE ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

::selection {
  background: var(--primary);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── ACCESSIBILITY – SKIP LINK ─────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-primary-brand { color: var(--primary); }

/* ─── BACKGROUND UTILITIES ───────────────────────────────── */
.bg-light-blue { background: #EFF6FF; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar-brand .brand-text { font-size: 1.2rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255,107,53,.3); }

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
  }
  .navbar-nav .nav-link { padding: .6rem 1rem !important; }
  .btn-nav { display: block; text-align: center; margin: .5rem 0 0; }
}

/* ─── HERO ILLUSTRATION ──────────────────────────────────── */
.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.pos-device {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1);
  width: 300px;
  overflow: hidden;
  animation: floatDevice 4s ease-in-out infinite;
}

@keyframes floatDevice {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.pos-screen {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  padding: 1.2rem;
}

.pos-screen-header {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}
.pos-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.pos-dot.orange { background: #F59E0B; }
.pos-dot.green  { background: #10B981; }

.pos-screen-body { padding: .5rem 0; }

.pos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .6rem;
}
.pos-bar {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.15);
  flex: 1;
  margin-right: 1rem;
}
.pos-bar.w-70 { max-width: 70%; }
.pos-bar.w-50 { max-width: 50%; }
.pos-bar.w-65 { max-width: 65%; }
.pos-bar.w-40 { max-width: 40%; }

.pos-price {
  width: 50px; height: 10px;
  border-radius: 5px;
  background: rgba(255,107,53,.5);
}

.pos-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: .8rem 0;
}

.pos-total-row {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: .85rem;
}
.pos-total-row strong { color: #FF6B35; font-size: 1rem; }

.pos-screen-footer { padding: .8rem; }

.pos-btn-pay {
  background: linear-gradient(135deg, #FF6B35, #e55c28);
  color: #fff;
  text-align: center;
  padding: .6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
}

.pos-base {
  background: #f1f5f9;
  padding: 1rem;
}

.pos-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.key {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  border-radius: 6px;
  padding: .4rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
}
.key-clear { background: #FEE2E2; color: #DC2626; }
.key-enter { background: linear-gradient(135deg, #16A34A, #15803D); color: #fff; }

/* Floating Badges */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  padding: .4rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .4rem;
  animation: floatBadge 3s ease-in-out infinite;
}
.float-badge i { color: var(--primary); }
.badge-1 { top: 15%; left: -10%; animation-delay: 0s; }
.badge-2 { top: 55%; right: -5%; animation-delay: 1s; }
.badge-3 { bottom: 10%; left: 5%; animation-delay: 2s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ─── INTRO CONTENT ──────────────────────────────────────── */
.intro-content p {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.intro-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.intro-content a:hover { color: var(--accent); }

/* Trust Badges */
.trust-badges { border-top: 1px solid #e2e8f0; padding-top: 2rem; }
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: var(--transition);
}
.trust-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trust-badge i { font-size: 1.5rem; color: var(--primary); }
.trust-badge span { font-weight: 600; font-size: .85rem; color: var(--dark); }

/* ─── FEATURE CARDS ──────────────────────────────────────── */
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 0 2px 2px 0;
  transition: height .4s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { height: 100%; }

.feature-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--icon-bg);
  color: var(--icon-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap { transform: scale(1.1) rotate(5deg); }

.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.feature-card p  { font-size: .9rem; color: var(--mid); line-height: 1.65; margin: 0; }

/* ─── INDUSTRY CARDS ─────────────────────────────────────── */
.industry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.industry-icon {
  width: 65px; height: 65px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ind-color) 12%, white);
  color: var(--ind-color);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.industry-card:hover .industry-icon { transform: scale(1.15); }

.industry-card h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.industry-card p  { font-size: .8rem; color: var(--mid); margin: 0; }

/* Cities Bar */
.cities-bar {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}
.cities-label { font-weight: 600; font-size: .85rem; color: var(--mid); margin-bottom: .8rem; }
.cities-list {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
}
.cities-list span {
  background: #EFF6FF;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 50px;
  border: 1px solid #BFDBFE;
}

/* ─── WHY US ──────────────────────────────────────────────── */
.why-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon-wrap {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,71,171,.3);
  transition: var(--transition);
}
.why-item:hover .why-icon-wrap { transform: scale(1.1) rotate(5deg); }

.why-content h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.why-content p  { font-size: .9rem; color: var(--mid); margin: 0; line-height: 1.6; }

/* Achievement Grid */
.achievement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.ach-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.ach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ach-card i { font-size: 1.5rem; }
.ach-card strong { font-size: .95rem; color: var(--dark); }
.ach-card span { font-size: .78rem; color: var(--mid); }
.ach-1 i { color: #F59E0B; }
.ach-2 i { color: #2563EB; }
.ach-3 i { color: #16A34A; }
.ach-4 i { color: #F59E0B; }
.ach-5 i { color: var(--primary); }
.ach-6 i { color: var(--accent); }

/* ─── REVIEWS ─────────────────────────────────────────────── */
.reviews-section {
  background: linear-gradient(135deg, #0a1628 0%, #0047AB 100%);
  padding: 80px 0;
}

.overall-rating-widget {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
}

.rating-score {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.rating-stars-lg { color: #F59E0B; font-size: 1.4rem; }

.rating-count { font-size: .9rem; }

.rating-bars {
  width: 100%; max-width: 300px; margin-top: 1rem;
}

.rb-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .4rem;
}
.rb-label { color: rgba(255,255,255,.7); font-size: .8rem; width: 40px; flex-shrink: 0; }
.rb-track { flex: 1; height: 8px; background: rgba(255,255,255,.15); border-radius: 4px; overflow: hidden; }
.rb-fill  { height: 100%; background: #F59E0B; border-radius: 4px; transition: width .8s ease; }
.rb-pct   { color: rgba(255,255,255,.7); font-size: .8rem; width: 35px; text-align: right; flex-shrink: 0; }

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.testimonial-featured {
  background: rgba(255,107,53,.15);
  border-color: rgba(255,107,53,.3);
}

.tc-stars { color: #F59E0B; font-size: .9rem; margin-bottom: 1rem; }

.tc-text {
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
}
.tc-avatar { color: rgba(255,255,255,.3); font-size: 2rem; }
.tc-author strong { color: #fff; font-size: .9rem; display: block; }
.tc-author small  { color: rgba(255,255,255,.5); font-size: .78rem; display: block; }

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pricing-popular {
  background: linear-gradient(160deg, #0047AB 0%, #003080 100%);
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-popular:hover { transform: scale(1.03) translateY(-8px); }

.popular-badge {
  background: #FF6B35;
  color: #fff;
  text-align: center;
  padding: .4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-header { padding: 2rem 2rem 1rem; text-align: center; }

.plan-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.plan-icon-blue  { background: #EFF6FF; color: #2563EB; }
.plan-icon-white { background: rgba(255,255,255,.2); color: #fff; }
.plan-icon-gold  { background: #FFFBEB; color: #D97706; }

.plan-name { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.pricing-popular .plan-name { color: #fff; }

.plan-price { margin: .8rem 0; }
.price-original { text-decoration: line-through; color: rgba(255,255,255,.5); font-size: .9rem; margin-right: .3rem; display: block; }
.pricing-card:not(.pricing-popular) .price-original { color: #94A3B8; }
.price-amount { font-size: 1.7rem; font-weight: 900; color: var(--dark); }
.pricing-popular .price-amount { color: #fff; }
.price-period { font-size: .85rem; color: var(--mid); }
.pricing-popular .price-period { color: rgba(255,255,255,.7); }

.plan-tagline { font-size: .85rem; color: var(--mid); margin: 0; }
.pricing-popular .plan-tagline { color: rgba(255,255,255,.7); }

.pricing-body { padding: 0 2rem; flex: 1; }

.plan-features {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.2rem;
}
.pricing-popular .plan-features { border-color: rgba(255,255,255,.15); }

.plan-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 0;
  font-size: .88rem;
  color: var(--dark);
  border-bottom: 1px solid #f1f5f9;
}
.pricing-popular .plan-features li { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.08); }
.plan-features li i { font-size: .85rem; flex-shrink: 0; }
.plan-features li i.fa-circle-check { color: #16A34A; }
.pricing-popular .plan-features li i.fa-circle-check { color: #86EFAC; }
.plan-features li.feat-inactive { color: #94A3B8; }
.plan-features li.feat-inactive i { color: #CBD5E1; }

.pricing-footer { padding: 1.5rem 2rem 2rem; }

.btn-pricing-outline,
.btn-pricing-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-pricing-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-pricing-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-pricing-solid {
  background: #fff;
  color: var(--primary);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.btn-pricing-solid:hover { background: #f1f5f9; transform: translateY(-2px); color: var(--primary-dk); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-accordion { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }

.faq-item {
  border: none;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.faq-item:last-child { border-bottom: none; }

.faq-btn {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.2rem 1.5rem;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}
.faq-btn:not(.collapsed) { color: var(--primary); background: #F0F7FF; }
.faq-btn:focus { box-shadow: none; }
.faq-btn::after { display: none; } /* remove bootstrap default arrow */

.faq-btn .faq-icon { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; transition: var(--transition); }
.faq-btn:not(.collapsed) .faq-icon { color: var(--accent); transform: rotate(180deg); }

.faq-body {
  padding: 0 1.5rem 1.5rem 3.4rem;
  color: var(--mid);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-body a { color: var(--primary); text-decoration: underline; }
.faq-body a:hover { color: var(--accent); }
.faq-body ul { padding-left: 1.2rem; }
.faq-body ul li { margin-bottom: .4rem; }
.faq-body p { margin-bottom: .8rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  padding: 70px 0;
}

.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: .8rem; }
.cta-sub   { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-btns  { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }

.cd-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cd-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-item strong { display: block; font-size: .85rem; color: var(--dark); margin-bottom: .2rem; }
.cd-item p { margin: 0; font-size: .9rem; color: var(--mid); }
.cd-item a { color: var(--primary); font-weight: 500; }
.cd-item a:hover { color: var(--accent); }

/* Social Buttons */
.social-section h5 { font-size: 1rem; font-weight: 700; margin-bottom: .8rem; color: var(--dark); }
.social-row { display: flex; gap: .7rem; flex-wrap: wrap; }

.soc-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.soc-btn:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.soc-fb { background: #1877F2; }
.soc-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-tt { background: #010101; }
.soc-li { background: #0A66C2; }
.soc-wa { background: #25D366; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: .3rem; }

.req { color: #DC2626; }

.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: .9rem;
  z-index: 1;
}
.input-wrap .form-control,
.input-wrap .form-select {
  padding-left: 2.8rem;
}
.form-control, .form-select {
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  padding: .7rem 1rem;
  font-size: .92rem;
  color: var(--dark);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,71,171,.12);
}
.form-control::placeholder { color: #94A3B8; }

textarea.form-control { border-radius: 10px; resize: vertical; min-height: 120px; }

.form-label { font-weight: 600; font-size: .87rem; color: var(--dark); margin-bottom: .4rem; }

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,71,171,.35);
  background: linear-gradient(135deg, var(--primary-dk), #002060);
  color: #fff;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
#site-footer { background: #0F172A; }

.footer-top { padding: 60px 0 40px; }

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-brand-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.footer-brand-name { font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer-brand-name strong { color: var(--accent); }

.footer-about { color: #94A3B8; font-size: .88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-about strong { color: #CBD5E1; }

.footer-socials { display: flex; gap: .6rem; flex-wrap: wrap; }
.fsoc {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #94A3B8;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  text-decoration: none;
  transition: var(--transition);
}
.fsoc:hover { color: #fff; transform: translateY(-3px); }
.fsoc-fb:hover { background: #1877F2; border-color: #1877F2; }
.fsoc-ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.fsoc-tt:hover { background: #010101; border-color: #333; }
.fsoc-li:hover { background: #0A66C2; border-color: #0A66C2; }
.fsoc-wa:hover { background: #25D366; border-color: #25D366; }

.footer-heading { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 1.2rem; }

.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: .6rem; }
.footer-nav a {
  color: #94A3B8;
  font-size: .88rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex; align-items: center; gap: .4rem;
}
.footer-nav a:hover { color: var(--accent); padding-left: .4rem; }

.footer-contact-list { display: flex; flex-direction: column; gap: .9rem; }
.fc-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: #94A3B8;
  font-size: .88rem;
  line-height: 1.5;
}
.fc-item i { color: var(--accent); font-size: .9rem; margin-top: .15rem; flex-shrink: 0; }
.fc-item a { color: #94A3B8; text-decoration: none; }
.fc-item a:hover { color: var(--accent); }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-copy { color: #64748B; font-size: .83rem; }
.footer-copy a { color: #94A3B8; text-decoration: none; }
.footer-copy a:hover { color: var(--accent); }
.footer-links-row { color: #64748B; font-size: .83rem; }
.footer-links-row a { color: #64748B; text-decoration: none; margin: 0 .4rem; }
.footer-links-row a:hover { color: var(--accent); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
  color: #fff;
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ─── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dk); transform: translateY(-2px); }

/* ─── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for groups */
.fade-in-up:nth-child(1) { transition-delay: 0s; }
.fade-in-up:nth-child(2) { transition-delay: .1s; }
.fade-in-up:nth-child(3) { transition-delay: .2s; }
.fade-in-up:nth-child(4) { transition-delay: .3s; }
.fade-in-up:nth-child(5) { transition-delay: .4s; }
.fade-in-up:nth-child(6) { transition-delay: .5s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 992px) {
  section { padding: 60px 0; }
  .hero-title { letter-spacing: -.5px; }
  .achievement-grid { grid-template-columns: 1fr 1fr; }
  .pricing-popular { transform: scale(1); }
  .pricing-popular:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  section { padding: 50px 0; }
  .section-title { font-size: 1.8rem; }
  .btn-hero-primary,
  .btn-hero-secondary { padding: .75rem 1.5rem; font-size: .95rem; width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; }
  .cta-btns { flex-direction: column; }
  .why-item { gap: .8rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .pos-device { width: 250px; }
  .float-badge { display: none; }
  .trust-badge { padding: 1rem; }
  .footer-top { padding: 40px 0 30px; }
}

@media (max-width: 480px) {
  .stats-row .stat-number { font-size: 2rem; }
  .achievement-grid { grid-template-columns: 1fr 1fr; }
  .cities-list span { font-size: .78rem; }
  .testimonial-card { padding: 1.5rem; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; }
}

/* ─── PRINT STYLES ────────────────────────────────────────── */
@media print {
  .navbar, .whatsapp-float, .back-to-top, .hero-illustration { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
  section { padding: 20pt 0; page-break-inside: avoid; }
}

/* ─── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .whatsapp-float { animation: none; }
  .pos-device { animation: none; }
}
