/* =========================================
   ZeService 2027 — Design inspiré JA Vega
   ========================================= */

/* ----- Variables ----- */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: rgba(37, 99, 235, 0.1);
  --secondary: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --light-bg: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --success: #059669;
  --warning: #fbbf24;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; }
p { margin-bottom: 0; }

/* ----- Topbar ----- */
.topbar {
  background: var(--secondary);
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-contact a,
.topbar-social a {
  color: #94a3b8;
  transition: color 0.2s;
}
.topbar-contact a:hover,
.topbar-social a:hover { color: #ffffff; }
.topbar-contact a { margin-right: 20px; }
.topbar-contact i,
.topbar-social i { margin-right: 5px; }
.topbar-social a { margin-left: 10px; }

/* ----- Navbar ----- */
.navbar {
  padding: 14px 0;
  transition: padding 0.3s, box-shadow 0.3s;
  background: var(--white) !important;
}
.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1) !important;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-text {
  font-size: 1.25rem;
  color: var(--secondary);
  letter-spacing: -0.3px;
}
.brand-text strong { color: var(--primary); }
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text) !important;
  padding: 8px 13px !important;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary) !important; }
.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* ----- Hero ----- */
.hero-section {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #ede9fe 100%);
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-row {
  min-height: 75vh;
  align-items: center;
}
.badge-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--secondary);
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-title span { color: var(--primary); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 38px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image-col { text-align: center; }
.hero-img {
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 24px 48px rgba(37, 99, 235, 0.18));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

/* ----- Stats Bar ----- */
.stats-section {
  background: var(--primary);
  padding: 44px 0;
}
.stat-item { text-align: center; padding: 12px; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .stats-section { padding: 30px 0; }
  .stat-item { padding: 8px; }
  .stat-number { font-size: 1.8rem; }
}

/* ----- Section Commons ----- */
.section-padding { padding: 88px 0; }
.section-header { margin-bottom: 12px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-text {
  color: var(--muted);
  line-height: 1.75;
}

/* ----- About ----- */
.about-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img-wrapper img {
  border-radius: 16px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}
.about-badge i { font-size: 1.1rem; }
.about-stats-row { margin-top: 28px; }
.about-stat { padding: 12px 8px; }
.circle-stat {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, #60a5fa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  margin: 0 auto 10px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.32);
}
.about-stat > span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ----- Services ----- */
.service-card {
  background: white;
  border-radius: 14px;
  padding: 32px 26px;
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.14);
  border-color: var(--primary);
}
.service-card.featured-service {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}
.service-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--primary-light); }
.featured-service .service-icon { background: rgba(255, 255, 255, 0.2); }
.service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.service-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.featured-service .service-title { color: white; }
.service-text {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.65;
}
.featured-service .service-text { color: rgba(255, 255, 255, 0.82); }
.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  flex: 1;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured-service .service-features li { color: rgba(255, 255, 255, 0.85); }
.service-features li i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }
.featured-service .service-features li i { color: rgba(255, 255, 255, 0.9); }
.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.25s;
  margin-top: auto;
}
.service-link:hover { gap: 12px; }
.featured-service .service-link { color: white; }

/* ----- Features / Why Us ----- */
.features-section { padding: 88px 0; }
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  transition: background 0.3s, color 0.3s;
}
.feature-item:hover .feature-icon { background: var(--primary); color: white; }
.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 5px;
}
.feature-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.feature-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* ----- Pricing ----- */
.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 38px 30px;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
  transform: translateY(-6px);
}
.pricing-card.featured-pricing {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.32);
}
.pricing-card.featured-pricing:hover {
  transform: scale(1.04) translateY(-6px);
}
.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.pricing-header { text-align: center; margin-bottom: 28px; }
.pricing-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.pricing-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 14px;
}
.featured-pricing .pricing-header h3 { color: white; }
.price { line-height: 1; }
.price .currency {
  font-size: 1.3rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
  color: var(--secondary);
}
.featured-pricing .price .currency { color: white; }
.price .amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -2px;
}
.featured-pricing .price .amount { color: white; }
.price .period {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 2px;
}
.featured-pricing .price .period { color: rgba(255, 255, 255, 0.7); }
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.featured-pricing .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
}
.pricing-features li.disabled { opacity: 0.38; }
.pricing-features li i.fa-check { color: var(--success); font-size: 0.8rem; flex-shrink: 0; }
.featured-pricing .pricing-features li i.fa-check { color: #86efac; }
.pricing-features li i.fa-times { color: #ef4444; font-size: 0.8rem; flex-shrink: 0; }
.btn-white {
  background: white !important;
  color: var(--primary) !important;
  border: 2px solid white !important;
  font-weight: 700;
}
.btn-white:hover {
  background: transparent !important;
  color: white !important;
}

/* ----- Portfolio ----- */
.portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.portfolio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.portfolio-card:hover img { transform: scale(1.07); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px 22px;
  opacity: 0;
  transition: opacity 0.35s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 5px;
}
.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  margin: 0 0 10px;
}
.portfolio-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 3px 13px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ----- Partners ----- */
.partner-card {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.partner-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}
.partner-card img {
  max-height: 58px;
  max-width: 130px;
  object-fit: contain;
  margin: 0 auto;
  filter: grayscale(50%) opacity(0.8);
  transition: all 0.3s;
}
.partner-card:hover img { filter: grayscale(0%) opacity(1); }
.partner-card p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 12px 0 0;
  font-weight: 500;
}

