/*
Theme Name: PrimeLink Corporate
Theme URI: https://primelink.com.lk
Author: PrimeLink Holdings
Author URI: https://primelink.com.lk
Description: Modern soft UI corporate WordPress theme for Ceylon PrimeLink Holdings.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: primelink
Tags: corporate, business, engineering, responsive, bootstrap
*/

/* ============================================================
   GOOGLE FONTS + VARIABLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --pl-primary:      #1a56db;
  --pl-primary-dark: #1039a0;
  --pl-primary-soft: #eff4ff;
  --pl-accent:       #f59e0b;
  --pl-accent-soft:  #fffbeb;
  --pl-dark:         #0f172a;
  --pl-navy:         #1e293b;
  --pl-text:         #374151;
  --pl-text-muted:   #6b7280;
  --pl-border:       #e5e7eb;
  --pl-bg:           #f9fafb;
  --pl-white:        #ffffff;
  --pl-success:      #10b981;
  --pl-danger:       #ef4444;

  --pl-shadow-xs:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --pl-shadow-sm:  0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.05);
  --pl-shadow-md:  0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --pl-shadow-lg:  0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.03);
  --pl-shadow-xl:  0 25px 50px -12px rgba(0,0,0,.15);
  --pl-shadow-glow: 0 0 40px rgba(26,86,219,.15);

  --pl-radius-sm:  6px;
  --pl-radius-md:  12px;
  --pl-radius-lg:  20px;
  --pl-radius-xl:  28px;
  --pl-radius-full: 999px;

  --pl-font-head: 'Plus Jakarta Sans', sans-serif;
  --pl-font-body: 'Inter', sans-serif;

  --pl-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Header + logo sizing (keep offset in sync when changing logo height) */
  --pl-logo-height-header: 58px;
  --pl-logo-height-footer: 54px;
  --pl-logo-max-width-header: 280px;
  --pl-logo-max-width-footer: 260px;
  --pl-header-padding-y: 16px;
  --pl-header-padding-y-home: 26px;
  --pl-header-padding-y-scrolled: 14px;
  --pl-header-offset: calc(var(--pl-header-padding-y-home) * 2 + var(--pl-logo-height-header) + 32px);
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--pl-font-body);
  color: var(--pl-text);
  background: var(--pl-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pl-primary); text-decoration: none; transition: color var(--pl-transition); }
a:hover { color: var(--pl-primary-dark); }
ul { list-style: none; padding: 0; margin: 0; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--pl-font-head);
  color: var(--pl-dark);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   BOOTSTRAP OVERRIDES & CUSTOM UTILITIES
   ============================================================ */
.text-primary-pl  { color: var(--pl-primary) !important; }
.text-accent      { color: var(--pl-accent) !important; }
.text-muted-pl    { color: var(--pl-text-muted) !important; }
.bg-soft          { background: var(--pl-bg) !important; }
.bg-primary-soft  { background: var(--pl-primary-soft) !important; }
.bg-dark-pl       { background: var(--pl-dark) !important; }
.bg-navy          { background: var(--pl-navy) !important; }

/* Section spacing */
.section-lg  { padding: 100px 0; }
.section-md  { padding: 70px 0; }
.section-sm  { padding: 50px 0; }

/* Section header */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pl-primary-soft);
  color: var(--pl-primary);
  padding: 6px 16px;
  border-radius: var(--pl-radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--pl-font-head);
  margin-bottom: 1rem;
}
.section-badge.accent {
  background: var(--pl-accent-soft);
  color: #b45309;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--pl-dark);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--pl-text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}
.section-divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--pl-primary), var(--pl-accent));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.section-divider.center { margin: 16px auto 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-pl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--pl-radius-md);
  font-family: var(--pl-font-head);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--pl-transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.btn-pl:hover { transform: translateY(-2px); text-decoration: none; }
.btn-pl:active { transform: translateY(0); }

