/* ================================================================
   AVON Writing Solutions — Enterprise Stylesheet
   Primary #0B5ED7 | Secondary #1F2937 | Accent #F59E0B | BG #F8FAFC
   ================================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary:        #0B5ED7;
  --primary-dark:   #0948b3;
  --primary-deeper: #073d99;
  --primary-light:  #EEF4FF;
  --secondary:      #1F2937;
  --accent:         #F59E0B;
  --accent-dark:    #d97706;
  --success:        #10B981;
  --bg:             #F8FAFC;
  --bg-alt:         #EFF6FF;
  --white:          #ffffff;
  --text:           #374151;
  --text-muted:     #6B7280;
  --border:         #E5E7EB;
  --border-light:   #F3F4F6;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(11,94,215,.12);
  --shadow-lg:  0 12px 40px rgba(11,94,215,.18);
  --shadow-xl:  0 24px 60px rgba(11,94,215,.22);

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: all .28s ease;
  --font:       'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); color: var(--secondary); line-height: 1.25; font-weight: 700; }
a     { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img   { max-width: 100%; height: auto; display: block; }

.section-padding    { padding: 96px 0; }
.section-padding-sm { padding: 64px 0; }

/* ================================================================
   PRELOADER
   ================================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner  { text-align: center; }
.preloader-brand  {
  display: block;
  font-family: var(--font); font-size: 2.2rem; font-weight: 900;
  color: var(--primary); letter-spacing: 3px; margin-bottom: 18px;
}
.preloader-track  {
  width: 160px; height: 3px;
  background: var(--primary-light);
  border-radius: 99px; overflow: hidden; margin: 0 auto;
}
.preloader-fill   {
  height: 100%; width: 40%; background: var(--primary);
  border-radius: 99px; animation: pLoad 1.1s infinite ease-in-out;
}
@keyframes pLoad { 0%{transform:translateX(-100%)} 100%{transform:translateX(400%)} }

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
  background: var(--secondary);
  padding: 8px 0;
  font-size: .8rem;
}
.topbar-link  { color: rgba(255,255,255,.75); transition: var(--transition); }
.topbar-link:hover { color: var(--accent); }
.topbar-sep   { color: rgba(255,255,255,.2); }
.topbar-text  { color: rgba(255,255,255,.6); }
.topbar-social-link {
  color: rgba(255,255,255,.65); font-size: .78rem;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.topbar-social-link:hover { background: var(--primary); color: var(--white); }

/* ================================================================
   NAVBAR
   ================================================================ */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: all .35s ease;
  position: sticky; top: 0; z-index: 1030;
}
#mainNav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.10); }
#mainNav .container { min-height: 72px; display: flex; align-items: center; }