/* ----- Reviews ----- */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 4px;
  flex-wrap: wrap;
}
.rating-score {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -2px;
}
.rating-stars { color: var(--warning); font-size: 1.3rem; letter-spacing: 2px; }
.rating-count { color: var(--muted); font-size: 0.88rem; }
.review-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: all 0.3s;
  height: 100%;
}
.review-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}
.review-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 2px;
}
.review-stars { color: var(--warning); font-size: 0.88rem; letter-spacing: 1px; }
.review-header small { color: var(--muted); font-size: 0.78rem; display: block; margin-top: 2px; }
.review-text {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

/* ----- Blog ----- */
.blog-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.blog-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
  transform: translateY(-5px);
  border-color: transparent;
}
.blog-img { position: relative; overflow: hidden; }
.blog-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-content { padding: 22px; }
.blog-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-content p {
  font-size: 0.87rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.65;
}
.blog-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.25s;
}
.blog-link:hover { gap: 12px; }

/* ----- Contact ----- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}
.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.contact-info-item a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--primary); }
.contact-form-card {
  background: white;
  border-radius: 18px;
  padding: 38px;
  border: 1.5px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}
.form-control {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 13px 16px;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafbfd;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: white;
  outline: none;
}
.form-control::placeholder { color: #b0b8c9; }
.captcha-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 13px 16px;
}
.captcha-box label { flex: 1; font-size: 0.9rem; color: var(--text); margin: 0; font-weight: 500; }
.captcha-input {
  width: 90px !important;
  padding: 8px 12px !important;
  text-align: center;
}

/* ----- Footer ----- */
.footer {
  background: var(--secondary);
  color: #94a3b8;
  padding: 64px 0 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-brand strong { color: var(--primary); }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 290px;
  color: #94a3b8;
}
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-title {
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links li i { color: var(--primary); font-size: 0.8rem; }
.footer-links a {
  color: #94a3b8;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-host { font-size: 0.78rem; color: #4b5563; margin: 0; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 44px 0 22px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  font-size: 0.84rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { margin: 0; color: #64748b; }
.footer-legal a { color: #64748b; transition: color 0.2s; }
.footer-legal a:hover { color: white; }

/* ----- Buttons ----- */
.btn {
  font-weight: 600;
  border-radius: 9px;
  transition: all 0.22s ease;
}
.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
  padding: 12px 28px;
}
.btn-primary:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}
.btn-outline-primary {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  padding: 12px 28px;
  background: transparent !important;
}
.btn-outline-primary:hover {
  background: var(--primary) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
}
.btn-lg { padding: 14px 32px !important; font-size: 1rem; }

/* ----- Scroll to top ----- */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 999;
  border: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ----- Responsive ----- */
@media (max-width: 991px) {
  .hero-row { min-height: auto; }
  .hero-section { padding: 70px 0 50px; }
  .hero-image-col { margin-top: 40px; }
  .about-img-wrapper img { height: 300px; }
  .about-badge { bottom: -12px; right: -8px; }
  .pricing-card.featured-pricing { transform: none; }
  .pricing-card.featured-pricing:hover { transform: translateY(-6px); }
  .section-padding { padding: 64px 0; }
}

@media (max-width: 767px) {
  .hero-section { padding: 56px 0 40px; }
  .about-badge { bottom: 10px; right: 10px; font-size: 0.8rem; padding: 10px 14px; }
  .contact-form-card { padding: 24px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .topbar-contact a:last-child { display: none; }
}

@media (max-width: 575px) {
  .hero-title { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .section-padding { padding: 50px 0; }
}