.btn-primary-pl {
  background: var(--pl-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,86,219,.35);
}
.btn-primary-pl:hover {
  background: var(--pl-primary-dark);
  color: #fff;
  box-shadow: 0 8px 20px rgba(26,86,219,.45);
}
.btn-accent-pl {
  background: var(--pl-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,158,11,.3);
}
.btn-accent-pl:hover {
  background: #d97706;
  color: #fff;
  box-shadow: 0 8px 20px rgba(245,158,11,.4);
}
.btn-outline-pl {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-outline-pl:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.9);
  color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--pl-primary);
  border-color: var(--pl-border);
}
.btn-outline-dark:hover {
  background: var(--pl-primary-soft);
  border-color: var(--pl-primary);
  color: var(--pl-primary);
}
.btn-sm-pl { padding: 8px 18px; font-size: 0.82rem; border-radius: var(--pl-radius-sm); }
.btn-lg-pl { padding: 16px 36px; font-size: 1rem; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--pl-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--pl-radius-sm) var(--pl-radius-sm);
  font-size: 0.85rem;
  z-index: 9999;
}
.skip-link:focus { top: 0; color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: var(--pl-header-padding-y) 0;
  /* Default: solid white for all inner pages */
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07), var(--pl-shadow-sm);
}
/* Transparent ONLY on homepage hero */
body.is-home #site-header {
  background: transparent;
  box-shadow: none;
  padding: var(--pl-header-padding-y-home) 0;
}
body.is-home #site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07), var(--pl-shadow-sm);
  padding: var(--pl-header-padding-y-scrolled) 0;
}
#site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07), var(--pl-shadow-sm);
  padding: var(--pl-header-padding-y-scrolled) 0;
}

.pl-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.pl-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
  max-height: var(--pl-logo-height-header);
}

.pl-brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.pl-brand-logo--header {
  height: var(--pl-logo-height-header);
  max-width: var(--pl-logo-max-width-header);
}
.pl-brand-logo--footer {
  height: var(--pl-logo-height-footer);
  max-width: var(--pl-logo-max-width-footer);
}
.pl-footer-logo {
  display: inline-block;
  line-height: 0;
}

/* Never recolor the logo image — show Canva colors as-is (blue text) */
body.is-home #site-header:not(.scrolled) .pl-brand-logo,
#site-header .pl-brand-logo,
#site-footer .pl-brand-logo {
  filter: none !important;
  opacity: 1 !important;
}

/* ── Hybrid logo mark (SVG badge + HTML text) ──────────────── */
.pl-logo-mark {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.pl-logo-mark--small { gap: 9px; }

.pl-logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.pl-logo-brand-name {
  display: block;
  font-family: var(--pl-font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pl-dark);
  letter-spacing: -0.03em;
  transition: color var(--pl-transition);
}
.pl-logo-mark--small .pl-logo-brand-name { font-size: 0.9rem; }

.pl-logo-sub-name {
  display: block;
  font-family: var(--pl-font-head);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--pl-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  transition: color var(--pl-transition);
}
.pl-logo-mark--small .pl-logo-sub-name { font-size: 0.55rem; letter-spacing: 1px; }

/* Footer variant — white text on dark background */
.pl-logo-mark--footer .pl-logo-brand-name { color: #ffffff; }
.pl-logo-mark--footer .pl-logo-sub-name   { color: rgba(255,255,255,0.5); }

/* Homepage transparent header — white wordmark, badge gradient unchanged */
body.is-home #site-header:not(.scrolled) .pl-logo-brand-name { color: #ffffff; }
body.is-home #site-header:not(.scrolled) .pl-logo-sub-name   { color: rgba(255,255,255,0.65); }

/* Homepage transparent state — hamburger white */
body.is-home #site-header:not(.scrolled) .pl-hamburger span { background: #fff; }

/* Nav links */
.pl-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Default: dark text for solid header (inner pages) */
.pl-nav-links a {
  display: block;
  padding: 8px 14px;
  font-family: var(--pl-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pl-text);
  border-radius: var(--pl-radius-sm);
  transition: all var(--pl-transition);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.pl-nav-links a:hover,
.pl-nav-links a.active {
  color: var(--pl-primary);
  background: var(--pl-primary-soft);
}
/* Homepage transparent state — white text */
body.is-home #site-header:not(.scrolled) .pl-nav-links a {
  color: rgba(255,255,255,.85);
}
body.is-home #site-header:not(.scrolled) .pl-nav-links a:hover,
body.is-home #site-header:not(.scrolled) .pl-nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}

/* Nav CTA */
.pl-nav-cta {
  padding: 9px 22px;
  background: var(--pl-accent);
  color: #fff !important;
  border-radius: var(--pl-radius-md);
  font-family: var(--pl-font-head);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--pl-transition);
  box-shadow: 0 3px 10px rgba(245,158,11,.3);
  text-decoration: none;
  white-space: nowrap;
}
.pl-nav-cta:hover {
  background: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245,158,11,.4);
  color: #fff !important;
}