/* Brand */
.brand-wrap       { display: flex; align-items: center; gap: 11px; }
.brand-icon-box   {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.15rem; flex-shrink: 0;
}
.brand-text-box   { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name       { font-family: var(--font); font-size: 1.35rem; font-weight: 900; color: var(--primary); letter-spacing: 1px; }
.brand-tagline    { font-size: .62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; font-weight: 500; }

/* Nav Links */
.navbar-nav .nav-link {
  font-family: var(--font); font-size: .875rem; font-weight: 600;
  color: var(--secondary) !important; padding: 10px 14px !important;
  border-radius: 8px; position: relative; transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; background: var(--primary-light); }

/* Toggler */
.navbar-toggler  { border: none; background: none; padding: 8px; }
.toggler-line    {
  display: block; width: 24px; height: 2px;
  background: var(--secondary); border-radius: 2px;
  margin: 5px 0; transition: var(--transition);
}
.navbar-toggler:focus { box-shadow: none; }

/* Nav Buttons */
.btn-wa-nav {
  background: #25D366; border: 2px solid #25D366;
  color: var(--white) !important; font-family: var(--font); font-weight: 600;
  font-size: .82rem; padding: 8px 16px; border-radius: 8px;
  transition: var(--transition);
}
.btn-wa-nav:hover { background: #1eb857; border-color: #1eb857; transform: translateY(-1px); }

.btn-primary-nav {
  background: var(--primary); border: 2px solid var(--primary);
  color: var(--white) !important; font-family: var(--font); font-weight: 600;
  font-size: .82rem; padding: 8px 18px; border-radius: 8px;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary-nav:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(11,94,215,.35); }

/* ---- Mega Menu ---- */
.mega-dropdown { position: static; }
.mega-menu-panel {
  position: absolute; left: 0; right: 0; top: 100%;
  width: 100%; border: none; border-radius: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  border-top: 3px solid var(--primary);
  padding: 0;
}
.mega-menu-inner { padding: 28px 0 24px; }
.mega-col { padding: 0 20px 0 0; }
.mega-heading {
  font-family: var(--font); font-size: .72rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.mega-link {
  display: block; padding: 6px 0; font-size: .85rem;
  color: var(--text); font-weight: 500; transition: var(--transition);
}
.mega-link:hover { color: var(--primary); padding-left: 8px; }
.mega-cta-box { background: var(--bg); border-radius: var(--radius); padding: 16px; }

/* ================================================================
   GLOBAL BUTTONS
   ================================================================ */
.btn-primary {
  background: var(--primary); border-color: var(--primary); color: var(--white);
  font-family: var(--font); font-weight: 600; border-radius: var(--radius);
  padding: 12px 28px; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(11,94,215,.28);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,94,215,.4); color: var(--white); }

.btn-outline-primary {
  border-color: var(--primary); color: var(--primary);
  font-family: var(--font); font-weight: 600; border-radius: var(--radius);
  padding: 12px 28px; transition: var(--transition); border-width: 2px;
}
.btn-outline-primary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-accent {
  background: var(--accent); border-color: var(--accent); color: var(--secondary);
  font-family: var(--font); font-weight: 700; border-radius: var(--radius);
  padding: 12px 28px; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(245,158,11,.28);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.38); color: var(--secondary); }

.btn-white {
  background: var(--white); border-color: rgba(255,255,255,.4); color: var(--primary);
  font-family: var(--font); font-weight: 700; border-radius: var(--radius);
  padding: 12px 28px; transition: var(--transition); border-width: 2px;
}
.btn-white:hover { background: var(--primary-light); color: var(--primary-dark); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366; border-color: #25D366; color: var(--white);
  font-family: var(--font); font-weight: 600; border-radius: var(--radius);
  padding: 12px 28px; transition: var(--transition);
}
.btn-whatsapp:hover { background: #1eb857; border-color: #1eb857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); color: var(--white); }

/* ================================================================
   SECTION LABELS & TITLES
   ================================================================ */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light); color: var(--primary);
  font-family: var(--font); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 6px 14px; border-radius: 99px; margin-bottom: 14px;
}
.section-title  { font-size: 2.25rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.section-title span { color: var(--primary); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; max-width: 600px; }
.section-divider {
  width: 48px; height: 4px; border-radius: 99px; margin: 14px 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.section-divider.center { margin: 14px auto; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  background: linear-gradient(135deg, #05286e 0%, #0B5ED7 55%, #1a7ef7 100%);
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 110px 0 90px;
}

/* Geometric shapes */
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hs1 { width: 600px; height: 600px; background: rgba(255,255,255,.04); top: -180px; right: -120px; }
.hs2 { width: 300px; height: 300px; background: rgba(245,158,11,.08); bottom: -80px; left: -60px; }
.hs3 { width: 180px; height: 180px; background: rgba(255,255,255,.06); top: 45%; right: 22%; }
.hs4 {
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.08), transparent);
  top: 0; right: 30%; border-radius: 0;
}

/* Content */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: .8rem; font-weight: 600;
  padding: 7px 16px; border-radius: 99px; margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.hero-h1 {
  font-size: 3.1rem; font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 22px;
  letter-spacing: -.5px;
}
.hero-h1 .hi { color: var(--accent); }

.hero-sub  {
  font-size: 1.1rem; color: rgba(255,255,255,.82);
  margin-bottom: 38px; line-height: 1.75; max-width: 530px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-features {
  display: flex; flex-wrap: wrap; gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-feat {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.82); font-size: .85rem; font-weight: 500;
}
.hero-feat i { color: var(--accent); font-size: .9rem; }

/* Visual side */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-svg-container { width: 100%; max-width: 500px; position: relative; z-index: 2; filter: drop-shadow(0 24px 48px rgba(0,0,0,.25)); }

/* Float cards */
.hero-float-card {
  position: absolute; background: var(--white);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  display: flex; align-items: center; gap: 12px;
  z-index: 3; transition: transform .35s ease, box-shadow .35s ease;
}
.hero-float-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.22); }
.hfc1 { top: 12%; left: -8%; }
.hfc2 { bottom: 22%; right: -10%; }
.hfc3 { bottom: 48%; left: -14%; }