/* Hamburger */
.pl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1060;
}
.pl-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pl-dark);
  border-radius: 2px;
  transition: all var(--pl-transition);
}
/* White on homepage hero */
body.is-home #site-header:not(.scrolled) .pl-hamburger span { background: #fff; }
.pl-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pl-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pl-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.pl-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--pl-dark);
  z-index: 1040;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2rem;
}
.pl-mobile-nav.open { display: flex; }
.pl-mobile-nav a {
  font-family: var(--pl-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 10px 30px;
  border-radius: var(--pl-radius-md);
  transition: all var(--pl-transition);
  width: 100%;
  text-align: center;
  max-width: 320px;
}
.pl-mobile-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.pl-mobile-nav .pl-nav-cta {
  margin-top: 1rem;
  padding: 14px 40px;
  font-size: 1rem;
  display: block;
  text-align: center;
  max-width: 320px;
  width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.pl-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1a56db 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--pl-header-offset) 0 80px;
}

/* Geometric decoration */
.pl-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pl-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pl-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.pl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 7px 18px;
  border-radius: var(--pl-radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--pl-font-head);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.pl-hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--pl-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.pl-hero h1 {
  font-size: clamp(2.1rem, 5.25vw, 3.65rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.pl-hero h1 .highlight {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pl-hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.pl-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Stats */
.pl-hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
}
.pl-hero-stat {
  padding: 0 2.5rem 0 0;
  margin-right: 2.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.pl-hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.pl-hero-stat-num {
  display: block;
  font-family: var(--pl-font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pl-hero-stat-num sup { font-size: 1.2rem; }
.pl-hero-stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero visual side */
.pl-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.pl-hero-main-img {
  width: 100%;
  border-radius: var(--pl-radius-xl);
  box-shadow: var(--pl-shadow-xl), 0 0 60px rgba(26,86,219,.3);
  object-fit: cover;
  height: 420px;
  display: block;
}
.pl-hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-radius: var(--pl-radius-lg);
  padding: 16px 20px;
  box-shadow: var(--pl-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.pl-hero-float-card.top-left {
  top: -20px;
  left: -30px;
}
.pl-hero-float-card.bottom-right {
  bottom: -20px;
  right: -30px;
}
.pl-hero-float-icon {
  width: 42px; height: 42px;
  border-radius: var(--pl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pl-hero-float-icon.blue { background: var(--pl-primary-soft); }
.pl-hero-float-icon.amber { background: var(--pl-accent-soft); }
.pl-hero-float-icon.blue i { color: var(--pl-primary); }
.pl-hero-float-icon.amber i { color: var(--pl-accent); }
.pl-hero-float-card strong { display: block; font-size: 1rem; font-weight: 700; color: var(--pl-dark); line-height: 1; font-family: var(--pl-font-head); }
.pl-hero-float-card span { font-size: 0.75rem; color: var(--pl-text-muted); font-weight: 500; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.pl-stats-strip {
  background: var(--pl-primary);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.pl-stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pl-primary-dark), var(--pl-primary));
}
.pl-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.pl-stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background var(--pl-transition);
}
.pl-stat-item:last-child { border-right: none; }
.pl-stat-item:hover { background: rgba(255,255,255,.05); }
.pl-stat-num {
  font-family: var(--pl-font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pl-stat-num .plus { color: var(--pl-accent); }
.pl-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
  display: block;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.pl-service-card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--pl-border);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pl-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pl-primary), #60a5fa);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.pl-service-card:hover {
  border-color: rgba(26,86,219,.2);
  box-shadow: var(--pl-shadow-lg), var(--pl-shadow-glow);
  transform: translateY(-6px);
}
.pl-service-card:hover::after { transform: scaleX(1); }

.pl-service-icon {
  width: 56px; height: 56px;
  border-radius: var(--pl-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform var(--pl-transition);
}
.pl-service-card:hover .pl-service-icon { transform: scale(1.08); }
.pl-service-icon.blue   { background: var(--pl-primary-soft); }
.pl-service-icon.amber  { background: var(--pl-accent-soft); }
.pl-service-icon.green  { background: #ecfdf5; }
.pl-service-icon.purple { background: #f5f3ff; }
.pl-service-icon.pink   { background: #fdf2f8; }
.pl-service-icon.cyan   { background: #ecfeff; }
.pl-service-icon.blue i   { color: var(--pl-primary); }
.pl-service-icon.amber i  { color: var(--pl-accent); }
.pl-service-icon.green i  { color: #10b981; }
.pl-service-icon.purple i { color: #7c3aed; }
.pl-service-icon.pink i   { color: #db2777; }
.pl-service-icon.cyan i   { color: #0891b2; }
.pl-service-icon i { font-size: 1.4rem; }

.pl-service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.pl-service-card p {
  font-size: 0.9rem;
  color: var(--pl-text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}
.pl-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pl-primary);
  font-family: var(--pl-font-head);
  transition: gap var(--pl-transition);
  margin-top: auto;
}
.pl-service-link:hover { gap: 10px; color: var(--pl-primary); }
.pl-service-link i { font-size: 0.75rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.pl-about-img-wrap {
  position: relative;
}
.pl-about-img {
  width: 100%;
  border-radius: var(--pl-radius-xl);
  object-fit: cover;
  height: 500px;
  box-shadow: var(--pl-shadow-xl);
}
.pl-about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--pl-primary);
  color: #fff;
  border-radius: var(--pl-radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--pl-shadow-lg);
  min-width: 130px;
}
.pl-about-badge strong {
  display: block;
  font-family: var(--pl-font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pl-about-badge span {
  font-size: 0.72rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.pl-check-list { margin: 0; padding: 0; list-style: none; }
.pl-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--pl-border);
  font-size: 0.92rem;
  color: var(--pl-text);
}
.pl-check-list li:last-child { border-bottom: none; }
.pl-check-list .check-icon {
  width: 22px; height: 22px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pl-check-list .check-icon i {
  font-size: 0.65rem;
  color: var(--pl-success);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.pl-why-card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--pl-border);
  height: 100%;
  transition: all var(--pl-transition);
}
.pl-why-card:hover {
  border-color: rgba(26,86,219,.2);
  box-shadow: var(--pl-shadow-md);
  transform: translateY(-3px);
}
.pl-why-icon {
  width: 48px; height: 48px;
  border-radius: var(--pl-radius-md);
  background: var(--pl-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pl-why-icon i { color: var(--pl-primary); font-size: 1.2rem; }
.pl-why-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pl-why-card p {
  font-size: 0.86rem;
  color: var(--pl-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   QUOTE / CONTACT FORM
   ============================================================ */
.pl-quote-section {
  background: linear-gradient(135deg, var(--pl-dark) 0%, var(--pl-navy) 100%);
  position: relative;
  overflow: hidden;
}
.pl-quote-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,86,219,.2) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.pl-form-card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-xl);
  padding: 40px;
  box-shadow: var(--pl-shadow-xl);
}
.pl-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pl-form-card .subtitle {
  font-size: 0.88rem;
  color: var(--pl-text-muted);
  margin-bottom: 28px;
}

/* Form inputs */
.pl-form-group { margin-bottom: 20px; }
.pl-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pl-dark);
  margin-bottom: 6px;
  font-family: var(--pl-font-head);
  letter-spacing: -0.01em;
}
.pl-form-group input,
.pl-form-group select,
.pl-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--pl-bg);
  border: 1.5px solid var(--pl-border);
  border-radius: var(--pl-radius-md);
  font-family: var(--pl-font-body);
  font-size: 0.9rem;
  color: var(--pl-text);
  transition: all var(--pl-transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.pl-form-group input::placeholder,
.pl-form-group textarea::placeholder { color: #9ca3af; }
.pl-form-group input:focus,
.pl-form-group select:focus,
.pl-form-group textarea:focus {
  border-color: var(--pl-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26,86,219,.08);
}
.pl-form-group textarea { resize: vertical; min-height: 110px; }

.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: var(--pl-radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 12px;
}
.form-msg.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-msg.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Info side */
.pl-quote-info h2 {
  font-size: clamp(1.8rem,4vw,2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.pl-quote-info .lead {
  color: rgba(255,255,255,.65);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.pl-contact-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pl-radius-md);
  padding: 14px 18px;
  margin-bottom: 12px;
  transition: background var(--pl-transition);
  text-decoration: none;
}
.pl-contact-pill:hover { background: rgba(255,255,255,.12); }
.pl-contact-pill-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: var(--pl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pl-contact-pill-icon i { color: var(--pl-accent); font-size: 1rem; }
.pl-contact-pill strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--pl-font-head);
}
.pl-contact-pill span { color: rgba(255,255,255,.55); font-size: 0.8rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.pl-review-card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-lg);
  padding: 28px;
  border: 1.5px solid var(--pl-border);
  height: 100%;
  transition: all var(--pl-transition);
  position: relative;
}
.pl-review-card:hover {
  box-shadow: var(--pl-shadow-md);
  border-color: rgba(26,86,219,.15);
  transform: translateY(-3px);
}
.pl-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.pl-review-text {
  font-size: 0.9rem;
  color: var(--pl-text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.pl-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pl-reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pl-primary), #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--pl-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.pl-reviewer-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pl-dark);
  display: block;
  font-family: var(--pl-font-head);
  letter-spacing: -0.01em;
}
.pl-reviewer-title { font-size: 0.77rem; color: var(--pl-text-muted); }

/* Quote mark decoration */
.pl-review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--pl-primary);
  opacity: 0.07;
  font-family: Georgia, serif;
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.pl-page-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1a56db 100%);
  padding: calc(var(--pl-header-padding-y) * 2 + var(--pl-logo-height-header) + 32px) 0 60px;
  position: relative;
  overflow: hidden;
}
.pl-page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.pl-page-banner-content { position: relative; z-index: 1; }
.pl-page-banner h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.pl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.pl-breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--pl-transition); }
.pl-breadcrumb a:hover { color: var(--pl-accent); }
.pl-breadcrumb .sep { color: rgba(255,255,255,.3); }
.pl-breadcrumb .current { color: var(--pl-accent); font-weight: 500; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pl-price-card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-xl);
  padding: 36px 32px;
  border: 2px solid var(--pl-border);
  height: 100%;
  transition: all var(--pl-transition);
  position: relative;
  overflow: hidden;
}
.pl-price-card.featured {
  border-color: var(--pl-primary);
  box-shadow: var(--pl-shadow-lg), var(--pl-shadow-glow);
}
.pl-price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px; right: -28px;
  background: var(--pl-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--pl-font-head);
}
.pl-price-card:not(.featured):hover {
  border-color: rgba(26,86,219,.3);
  box-shadow: var(--pl-shadow-md);
  transform: translateY(-4px);
}
.pl-price-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pl-text-muted);
  margin-bottom: 8px;
  font-family: var(--pl-font-head);
}
.pl-price-amount {
  font-family: var(--pl-font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pl-dark);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.pl-price-amount sup { font-size: 1rem; vertical-align: super; }
.pl-price-desc { font-size: 0.82rem; color: var(--pl-text-muted); margin-bottom: 24px; }
.pl-price-divider { height: 1px; background: var(--pl-border); margin-bottom: 20px; }
.pl-price-features { margin-bottom: 28px; }
.pl-price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  padding: 7px 0;
  color: var(--pl-text);
}
.pl-price-features li i { color: var(--pl-success); font-size: 0.75rem; }

/* ============================================================
   PROJECT / PORTFOLIO CARDS
   ============================================================ */
.pl-project-card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--pl-border);
  transition: all var(--pl-transition);
  height: 100%;
}
.pl-project-card:hover {
  border-color: rgba(26,86,219,.2);
  box-shadow: var(--pl-shadow-lg);
  transform: translateY(-4px);
}
.pl-project-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.pl-project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pl-project-card:hover .pl-project-img-wrap img { transform: scale(1.05); }
.pl-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.6), transparent);
  opacity: 0;
  transition: opacity var(--pl-transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.pl-project-card:hover .pl-project-overlay { opacity: 1; }
.pl-project-tag {
  background: var(--pl-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--pl-radius-full);
  font-family: var(--pl-font-head);
  letter-spacing: 0.5px;
}
.pl-project-body { padding: 20px; }
.pl-project-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pl-project-body p { font-size: 0.84rem; color: var(--pl-text-muted); margin-bottom: 12px; line-height: 1.6; }
.pl-project-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.77rem;
  color: var(--pl-text-muted);
}
.pl-project-meta i { color: var(--pl-primary); font-size: 0.7rem; }