.hfc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.hfc-icon.blue   { background: var(--primary-light); color: var(--primary); }
.hfc-icon.gold   { background: #fef3c7; color: var(--accent-dark); }
.hfc-icon.green  { background: #d1fae5; color: #059669; }
.hfc-text strong { display: block; font-family: var(--font); font-size: .86rem; color: var(--secondary); }
.hfc-text span   { font-size: .76rem; color: var(--text-muted); }

/* ================================================================
   TRUSTED BY STRIP
   ================================================================ */
.trusted-strip {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.trusted-label {
  font-family: var(--font); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted);
  margin-bottom: 28px; text-align: center;
}
.trusted-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.trusted-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 11px 20px;
  font-family: var(--font); font-size: .84rem; font-weight: 600;
  color: var(--secondary); transition: var(--transition); cursor: default;
}
.trusted-pill i { color: var(--primary); font-size: 1.05rem; }
.trusted-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); transform: translateY(-3px); box-shadow: var(--shadow); }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section { background: var(--bg); padding: 96px 0; }
.about-img-box { position: relative; }
.about-img-box img { border-radius: var(--radius-xl); width: 100%; object-fit: cover; height: 480px; }
.about-exp-badge {
  position: absolute; bottom: 28px; right: -20px;
  background: var(--primary); color: var(--white);
  border-radius: var(--radius-lg); padding: 20px 26px;
  text-align: center; box-shadow: var(--shadow-xl);
}
.about-exp-badge .exp-num { font-family: var(--font); font-size: 2.4rem; font-weight: 900; line-height: 1; display: block; }
.about-exp-badge .exp-lbl { font-size: .75rem; opacity: .85; display: block; line-height: 1.3; margin-top: 3px; }

.about-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.ah-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 18px; border-left: 3px solid var(--primary);
  box-shadow: var(--shadow-xs); transition: var(--transition);
}
.ah-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.ah-item i    { color: var(--primary); font-size: 1.15rem; margin-top: 3px; flex-shrink: 0; }
.ah-item h6   { font-size: .9rem; font-weight: 700; margin-bottom: 2px; color: var(--secondary); }
.ah-item p    { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.services-section { background: var(--white); padding: 96px 0; }
.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 26px; height: 100%;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: transform .35s ease; transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--primary-light); }

.service-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); transform: scale(1.08); }
.service-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.service-card p  { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.65; }
.service-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: .84rem; font-weight: 600;
  color: var(--primary); text-decoration: none; transition: var(--transition);
}
.service-card .read-more i { transition: transform .3s; }
.service-card .read-more:hover i { transform: translateX(4px); }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-section { background: linear-gradient(160deg, #f0f7ff 0%, var(--bg) 60%); padding: 96px 0; }
.why-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; height: 100%; transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--primary-light); }
.why-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 18px; transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.why-card h5 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.why-card p  { font-size: .83rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ================================================================
   PROCESS SECTION
   ================================================================ */
.process-section { background: var(--secondary); padding: 96px 0; }
.process-section .section-title    { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,.68); }
.process-section .section-tag      { background: rgba(255,255,255,.1); color: var(--accent); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0; position: relative; margin-top: 52px;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 32px; left: 7%; right: 7%;
  height: 1px; background: rgba(255,255,255,.12); z-index: 0;
}
.process-step { text-align: center; padding: 0 6px; position: relative; z-index: 1; }
.ps-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: var(--white); font-family: var(--font); font-size: 1.05rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.process-step:hover .ps-num { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 6px rgba(11,94,215,.25); }
.ps-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; margin: 0 auto 12px;
}
.ps-title { font-size: .84rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.ps-desc  { font-size: .75rem; color: rgba(255,255,255,.52); line-height: 1.5; margin: 0; }

/* ================================================================
   INDUSTRIES
   ================================================================ */
.industries-section { background: var(--bg); padding: 96px 0; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 44px; }
.industry-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 99px; padding: 10px 20px;
  font-family: var(--font); font-size: .87rem; font-weight: 500;
  color: var(--secondary); transition: var(--transition); cursor: default;
}
.industry-tag i { color: var(--primary); font-size: .95rem; }
.industry-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.industry-tag:hover i { color: var(--white); }

/* ================================================================
   STATS
   ================================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font); font-size: 3rem; font-weight: 900;
  color: var(--white); line-height: 1; display: block;
}
.stat-suffix { color: var(--accent); }
.stat-label  { font-size: .9rem; color: rgba(255,255,255,.75); font-weight: 500; margin-top: 6px; display: block; }
.stat-sep    { width: 1px; background: rgba(255,255,255,.18); align-self: stretch; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { background: var(--white); padding: 96px 0; }
.testimonial-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 34px 30px; height: 100%;
  transition: var(--transition); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 18px; right: 24px;
  font-size: 4rem; color: var(--primary-light); font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); background: var(--white); }
.t-stars { color: var(--accent); font-size: .88rem; margin-bottom: 16px; }
.t-text  { font-size: .9rem; color: var(--text); line-height: 1.78; margin-bottom: 22px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 800; font-size: .95rem;
}
.t-name { font-family: var(--font); font-size: .9rem; font-weight: 700; color: var(--secondary); display: block; }
.t-role { font-size: .78rem; color: var(--text-muted); }

/* Carousel controls */
.t-carousel .carousel-control-prev,
.t-carousel .carousel-control-next {
  width: 44px; height: 44px; top: auto; bottom: -56px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 50%; opacity: 1; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.t-carousel .carousel-control-prev { left: calc(50% - 52px); }
.t-carousel .carousel-control-next { right: calc(50% - 52px); left: auto; }
.t-carousel .carousel-control-prev:hover,
.t-carousel .carousel-control-next:hover { background: var(--primary); border-color: var(--primary); }
.t-carousel .carousel-control-prev-icon,
.t-carousel .carousel-control-next-icon { filter: invert(1); width: 14px; height: 14px; }
.t-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.t-carousel .carousel-control-next:hover .carousel-control-next-icon { filter: none; }

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-section { background: var(--bg); padding: 96px 0; }
.faq-accordion .accordion-item {
  border: 1.5px solid var(--border); border-radius: var(--radius) !important;
  margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-xs);
}
.faq-accordion .accordion-button {
  font-family: var(--font); font-size: .92rem; font-weight: 600;
  color: var(--secondary); background: var(--white);
  padding: 18px 22px; border-radius: var(--radius) !important;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: var(--primary-light); box-shadow: none; }
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230B5ED7' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-body {
  font-size: .88rem; color: var(--text); line-height: 1.8;
  background: var(--white); padding: 4px 22px 18px;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, #05286e 0%, var(--primary) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,158,11,.18), transparent);
}
.cta-section .section-title    { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255,255,255,.78); margin: 0 auto 38px; }
.cta-section .section-tag      { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.22); }
.cta-checks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 38px;
}
.cta-check {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.82); font-size: .86rem; font-weight: 500;
}
.cta-check i { color: var(--accent); }

/* ================================================================
   PAGE HERO (Inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, #05286e 0%, var(--primary) 100%);
  padding: 80px 0 68px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10S0 15.523 0 10s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-title    { font-size: 2.5rem; font-weight: 900; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.page-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 18px; max-width: 560px; }
.breadcrumb-nav .breadcrumb       { background: transparent; padding: 0; margin: 0; font-size: .83rem; }
.breadcrumb-nav .breadcrumb-item a { color: rgba(255,255,255,.68); }
.breadcrumb-nav .breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-nav .breadcrumb-item.active       { color: rgba(255,255,255,.9); }
.breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ================================================================
   SERVICE DETAIL PAGES
   ================================================================ */