/* ============================================================
   PRODUCT CARDS (IT Services)
   ============================================================ */
.pl-product-card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--pl-border);
  transition: all var(--pl-transition);
  height: 100%;
}
.pl-product-card:hover {
  box-shadow: var(--pl-shadow-md);
  border-color: rgba(26,86,219,.2);
  transform: translateY(-3px);
}
.pl-product-img {
  background: var(--pl-bg);
  padding: 24px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--pl-border);
}
.pl-product-img img {
  max-height: 130px;
  width: auto;
  object-fit: contain;
}
.pl-product-body { padding: 20px; }
.pl-brand-chip {
  display: inline-block;
  background: var(--pl-primary-soft);
  color: var(--pl-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--pl-radius-full);
  font-family: var(--pl-font-head);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.pl-product-body h5 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pl-product-specs { margin-bottom: 14px; }
.pl-product-specs li {
  font-size: 0.8rem;
  color: var(--pl-text-muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pl-product-specs li i { color: var(--pl-primary); font-size: 0.65rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.pl-contact-info-card {
  background: linear-gradient(135deg, var(--pl-dark), var(--pl-navy));
  border-radius: var(--pl-radius-xl);
  padding: 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pl-contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,86,219,.25), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.pl-contact-info-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; font-weight: 800; letter-spacing: -0.02em; }
.pl-contact-info-card > p { color: rgba(255,255,255,.55); font-size: 0.88rem; margin-bottom: 2rem; }

.pl-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.pl-contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border-radius: var(--pl-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pl-contact-item-icon i { color: var(--pl-accent); font-size: 1rem; }
.pl-contact-item strong { display: block; color: #fff; font-size: 0.85rem; margin-bottom: 3px; font-family: var(--pl-font-head); }
.pl-contact-item a,
.pl-contact-item span { color: rgba(255,255,255,.6); font-size: 0.88rem; display: block; }
.pl-contact-item a:hover { color: var(--pl-accent); }

.pl-hours-list { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; margin-top: 4px; }
.pl-hours-list h5 { color: #fff; font-size: 0.9rem; margin-bottom: 12px; font-weight: 700; }
.pl-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 0.83rem;
}
.pl-hours-row span:first-child { color: rgba(255,255,255,.55); }
.pl-hours-row span:last-child { color: var(--pl-accent); font-weight: 600; }

.pl-map-wrap {
  border-radius: var(--pl-radius-xl);
  overflow: hidden;
  box-shadow: var(--pl-shadow-lg);
  height: 420px;
  margin-top: 40px;
}
.pl-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   OUTLETS PAGE
   ============================================================ */
.pl-outlet-card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-xl);
  overflow: hidden;
  box-shadow: var(--pl-shadow-md);
  border: 1.5px solid var(--pl-border);
}
.pl-outlet-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.pl-outlet-body { padding: 32px; }
.pl-district-chip {
  display: inline-block;
  background: var(--pl-bg);
  border: 1px dashed var(--pl-border);
  color: var(--pl-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--pl-radius-full);
  opacity: 0.65;
  font-family: var(--pl-font-head);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #080e1a;
  padding: 72px 0 0;
}
.pl-footer-logo strong {
  display: block;
  font-family: var(--pl-font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.pl-footer-logo span {
  font-size: 0.7rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.pl-footer-desc {
  color: rgba(255,255,255,.45);
  font-size: 0.87rem;
  line-height: 1.8;
  margin: 14px 0 20px;
  max-width: 280px;
}
.pl-social-links { display: flex; gap: 8px; }
.pl-social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: var(--pl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--pl-transition);
  border: 1px solid rgba(255,255,255,.06);
}
.pl-social-links a:hover { background: var(--pl-primary); border-color: var(--pl-primary); transform: translateY(-2px); }
.pl-social-links i { color: rgba(255,255,255,.6); font-size: 0.85rem; }
.pl-social-links a:hover i { color: #fff; }

.pl-footer-col h6 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: var(--pl-font-head);
  position: relative;
  padding-bottom: 12px;
}
.pl-footer-col h6::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--pl-primary);
  border-radius: 2px;
}
.pl-footer-links { list-style: none; padding: 0; margin: 0; }
.pl-footer-links li { margin-bottom: 8px; }
.pl-footer-links a {
  color: rgba(255,255,255,.45);
  font-size: 0.86rem;
  transition: all var(--pl-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pl-footer-links a:hover { color: rgba(255,255,255,.85); padding-left: 4px; }

.pl-footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.pl-footer-contact-item i {
  color: var(--pl-primary);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.pl-footer-contact-item a,
.pl-footer-contact-item span {
  color: rgba(255,255,255,.45);
  font-size: 0.84rem;
  line-height: 1.6;
  transition: color var(--pl-transition);
}
.pl-footer-contact-item a:hover { color: var(--pl-accent); }

.pl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  margin-top: 48px;
}
.pl-footer-bottom p { color: rgba(255,255,255,.3); font-size: 0.8rem; margin: 0; }
.pl-footer-bottom a { color: rgba(255,255,255,.35); font-size: 0.8rem; transition: color var(--pl-transition); }
.pl-footer-bottom a:hover { color: var(--pl-accent); }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.pl-contact-strip { background: #0d1526; padding: 28px 0; }
.pl-contact-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.pl-contact-strip-icon {
  width: 44px; height: 44px;
  background: rgba(26,86,219,.2);
  border-radius: var(--pl-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pl-contact-strip-icon i { color: #60a5fa; font-size: 1rem; }
.pl-contact-strip-item strong { display: block; color: rgba(255,255,255,.8); font-size: 0.82rem; margin-bottom: 2px; font-family: var(--pl-font-head); }
.pl-contact-strip-item a,
.pl-contact-strip-item span { color: rgba(255,255,255,.45); font-size: 0.85rem; }
.pl-contact-strip-item a:hover { color: var(--pl-accent); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.pl-scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--pl-primary);
  color: #fff;
  border: none;
  border-radius: var(--pl-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--pl-transition);
  z-index: 900;
  box-shadow: var(--pl-shadow-md);
}
.pl-scroll-top.visible { opacity: 1; visibility: visible; }
.pl-scroll-top:hover { background: var(--pl-primary-dark); transform: translateY(-3px); box-shadow: var(--pl-shadow-lg); }
.pl-scroll-top i { font-size: 0.9rem; }

/* ============================================================
   TECH TAG CHIPS
   ============================================================ */
.pl-tag {
  display: inline-block;
  background: var(--pl-bg);
  border: 1px solid var(--pl-border);
  color: var(--pl-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--pl-radius-full);
  font-family: var(--pl-font-head);
  letter-spacing: 0.3px;
  margin: 3px 2px;
}
.pl-tag.primary { background: var(--pl-primary-soft); color: var(--pl-primary); border-color: transparent; }

/* Alert/Notice */
.pl-alert {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--pl-radius-md);
  border-left: 3px solid;
}
.pl-alert.info { background: var(--pl-primary-soft); border-color: var(--pl-primary); }
.pl-alert.warning { background: var(--pl-accent-soft); border-color: var(--pl-accent); }
.pl-alert i { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.pl-alert.info i { color: var(--pl-primary); }
.pl-alert.warning i { color: #b45309; }
.pl-alert p { margin: 0; font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 991.98px) {
  .section-lg { padding: 70px 0; }
  .section-md { padding: 50px 0; }
  .pl-hero { padding: var(--pl-header-offset) 0 70px; min-height: auto; }
  .pl-hero h1 { font-size: clamp(1.85rem, 4.5vw, 2.75rem); }
  .pl-hero-main-img { height: 320px; }
  .pl-hero-float-card.top-left { top: -10px; left: -10px; }
  .pl-hero-float-card.bottom-right { bottom: -10px; right: -10px; }
  .pl-stats-grid { grid-template-columns: repeat(2,1fr); }
  .pl-stat-item:nth-child(2) { border-right: none; }
  .pl-about-badge { right: 0; bottom: -16px; }
  .pl-form-card { padding: 28px 24px; }
  .pl-contact-info-card { padding: 28px 24px; }
  .pl-footer-col { margin-bottom: 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
  .section-lg { padding: 55px 0; }
  .section-md { padding: 40px 0; }
  .section-sm { padding: 30px 0; }

  /* Header */
  .pl-nav-links { display: none; }
  .pl-nav-cta { display: none; }
  .pl-hamburger { display: flex; }

  /* Header + hero — smaller logo on mobile */
  :root {
    --pl-logo-height-header: 50px;
    --pl-logo-height-footer: 46px;
    --pl-logo-max-width-header: 230px;
    --pl-logo-max-width-footer: 220px;
    --pl-header-padding-y: 14px;
    --pl-header-padding-y-home: 20px;
    --pl-header-offset: calc(var(--pl-header-padding-y-home) * 2 + var(--pl-logo-height-header) + 24px);
  }

  /* Hero */
  .pl-hero { padding: var(--pl-header-offset) 0 60px; }
  .pl-hero-visual { margin-top: 3rem; }
  .pl-hero-main-img { height: 260px; }
  .pl-hero-float-card { padding: 12px 14px; min-width: 140px; }
  .pl-hero-float-card strong { font-size: 0.85rem; }
  .pl-hero-float-card.top-left { top: -8px; left: -8px; }
  .pl-hero-float-card.bottom-right { bottom: -8px; right: -8px; }
  .pl-hero-stats { gap: 0; }
  .pl-hero-stat { padding: 0 1.5rem 0 0; margin-right: 1.5rem; }
  .pl-hero-stat-num { font-size: 1.8rem; }
  .pl-hero-actions { flex-direction: column; }
  .pl-hero-actions .btn-pl { width: 100%; justify-content: center; }

  /* Stats */
  .pl-stats-grid { grid-template-columns: 1fr 1fr; }
  .pl-stat-num { font-size: 2rem; }

  /* About */
  .pl-about-img { height: 280px; }
  .pl-about-badge { position: static; margin-top: 1rem; display: inline-block; }

  /* Footer */
  .pl-footer-bottom { text-align: center; }
  .pl-footer-bottom div { justify-content: center; margin-top: 8px; }

  /* Contact strip */
  .pl-contact-strip-item { padding: 8px 0; }

  /* Map */
  .pl-map-wrap { height: 280px; }

  /* Form */
  .pl-form-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .pl-stats-grid { grid-template-columns: 1fr; }
  .pl-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .pl-hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.12); }
  .pl-price-card.featured::before { display: none; }
  .section-title { font-size: 1.6rem; }
}

/* ============================================================
   SEARCH FORM (search.php)
   ============================================================ */
.search-form {
  display: flex;
  gap: 0;
  max-width: 580px;
}
.search-form .search-field {
  flex: 1;
  padding: 12px 16px;
  background: var(--pl-bg);
  border: 1.5px solid var(--pl-border);
  border-right: none;
  border-radius: var(--pl-radius-md) 0 0 var(--pl-radius-md);
  font-family: var(--pl-font-body);
  font-size: 0.9rem;
  color: var(--pl-text);
  outline: none;
  transition: border-color var(--pl-transition), box-shadow var(--pl-transition);
  -webkit-appearance: none;
  appearance: none;
}
.search-form .search-field:focus {
  border-color: var(--pl-primary);
  background: var(--pl-white);
  box-shadow: 0 0 0 4px rgba(26,86,219,.08);
}
.search-form .search-submit {
  padding: 12px 24px;
  background: var(--pl-primary);
  color: #fff;
  border: 1.5px solid var(--pl-primary);
  border-radius: 0 var(--pl-radius-md) var(--pl-radius-md) 0;
  font-family: var(--pl-font-head);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--pl-transition);
  white-space: nowrap;
}
.search-form .search-submit:hover {
  background: var(--pl-primary-dark);
  border-color: var(--pl-primary-dark);
}
@media (max-width: 480px) {
  .search-form { flex-direction: column; }
  .search-form .search-field  { border-right: 1.5px solid var(--pl-border); border-bottom: none; border-radius: var(--pl-radius-md) var(--pl-radius-md) 0 0; }
  .search-form .search-submit { border-radius: 0 0 var(--pl-radius-md) var(--pl-radius-md); }
}

/* ============================================================
   PAGINATION (search.php, index.php, archive)
   ============================================================ */
.pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--pl-radius-sm);
  font-family: var(--pl-font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pl-text-muted);
  background: var(--pl-bg);
  border: 1.5px solid var(--pl-border);
  text-decoration: none;
  transition: all var(--pl-transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--pl-primary);
  border-color: var(--pl-primary);
  color: #fff;
}
.pagination .page-numbers.dots { border: none; background: none; color: var(--pl-text-muted); }

/* ============================================================
   ENTRY CONTENT (default WP pages)
   ============================================================ */
.entry-content h2, .entry-content h3 { margin: 1.5rem 0 0.75rem; }
.entry-content p { margin-bottom: 1rem; color: var(--pl-text); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content img { border-radius: var(--pl-radius-md); margin: 1rem 0; }
.entry-content a { color: var(--pl-primary); }

/* ============================================================
   LAZY FADE
   ============================================================ */
img.lazy { opacity: 0; transition: opacity 0.5s ease; }
img.lazy.loaded { opacity: 1; }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #site-header, #site-footer, .pl-scroll-top, .pl-hero-actions { display: none !important; }
  .pl-hero { min-height: auto; padding: 2rem 0; }
  body { color: #000; }
}

/* ============================================================
   ADDITIONAL COMPONENT STYLES
   ============================================================ */

/* District chip (outlets page) */
.pl-district-chip {
  display: inline-block;
  background: var(--pl-bg);
  border: 1.5px dashed var(--pl-border);
  color: var(--pl-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--pl-radius-full);
  font-family: var(--pl-font-head);
  opacity: 0.7;
}

/* Light-background contact item (outlets page) */
.pl-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.pl-contact-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--pl-radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Ensure hero body class transparent works on all browsers */
body.is-home #site-header:not(.scrolled) .pl-nav-cta {
  background: var(--pl-accent);
  color: #fff !important;
}

@media (max-width: 767.98px) {
  .pl-page-banner {
    padding-top: var(--pl-header-offset);
    padding-bottom: 36px;
  }
}

/* Bootstrap container padding fix */
.container { padding-left: 1.25rem; padding-right: 1.25rem; }

/* Ensure images inside lazy don't break layout before load */
img.lazy:not(.loaded) { background: var(--pl-bg); min-height: 40px; }

/* Entry content links */
.entry-content a { color: var(--pl-primary); }
.entry-content h2, .entry-content h3 { margin: 1.5rem 0 0.75rem; }
.entry-content p { color: var(--pl-text); margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content img { border-radius: var(--pl-radius-md); margin: 1rem 0; max-width: 100%; }

/* Fix Bootstrap overriding pl- button styles */
.btn-pl { box-sizing: border-box; }

/* Smooth section transitions */
section { position: relative; }