.service-detail-section { background: var(--bg); padding: 80px 0; }
.service-detail-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  color: var(--secondary); margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}
.sidebar-links    { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin-bottom: 3px; }
.sidebar-links a  {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 8px; font-size: .87rem;
  color: var(--text); font-weight: 500; transition: var(--transition);
}
.sidebar-links a:hover, .sidebar-links a.active {
  background: var(--primary-light); color: var(--primary); padding-left: 16px;
}
.sidebar-links a i { color: var(--primary); font-size: .72rem; }

.feature-list    { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--text);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.benefit-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px; border: 1.5px solid var(--border); height: 100%;
  transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--primary-light); }
.benefit-card .bi   { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 14px; }
.benefit-card h5    { font-size: .92rem; font-weight: 700; margin-bottom: 6px; color: var(--secondary); }
.benefit-card p     { font-size: .84rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-section { background: var(--bg); padding: 96px 0; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-xl); padding: 38px 30px;
  height: 100%; transition: var(--transition); position: relative; overflow: hidden;
}
.pricing-card.popular { border-color: var(--primary); box-shadow: var(--shadow-xl); transform: scale(1.04); }
.pricing-card:hover   { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--primary); }
.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  position: absolute; top: 22px; right: -30px;
  background: var(--accent); color: var(--secondary);
  font-family: var(--font); font-size: .7rem; font-weight: 800;
  padding: 6px 48px; transform: rotate(45deg); letter-spacing: .5px;
}
.pricing-plan  { font-family: var(--font); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 12px; }
.pricing-price { font-family: var(--font); margin-bottom: 6px; }
.p-currency    { font-size: 1.2rem; color: var(--text-muted); vertical-align: super; }
.p-amount      { font-size: 3rem; font-weight: 900; color: var(--secondary); line-height: 1; }
.p-period      { font-size: .82rem; color: var(--text-muted); }
.pricing-desc  { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.55; }
.pricing-feats { list-style: none; padding: 0; margin: 0 0 26px; }
.pricing-feats li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: .87rem; color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.pricing-feats li:last-child { border: none; }
.pricing-feats li i.fa-check { color: var(--primary); }
.pricing-feats li i.fa-times { color: #d1d5db; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section { background: var(--bg); padding: 80px 0; }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-info-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.ci-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.ci-item:last-child { border: none; }
.ci-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--primary-light);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-item h6 { font-size: .78rem; text-transform: uppercase; letter-spacing: .7px; color: var(--text-muted); margin-bottom: 4px; font-family: var(--font); }
.ci-item p, .ci-item a { font-size: .9rem; color: var(--text); margin: 0; font-weight: 500; transition: var(--transition); }
.ci-item a:hover { color: var(--primary); }
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; padding: 11px 15px; color: var(--secondary);
  background: var(--bg); transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,94,215,.1); background: var(--white);
}
.form-label { font-size: .84rem; font-weight: 600; color: var(--secondary); margin-bottom: 6px; font-family: var(--font); }
.map-box {
  background: var(--primary-light); border-radius: var(--radius-lg);
  border: 2px dashed rgba(11,94,215,.3); height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--primary); margin-top: 20px;
}
.map-box i { font-size: 2rem; }
.map-box span { font-size: .9rem; font-weight: 500; }
.map-box small { font-size: .75rem; opacity: .7; }

/* About page specific */
.value-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  text-align: center; border: 1.5px solid var(--border); height: 100%;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--primary-light); }
.value-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.value-card h5 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.value-card p  { font-size: .84rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

.milestone-timeline { position: relative; padding-left: 32px; }
.milestone-timeline::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px; background: var(--primary-light);
}
.milestone-item { position: relative; padding-bottom: 30px; padding-left: 26px; }
.milestone-item::before {
  content: ''; position: absolute; left: -22px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.milestone-year  { font-family: var(--font); font-size: .76rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.milestone-title { font-size: .95rem; font-weight: 700; color: var(--secondary); margin-bottom: 5px; }
.milestone-desc  { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Legal pages */
.legal-content {
  background: var(--white); border-radius: var(--radius-xl); padding: 48px;
  box-shadow: var(--shadow-sm); font-size: .93rem; line-height: 1.82; color: var(--text);
}
.legal-content h2 {
  font-size: 1.3rem; margin: 32px 0 12px; color: var(--secondary);
  padding-bottom: 8px; border-bottom: 2px solid var(--primary-light);
}
.legal-content h3 { font-size: 1.05rem; margin: 20px 0 10px; color: var(--secondary); }
.legal-content p  { margin-bottom: 14px; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }

/* Alert messages */
.alert-ok  { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; border-radius: var(--radius); padding: 13px 18px; font-size: .9rem; display: flex; align-items: center; gap: 10px; }
.alert-err { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; border-radius: var(--radius); padding: 13px 18px; font-size: .9rem; display: flex; align-items: center; gap: 10px; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: #111827; color: rgba(255,255,255,.78); }

.footer-cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 52px 0;
}
.footer-cta-eyebrow {
  font-family: var(--font); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--accent); margin-bottom: 6px;
}
.footer-cta-headline {
  font-size: 1.55rem; font-weight: 700; color: var(--white); margin: 0;
}

.footer-body { padding: 72px 0 40px; }

.footer-brand-col { }
.footer-brand-link {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; margin-bottom: 18px;
}
.footer-brand-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.footer-brand-name  { display: block; font-family: var(--font); font-size: 1.25rem; font-weight: 900; color: var(--white); letter-spacing: 1px; line-height: 1.15; }
.footer-brand-sub   { display: block; font-size: .62rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .6px; }
.footer-about       { font-size: .85rem; color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 18px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.65); }
.footer-contact-list li i { color: var(--primary); width: 14px; }
.footer-contact-list a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 8px; }
.fsoc {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  font-size: .84rem; transition: var(--transition);
}
.fsoc:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-widget-title {
  font-family: var(--font); font-size: .92rem; font-weight: 700;
  color: var(--white); margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a {
  font-size: .84rem; color: rgba(255,255,255,.58); transition: var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.footer-links a::before { content: '›'; color: var(--primary); font-size: 1rem; line-height: 1; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-newsletter-text { font-size: .84rem; color: rgba(255,255,255,.58); margin-bottom: 14px; line-height: 1.65; }
.footer-newsletter-form .form-control {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15);
  color: var(--white); font-size: .84rem; border-radius: 8px 0 0 8px; padding: 10px 14px;
}
.footer-newsletter-form .form-control::placeholder { color: rgba(255,255,255,.38); }
.footer-newsletter-form .form-control:focus { background: rgba(255,255,255,.12); border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,94,215,.2); color: var(--white); }
.footer-newsletter-form .btn { border-radius: 0 8px 8px 0; padding: 10px 16px; }
.footer-trust-badges { display: flex; flex-direction: column; gap: 7px; }
.ftb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.55); }
.ftb i { color: var(--accent); }

.footer-bottom { background: rgba(0,0,0,.35); padding: 18px 0; border-top: 1px solid rgba(255,255,255,.07); }
.footer-copy   { font-size: .81rem; color: rgba(255,255,255,.42); margin: 0; }
.footer-legal  { display: flex; align-items: center; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.footer-legal a    { font-size: .81rem; color: rgba(255,255,255,.42); transition: var(--transition); }
.footer-legal a:hover { color: var(--accent); }
.lsep { color: rgba(255,255,255,.2); }

/* ================================================================
   BACK TO TOP / WHATSAPP
   ================================================================ */
.back-to-top {
  position: fixed; bottom: 88px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  opacity: 0; visibility: hidden; cursor: pointer;
  transition: var(--transition); z-index: 999; box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover   { background: var(--primary-dark); transform: translateY(-4px); }

.wa-float {
  position: fixed; bottom: 24px; right: 22px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; z-index: 999; text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,.45); transition: var(--transition);
}
.wa-float:hover { background: #1eb857; color: var(--white); transform: scale(1.1); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-up    { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-left  { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.fade-right { opacity: 0; transform: translateX(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-primary { color: var(--primary) !important; }
.text-accent  { color: var(--accent) !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.shadow-card { box-shadow: var(--shadow) !important; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px;
}
