/* ================================================================
   SUPER ELEKTRIK — Custom Styles
   Colors: Navy #1B2C5E | Red #A82020 | Light #F3F5FC
   ================================================================ */

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--se-bg, #F3F5FC); }
::-webkit-scrollbar-thumb { background: var(--se-blue, #2E4D8F); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--se-navy, #1B2C5E); }
* { scrollbar-width: thin; scrollbar-color: #2E4D8F #F3F5FC; }

/* Fonts loaded via <link> in each page's <head> for performance; @import kept as fallback for service pages */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700;800&family=Outfit:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --se-navy:     #1B2C5E;
  --se-blue:     #2E4D8F;
  --se-red:      #A82020;
  --se-red-dark: #7A1515;
  --se-gold:     #C8A84B;
  --se-bg:       #F3F5FC;
  --se-bg-alt:   #EEF1FA;
  /* Legacy aliases — kept for service page compatibility */
  --red:         #A82020;
  --red-dark:    #7A1515;
  --blue:        #1B2C5E;
  --blue-mid:    #2E4D8F;
  --white:       #F3F5FC;
  --gray-bg:     #EEF1FA;
  --text:        #1d2a4a;
  --muted:       #6b7499;
  --border:      rgba(27,44,94,0.12);
}

/* ---- Reset overrides ---- */
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  padding-top: 0 !important;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

/* ================================================================
   TOP INFO BAR
   ================================================================ */
.se-topbar {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 0;
}
.se-topbar a { color: #fff; text-decoration: none; }
.se-topbar a:hover { color: #FFE0E0; }
.se-topbar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 22px;
  align-items: center;
}
.se-topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.se-topbar-item .ti { font-size: 14px; }

/* ================================================================
   NAVBAR
   ================================================================ */
.se-navbar {
  background: #fff !important;
  border-bottom: 3px solid var(--blue);
  padding: 10px 0 !important;
  position: sticky !important;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.se-navbar .navbar-brand {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.1;
  padding: 0;
}
.se-navbar .navbar-brand small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: 'Roboto', sans-serif;
}
.logo-super  { color: var(--red); }
.logo-elektrik { color: var(--blue); }

.se-navbar .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 12px !important;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.se-navbar .nav-link:hover { color: var(--blue) !important; background: #EEF3FB; }
.se-navbar .nav-link.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 4px;
  font-weight: 700;
}
.se-navbar .nav-link.nav-cta:hover { background: var(--red-dark) !important; color: #fff !important; }

/* ================================================================
   HERO
   ================================================================ */
.se-hero {
  background: var(--blue);
  background-image: linear-gradient(135deg, #081a45 0%, #0D2B6E 55%, #1565C0 100%);
  color: #fff;
  padding: 65px 0 55px;
  position: relative;
  overflow: hidden;
}
.se-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 50px;
  background: var(--gray-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-title {
  font-size: 46px;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.hero-title span { color: #FFD700; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-price-badge strong { color: #FFD700; font-size: 18px; }
.hero-price-badge .badge-note { font-size: 12px; color: rgba(255,255,255,0.7); display: block; margin-top: 3px; }
.hero-phones {
  font-size: 30px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  margin-bottom: 28px;
}
.hero-phones a { color: #fff; text-decoration: none; transition: color 0.2s; }
.hero-phones a:hover { color: #FFD700; }
.hero-phones .sep { color: rgba(255,255,255,0.3); margin: 0 12px; font-weight: 300; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-call {
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
  border: none;
}
.btn-hero-call:hover { background: var(--red-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; text-decoration: none; }

.hero-badge-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hbc-years { font-size: 52px; font-weight: 700; font-family: 'Roboto Condensed', sans-serif; color: #fff; line-height: 1; }
.hbc-label { font-size: 12px; color: rgba(255,255,255,0.85); letter-spacing: 1.5px; text-transform: uppercase; text-align: center; line-height: 1.4; }

/* ================================================================
   TRUST STRIP
   ================================================================ */
.se-trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
}
.trust-icon {
  width: 46px;
  height: 46px;
  background: #EEF3FB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  color: var(--blue);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
}
.trust-text span { font-size: 12px; color: var(--muted); }

/* ================================================================
   SECTIONS — BASE
   ================================================================ */
.se-section {
  padding: 60px 0;
}
.se-section-gray { background: var(--gray-bg); }
.se-section-title {
  font-size: 34px;
  color: var(--blue);
  margin-bottom: 6px;
}
.se-section-title span { color: var(--red); }
.se-section-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 38px;
}

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.se-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: 5px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--text);
  height: 100%;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.se-service-card:hover {
  border-top-color: var(--red);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  text-decoration: none;
  color: var(--text);
  transform: translateY(-3px);
}
.svc-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.svc-body {
  padding: 18px 20px 20px;
}
.svc-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.svc-body h3 {
  font-size: 17px;
  color: var(--blue);
  margin-bottom: 8px;
}
.svc-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.svc-arrow {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
}

/* ================================================================
   PRICING SECTION
   ================================================================ */
.se-pricing {
  background: var(--blue);
  background-image: linear-gradient(135deg, #081a45 0%, #0D2B6E 100%);
  padding: 65px 0;
  color: #fff;
}
.se-pricing .se-section-title { color: #fff; }
.se-price-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: background 0.2s;
}
.se-price-card:hover { background: rgba(255,255,255,0.11); }
.se-price-card.featured {
  background: var(--red);
  border-color: var(--red);
  position: relative;
}
.pc-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pc-emoji { font-size: 36px; margin-bottom: 12px; display: block; }
.pc-amount {
  font-size: 44px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.pc-amount small { font-size: 18px; font-weight: 400; opacity: 0.8; }
.pc-label {
  font-size: 17px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 10px 0 6px;
  color: #fff;
}
.pc-note { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.pc-note strong { color: #FFD700; }
.pricing-tip {
  margin-top: 36px;
  background: rgba(255,255,255,0.07);
  border-left: 4px solid #FFD700;
  padding: 14px 20px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}
.pricing-tip strong { color: #FFD700; }

/* ================================================================
   OFFERS SECTION
   ================================================================ */
.se-offer-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.se-offer-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.14); }
.oc-img-wrap { position: relative; }
.oc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.oc-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2E7D32;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.oc-status.sold {
  background: var(--muted);
}
.oc-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.oc-body h4 {
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 6px;
}
.oc-desc { font-size: 13px; color: var(--muted); margin: 0 0 14px; flex: 1; }
.oc-price {
  font-size: 26px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}
.oc-btn {
  display: block;
  text-align: center;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.oc-btn:hover { background: var(--red); color: #fff; text-decoration: none; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-highlights { margin: 22px 0 0; }
.ah-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.ah-item:last-child { border-bottom: none; }
.ah-item strong { color: var(--red); margin-right: 8px; }

/* ================================================================
   FAQ
   ================================================================ */
.se-faq-item {
  border: 1px solid var(--border);
  border-radius: 5px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  background: #fff;
  padding: 16px 20px;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.faq-q:hover { background: #f0f5ff; }
.faq-q.active { background: var(--blue); color: #fff; }
.faq-arrow {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s;
  color: var(--red);
  line-height: 1;
}
.faq-q.active .faq-arrow { color: #FFD700; transform: rotate(45deg); }
.faq-a {
  background: #fafbfd;
  font-size: 14px;
  color: #444;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}
.faq-a.open { max-height: 400px; padding: 16px 20px; }

/* faq-item = alias for se-faq-item (used on newer brand/product pages) */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 5px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-chevron {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s;
  color: var(--muted);
}
.faq-q.active .faq-chevron { transform: rotate(180deg); color: var(--se-red); }

/* FAQ section/list wrappers */
.se-faq-list { display: flex; flex-direction: column; }
.se-faq-section { }

/* On service pages, faq-item should look like se-faq-item (flat list, not rounded cards) */
.se-service-page .faq-item {
  border: none;
  border-radius: 0;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(27,44,94,0.1);
  margin-bottom: 0;
  transition: border-left-color 0.2s;
}
.se-service-page .faq-item:first-of-type { border-top: 1px solid rgba(27,44,94,0.1); }
.se-service-page .faq-item.faq-open { border-left-color: var(--se-red); }

/* ================================================================
   ERROR CODE LIST (brand pages)
   ================================================================ */
.se-error-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.ec-row {
  display: flex;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.ec-code {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--se-red);
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: 0.5px;
}
.ec-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.55;
}
.ec-text strong { color: var(--se-navy); font-weight: 700; }
@media (max-width: 575px) {
  .ec-row { flex-direction: column; gap: 4px; }
  .ec-code { min-width: 0; }
}

/* Ordered-list format for error codes (Gorenje and future brand-specific pages) */
.se-error-ol {
  padding-left: 26px;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
}
.se-error-ol li {
  padding: 10px 0 10px 6px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  font-size: 0.94rem;
}
.se-error-ol li:last-child { border-bottom: none; }
.se-error-ol li::marker {
  color: var(--muted);
  font-weight: 600;
}
.se-error-ol li strong {
  color: var(--se-red);
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.3px;
}

/* ================================================================
   GOOGLE REVIEWS SECTION
   ================================================================ */
.se-reviews {
  background: var(--blue-mid);
  background-image: linear-gradient(135deg, #0D2B6E 0%, #1565C0 100%);
  color: #fff;
  padding: 55px 0;
  text-align: center;
}
.se-reviews .stars { font-size: 38px; color: #FFD700; letter-spacing: 4px; margin-bottom: 14px; }
.se-reviews h2 { color: #fff; font-size: 36px; margin-bottom: 10px; }
.se-reviews p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 28px; }
.btn-reviews {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  padding: 13px 32px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Roboto Condensed', sans-serif;
}
.btn-reviews:hover { background: #FFD700; color: #000; text-decoration: none; }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.se-contact { padding: 65px 0 0; }
.contact-block { margin-bottom: 22px; }
.cb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue);
  margin-bottom: 5px;
  font-family: 'Roboto Condensed', sans-serif;
}
.cb-phone {
  display: block;
  font-size: 26px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--red);
  text-decoration: none;
  line-height: 1.3;
}
.cb-phone:hover { color: var(--red-dark); text-decoration: none; }
.cb-text { font-size: 15px; color: var(--text); line-height: 1.55; }
.se-input {
  border: 1.5px solid var(--border) !important;
  border-radius: 5px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  color: var(--text) !important;
  background: #fff !important;
  transition: border-color 0.2s !important;
}
.se-input:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(13,43,110,0.1) !important;
  outline: none !important;
}
.se-submit {
  background: var(--red);
  color: #fff;
  padding: 13px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.se-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ================================================================
   FOOTER
   ================================================================ */
.se-footer {
  background: #081a45;
  color: rgba(255,255,255,0.65);
  padding: 36px 0 24px;
  margin-top: 0;
}
.se-footer .footer-brand {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.se-footer .footer-tagline { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.se-footer .footer-links { display: flex; gap: 6px 18px; flex-wrap: wrap; margin-top: 6px; }
.se-footer .footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.se-footer .footer-links a:hover { color: #fff; }
.se-footer .footer-phone {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
  text-decoration: none;
}
.se-footer .footer-phone:hover { color: #FFD700; }
.se-footer hr { border-color: rgba(255,255,255,0.1); margin: 22px 0 16px; }
.se-footer .footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); margin: 0; }

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 22px rgba(0,0,0,0.32); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* Mobile call bar (fixed bottom for phones) */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8999;
  padding: 10px 12px;
  background: var(--blue);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  gap: 10px;
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
  color: #fff;
}
.mobile-call-bar a.call { background: var(--red); }
.mobile-call-bar a.call:hover { background: var(--red-dark); }
.mobile-call-bar a.schedule { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); }

/* ================================================================
   SERVICE / INNER PAGES
   ================================================================ */

/* Page banner (smaller than hero) */
.se-page-banner {
  background: var(--blue);
  background-image: linear-gradient(135deg, #081a45 0%, #0D2B6E 100%);
  color: #fff;
  padding: 38px 0 32px;
}
.se-page-banner h1 { font-size: 34px; color: #fff; margin-bottom: 8px; }
.se-page-banner .banner-sub { color: rgba(255,255,255,0.72); font-size: 15px; margin: 0; }

/* Breadcrumb */
.se-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.se-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.se-breadcrumb a:hover { color: #fff; }
.se-breadcrumb .sep { margin: 0 6px; }

/* Article body */
.article-content h2 {
  font-size: 21px;
  color: var(--blue);
  margin: 30px 0 10px;
  border-left: 4px solid var(--red);
  padding-left: 12px;
}
.article-content h3, .article-content h4 {
  font-size: 17px;
  color: var(--blue);
  margin: 20px 0 8px;
}
.article-content p { color: #444; line-height: 1.72; margin-bottom: 14px; }
.article-content ul { padding-left: 20px; margin-bottom: 14px; }
.article-content ul li { margin-bottom: 6px; color: #444; }

/* CTA callout inside article */
.article-cta {
  background: var(--gray-bg);
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin: 28px 0;
}
.article-cta h4 { font-size: 18px; color: var(--blue); margin-bottom: 8px; }
.article-cta p { font-size: 14px; color: #555; margin-bottom: 12px; }

/* Sidebar widgets */
.se-sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}
.sw-header {
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sw-header.red { background: var(--red); }
.sw-body { padding: 16px 18px; }
.sw-phone {
  display: block;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--red);
  text-decoration: none;
  margin-bottom: 4px;
}
.sw-phone:hover { color: var(--red-dark); text-decoration: none; }
.sw-btn {
  display: block;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.2s;
}
.sw-btn:hover { background: var(--red-dark); color: #fff; text-decoration: none; }
.se-other-services { list-style: none; padding: 0; margin: 0; }
.se-other-services li { border-bottom: 1px solid var(--border); }
.se-other-services li:last-child { border-bottom: none; }
.se-other-services a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.se-other-services a:hover, .se-other-services a.active {
  background: #EEF3FB;
  color: var(--blue);
  text-decoration: none;
}
.sw-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: #444;
}
.sw-trust-row:last-child { border-bottom: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .se-navbar .navbar-nav { padding: 12px 0; border-top: 1px solid var(--border); margin-top: 10px; }
  .se-navbar .nav-link { border-radius: 0; border-bottom: 1px solid #f0f0f0; }
  .se-navbar .nav-link.nav-cta { margin-top: 8px; border-radius: 4px !important; text-align: center; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 30px; }
  .hero-phones { font-size: 22px; }
  .hero-sub { font-size: 15px; }
  .se-section { padding: 44px 0; }
  .se-section-title { font-size: 26px; }
  .trust-strip-row > [class*=col] { border-bottom: 1px solid var(--border); }
  .trust-strip-row > [class*=col]:last-child { border-bottom: none; }
  .se-pricing .row > [class*=col]:first-child .se-price-card { margin-bottom: 16px; }
  .pc-amount { font-size: 36px; }
  .mobile-call-bar { display: flex; }
  .whatsapp-float { bottom: 80px; }
  body { padding-bottom: 70px; }
  .se-topbar { display: none; }
}
@media (max-width: 400px) {
  .hero-phones .sep { display: none; }
  .hero-phones { display: flex; flex-direction: column; gap: 4px; }
}

/* ================================================================
   SERVICE PAGE v2 — MOBILE-FIRST
   ================================================================ */
.se-sp-hero {
  background: var(--blue);
  background-image: linear-gradient(135deg, #081a45 0%, #0D2B6E 100%);
  color: #fff;
  padding: 36px 0 32px;
}
.se-sp-hero h1 { font-size: 30px; color: #fff; margin: 10px 0 10px; line-height: 1.15; }
.sp-hero-sub { font-size: 14px; color: rgba(255,255,255,0.72); margin-bottom: 20px; }
.sp-hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.btn-sp-call {
  background: var(--red);
  color: #fff;
  padding: 13px 20px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-sp-call:hover { background: var(--red-dark); color: #fff; text-decoration: none; }
.btn-sp-schedule {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-sp-schedule:hover { background: rgba(255,255,255,0.22); color: #fff; text-decoration: none; }
.sp-trust-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.sp-trust-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Fault / Problem cards */
.se-fault-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 16px 10px 14px;
  text-align: center;
  margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.se-fault-card:hover { border-color: var(--blue-mid); box-shadow: 0 4px 14px rgba(13,43,110,0.1); }
.sfc-icon { font-size: 28px; margin-bottom: 7px; display: block; line-height: 1; }
.sfc-title { font-size: 13px; font-weight: 700; color: var(--blue); font-family: 'Roboto Condensed', sans-serif; line-height: 1.2; }
.sfc-desc { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.3; }

/* Brand pills */
.se-brand-strip { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 20px; }
.se-brand-pill {
  background: #EEF3FB;
  color: var(--blue);
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  white-space: nowrap;
}

/* Related services grid */
.se-related-section { background: var(--gray-bg); padding: 32px 0; border-top: 1px solid var(--border); }
.se-related-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.se-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.se-related-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 13px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.se-related-item:hover { background: #EEF3FB; border-color: var(--blue); color: var(--blue); text-decoration: none; }
.se-related-item.active { background: var(--blue); color: #fff; border-color: var(--blue); }

@media (min-width: 576px) { .se-related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) {
  .se-related-grid { grid-template-columns: repeat(6, 1fr); }
  .se-sp-hero h1 { font-size: 38px; }
}
@media (max-width: 575px) {
  .se-sp-hero { padding: 24px 0 22px; }
  .se-sp-hero h1 { font-size: 24px; }
  .sp-hero-ctas { flex-direction: column; }
  .btn-sp-call { font-size: 20px; justify-content: center; }
  .btn-sp-schedule { justify-content: center; }
}

/* ================================================================
   VIBER FLOAT BUTTON
   ================================================================ */
.viber-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #7360F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 4px 18px rgba(115,96,242,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.viber-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(115,96,242,0.55);
  text-decoration: none;
}
.viber-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 767px) { .viber-float { bottom: 80px; } }

/* ================================================================
   SERVICE PAGE — Agreed palette: Navy + Red (no charcoal black)
   Applied via <body class="se-service-page">
   ================================================================ */
.se-service-page {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  background: var(--se-bg);
}
.se-service-page h1,
.se-service-page h2,
.se-service-page h3,
.se-service-page h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.3px;
}

/* Navbar */
.se-service-page .se-navbar .navbar-brand { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.se-service-page .se-navbar .nav-link { font-family: 'Plus Jakarta Sans', sans-serif; }
.se-service-page .logo-super { color: var(--se-red); }

/* Topbar — navy, not black */
.se-service-page .se-topbar { background: var(--se-navy); }

/* Breadcrumb */
.se-service-page .se-breadcrumb { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; }

/* Hero — navy gradient */
.se-service-page .se-sp-hero {
  background: var(--se-navy);
  background-image: linear-gradient(135deg, #0e1c3a 0%, var(--se-navy) 55%, var(--se-blue) 100%);
  border-bottom: 3px solid var(--se-red);
  padding: 42px 0 36px;
}
.se-service-page .se-sp-hero h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.se-service-page .sp-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.se-service-page .btn-sp-call {
  background: var(--se-red);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border-radius: 6px;
}
.se-service-page .btn-sp-call:hover { background: var(--se-red-dark); color: #fff; }
.se-service-page .btn-sp-schedule { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; }

/* ================================================================
   SERVICE PAGE HERO — SIDE IMAGE SUPPORT
   ================================================================ */
.se-sp-hero .container,
.se-hero:has(.sp-hero-text) .container {
  display: flex;
  align-items: center;
  gap: 36px;
}
.sp-hero-text {
  flex: 1 1 55%;
  min-width: 0;
}
.sp-hero-img-wrap {
  flex: 0 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp-hero-img {
  max-width: 100%;
  height: auto;
  max-height: 290px;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .se-sp-hero .container,
  .se-hero:has(.sp-hero-text) .container {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .sp-hero-text { flex: 1 1 100%; }
  .sp-hero-img-wrap { flex: 1 1 100%; width: 100%; }
  .sp-hero-img { max-height: 180px; width: 100%; }
}
.se-service-page .sp-trust-chip {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
}

/* Section titles */
.se-service-page .se-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--se-navy);
  letter-spacing: -0.4px;
}
.se-service-page .se-section-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--muted);
  font-size: 14px;
}

/* Fault cards — white with navy accent */
.se-service-page .se-fault-card {
  background: oklch(98% 0.005 255deg);
  border: 1.5px solid rgba(27,44,94,0.12);
  border-radius: 10px;
  padding: 20px 10px 17px;
  color: var(--text);
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s;
}
.se-service-page .se-fault-card:hover {
  border-color: var(--se-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27,44,94,0.14);
  color: var(--text);
  text-decoration: none;
}
.se-service-page .sfc-icon { margin-bottom: 8px; color: var(--se-navy); }
.se-service-page .sfc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--se-navy);
  line-height: 1.3;
}
.se-service-page .sfc-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.35;
}

/* Article */
.se-service-page .article-content { font-family: 'Plus Jakarta Sans', sans-serif; }
.se-service-page .article-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--se-navy);
  border-left-color: var(--se-red);
  letter-spacing: -0.2px;
}
.se-service-page .article-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--se-navy);
}
.se-service-page .article-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.78;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.se-service-page .article-content ul li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* Brand pills */
.se-service-page .se-brand-pill {
  background: var(--se-bg-alt);
  color: var(--se-navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  border-radius: 4px;
  padding: 4px 11px;
}

/* Article CTA */
.se-service-page .article-cta {
  background: var(--se-bg-alt);
  border-left-color: var(--se-red);
  border-radius: 0 8px 8px 0;
}
.se-service-page .article-cta h4 { color: var(--se-navy); }
.se-service-page .article-cta p { color: #555; }

/* FAQ */
.se-service-page .se-faq-item {
  border: none;
  border-radius: 0;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(27,44,94,0.1);
  margin-bottom: 0;
  transition: border-left-color 0.2s;
}
.se-service-page .se-faq-item:first-of-type { border-top: 1px solid rgba(27,44,94,0.1); }
.se-service-page .se-faq-item.faq-open { border-left-color: var(--se-red); }
.se-service-page .faq-q {
  background: transparent;
  padding: 18px 20px 18px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--se-navy);
}
.se-service-page .faq-q:hover { background: var(--se-bg); }
.se-service-page .faq-q.active { background: transparent; color: var(--se-red); }
.se-service-page .faq-arrow { color: var(--muted); font-size: 20px; }
.se-service-page .faq-q.active .faq-arrow { color: var(--se-red); }
.se-service-page .faq-a {
  background: var(--se-bg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  padding: 0 20px 0 18px;
}
.se-service-page .faq-a.open { padding: 16px 20px 18px 18px; }

/* Related services */
.se-service-page .se-related-section {
  background: var(--se-bg-alt);
  border-top: 1px solid rgba(27,44,94,0.1);
}
.se-service-page .se-related-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
}
.se-service-page .se-related-item {
  background: oklch(98% 0.005 255deg);
  border: 1px solid rgba(27,44,94,0.12);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
  padding: 12px 14px;
}
.se-service-page .se-related-item:hover {
  background: var(--se-navy);
  border-color: var(--se-navy);
  color: #fff;
}
.se-service-page .se-related-item.active {
  background: var(--se-red);
  border-color: var(--se-red);
  color: #fff;
}

/* Contact */
.se-service-page .cb-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--se-navy);
}
.se-service-page .cb-phone { color: var(--se-red); }
.se-service-page .cb-text { font-family: 'Plus Jakarta Sans', sans-serif; }
.se-service-page .se-submit {
  background: var(--se-red);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.se-service-page .se-submit:hover { background: var(--se-red-dark); }

/* Footer */
.se-service-page .se-footer { background: oklch(10% 0.01 255deg); }
.se-service-page .se-footer .footer-brand { font-family: 'Plus Jakarta Sans', sans-serif; }
.se-service-page .se-footer .footer-links a { font-family: 'Plus Jakarta Sans', sans-serif; }

/* Mobile call bar */
.se-service-page .mobile-call-bar { background: var(--se-navy); }
.se-service-page .mobile-call-bar a.call { background: var(--se-red); }
.se-service-page .mobile-call-bar a.call:hover { background: var(--se-red-dark); }
.se-service-page .mobile-call-bar a { font-family: 'Plus Jakarta Sans', sans-serif; }

@media (min-width: 992px) {
  .se-service-page .se-sp-hero h1 { font-size: 40px; }
}
@media (max-width: 575px) {
  .se-service-page .se-sp-hero { padding: 26px 0 24px; }
  .se-service-page .se-sp-hero h1 { font-size: 24px; }
}

/* ================================================================
   HOMEPAGE REDESIGN v2 — Premium Tradesman aesthetic
   Nunito Sans headings + Outfit body
   ================================================================ */

/* --- Hero --- */
.se-hero {
  background: linear-gradient(135deg, #0e1c3a 0%, #1B2C5E 50%, #2E4D8F 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.se-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(46,77,143,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(168,32,32,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.se-hero::after { display: none; }

.hero-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  color: oklch(97% 0.005 255deg);
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-transform: none;
  margin-bottom: 18px;
}
.hero-title span { color: var(--se-gold); }

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.76);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 54ch;
}

.hero-price-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 24px;
  display: inline-block;
}
.hero-price-badge strong { color: var(--se-gold); font-size: 1.1rem; }
.hero-price-badge .badge-note {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  margin-top: 3px;
}

.hero-phones {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.hero-phones a { color: oklch(97% 0.005 255deg); text-decoration: none; transition: color 0.2s; }
.hero-phones a:hover { color: var(--se-gold); }
.hero-phones .sep { color: rgba(255,255,255,0.25); margin: 0 14px; font-weight: 300; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-call {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  background: var(--se-red);
  font-size: 1rem;
  letter-spacing: 0.1px;
}
.btn-hero-call:hover { background: var(--se-red-dark); transform: translateY(-2px); }
.btn-hero-outline {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
}
.btn-hero-outline:hover { transform: translateY(-2px); }

/* Hero right image column */
.hero-img-wrap {
  position: relative;
  display: block;
}
.hero-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.45);
  display: block;
}
.hero-review-pill {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: oklch(98% 0.005 255deg);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  text-decoration: none;
  transition: transform 0.2s;
}
.hero-review-pill:hover { transform: translateY(-2px); }
.hero-review-pill .rp-stars { color: var(--se-gold); font-size: 14px; letter-spacing: 1px; }
.hero-review-pill .rp-main { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.hero-review-pill .rp-sub  { font-family: 'Outfit', sans-serif; font-size: 0.75rem; color: var(--muted); }
.hero-price-pill {
  position: absolute;
  top: 22px;
  right: -16px;
  background: var(--se-red);
  color: oklch(97% 0.005 255deg);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(168,32,32,0.45);
  text-align: center;
  line-height: 1.3;
}
.hero-price-pill strong { display: block; font-size: 1.35rem; font-weight: 700; line-height: 1.1; }

/* Hero animations */
@keyframes se-fadeup {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim-1 { animation: se-fadeup 0.7s cubic-bezier(0.16,1,0.3,1) 0.08s both; }
.hero-anim-2 { animation: se-fadeup 0.7s cubic-bezier(0.16,1,0.3,1) 0.18s both; }
.hero-anim-3 { animation: se-fadeup 0.7s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.hero-anim-4 { animation: se-fadeup 0.7s cubic-bezier(0.16,1,0.3,1) 0.38s both; }
.hero-anim-right { animation: se-fadeup 0.85s cubic-bezier(0.16,1,0.3,1) 0.3s both; }

/* --- Trust Stat Strip --- */
.se-trust-stat-strip {
  background: oklch(98% 0.005 255deg);
  border-bottom: 1px solid rgba(27,44,94,0.1);
  padding: 32px 0;
}
.trust-stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 36px;
  position: relative;
}
.trust-stat + .trust-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(27,44,94,0.15);
}
.trust-stat-num {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--se-navy);
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}
a.trust-stat-num {
  text-decoration: none;
  transition: color 0.2s;
}
a.trust-stat-num:hover { color: var(--se-red); }
.trust-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
  max-width: 120px;
}

/* --- Service section --- */
.se-section { background: var(--se-bg); }
.se-section-gray { background: var(--se-bg-alt); }
.se-section-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--se-navy);
  margin-bottom: 8px;
}
.se-section-title span { color: var(--se-red); }
.se-section-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 40px;
}

/* Service cards — bento style */
.se-service-card {
  background: oklch(98% 0.005 255deg);
  border: 1px solid rgba(27,44,94,0.1);
  border-top: none;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--text);
  height: 100%;
  box-shadow: 0 2px 16px rgba(27,44,94,0.05);
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.28s cubic-bezier(0.16,1,0.3,1);
}
.se-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(27,44,94,0.14);
  text-decoration: none;
  color: var(--text);
}
.svc-img { height: 160px; }
.svc-large .svc-img { height: 210px; }
.svc-body { padding: 20px 22px 22px; }
.svc-large .svc-body { padding: 24px 26px 26px; }

.svc-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--se-bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.svc-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--se-navy);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--se-red);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.svc-body h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--se-navy);
  margin-bottom: 8px;
  line-height: 1.25;
}
.svc-large .svc-body h3 { font-size: 1.4rem; }
.svc-body p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 52ch;
}
.svc-arrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--se-red);
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.22s cubic-bezier(0.16,1,0.3,1);
}
.se-service-card:hover .svc-arrow { gap: 9px; }

/* --- Pricing section --- */
.pc-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.pc-icon-wrap svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.se-price-card.featured .pc-icon-wrap { background: rgba(255,255,255,0.18); }
.pc-amount {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.6rem;
}
.pc-label { font-family: 'Outfit', sans-serif; font-size: 1rem; }
.pc-note  { font-family: 'Outfit', sans-serif; }
.pricing-tip {
  font-family: 'Outfit', sans-serif;
  border-left: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  padding: 18px 24px;
  margin-top: 36px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}
.pricing-tip strong { color: var(--se-gold); }

/* --- Testimonials --- */
.se-testimonials {
  background: var(--se-bg-alt);
  padding: 80px 0;
}
.se-testimonials .se-section-title { text-align: center; margin-bottom: 8px; }
.se-testimonials .se-section-sub   { text-align: center; margin-bottom: 44px; }
.se-testimonial-card {
  background: oklch(98% 0.005 255deg);
  border-radius: 14px;
  padding: 28px 26px 24px;
  box-shadow: 0 4px 24px rgba(27,44,94,0.06);
  border: 1px solid rgba(27,44,94,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tc-stars {
  color: var(--se-gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.tc-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}
.tc-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(27,44,94,0.08);
}

/* --- About section --- */
.about-highlights { margin: 22px 0 0; }
.ah-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(27,44,94,0.1);
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ah-item:last-child { border-bottom: none; }
.ah-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}
.ah-icon svg { width: 18px; height: 18px; stroke: var(--se-red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* --- FAQ --- */
.se-faq-item {
  border: 1px solid rgba(27,44,94,0.1);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--se-navy);
  background: oklch(98% 0.005 255deg);
  padding: 18px 22px;
  /* button reset */
  width: 100%;
  border: none;
  text-align: left;
  cursor: pointer;
  /* arrow always far right */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { background: var(--se-bg-alt); }
.faq-q.active { background: var(--se-navy); color: oklch(97% 0.005 255deg); }
.faq-arrow { color: var(--se-red); flex-shrink: 0; }
.faq-q.active .faq-arrow { color: var(--se-gold); }
.faq-a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  background: var(--se-bg);
}

/* --- Google Reviews CTA --- */
.se-reviews {
  background: linear-gradient(135deg, #1B2C5E 0%, #2E4D8F 100%);
}
.se-reviews h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.se-reviews p { font-family: 'Outfit', sans-serif; }
.btn-reviews {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 8px;
}

/* --- Contact --- */
.se-contact h2 { font-family: 'Nunito Sans', sans-serif; }
.se-contact h3 { font-family: 'Nunito Sans', sans-serif; font-size: 1.4rem; }
.cb-label  { font-family: 'Outfit', sans-serif; color: var(--se-navy); }
.cb-phone  { font-family: 'Outfit', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--se-red); }
.cb-phone:hover { color: var(--se-red-dark); }
.cb-text   { font-family: 'Outfit', sans-serif; font-size: 0.95rem; }
.se-submit { font-family: 'Outfit', sans-serif; font-weight: 600; border-radius: 8px; background: var(--se-red); }
.se-submit:hover { background: var(--se-red-dark); }
.se-input  { font-family: 'Outfit', sans-serif !important; font-size: 0.95rem !important; }

/* --- Footer --- */
.se-footer { background: oklch(10% 0.01 255deg); }
.se-footer .footer-brand    { font-family: 'Nunito Sans', sans-serif; }
.se-footer .footer-tagline  { font-family: 'Outfit', sans-serif; }
.se-footer .footer-links a  { font-family: 'Outfit', sans-serif; }
.se-footer .footer-phone    { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700; }
.se-footer .footer-copy     { font-family: 'Outfit', sans-serif; }

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* --- Responsive for new components --- */
@media (max-width: 991px) {
  .hero-img-wrap { margin-top: 36px; }
  .hero-price-pill { right: 0; }
}
@media (max-width: 767px) {
  .se-hero { padding: 52px 0 44px; }
  .hero-title { font-size: 2rem; }
  .hero-phones { font-size: 1.45rem; }
  .trust-stat { padding: 8px 20px; }
  .trust-stat-num { font-size: 2rem; }
  .trust-stat + .trust-stat::before { display: none; }
  .trust-stats-row { gap: 0 8px; }
  .se-testimonials { padding: 52px 0; }
}
@media (max-width: 400px) {
  .hero-phones { flex-direction: column; gap: 2px; }
  .hero-phones .sep { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   BRAND SUB-PAGE COMPONENTS
   (servis-ariston-frizidera.html and similar brand product pages)
   ================================================================ */

/* Hero section */
.se-hero {
  background: var(--se-navy);
  background-image: linear-gradient(135deg, #0e1c3a 0%, var(--se-navy) 55%, var(--se-blue) 100%);
  border-bottom: 3px solid var(--se-red);
  padding: 42px 0 36px;
  color: #fff;
}
.se-hero-title {
  font-size: 30px;
  font-weight: 800;
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #fff;
}
.se-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 20px;
  line-height: 1.6;
}
.se-hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Trust chips */
.se-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}
.se-trust-chips span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Buttons */
.se-btn-primary {
  background: var(--se-red);
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.se-btn-primary:hover { background: var(--se-red-dark); text-decoration: none; }
.se-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.se-btn-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); text-decoration: none; }

/* Content cards */
.se-cards { margin-bottom: 0; }
.se-cards > [class*="col-"] { margin-bottom: 20px; }
.se-card {
  background: #fff;
  border: 1px solid rgba(27,44,94,0.1);
  border-radius: 10px;
  padding: 22px 18px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.se-card:hover { box-shadow: 0 6px 24px rgba(27,44,94,0.12); transform: translateY(-3px); }
.se-card-icon { margin-bottom: 12px; }
.se-card h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--se-navy);
  margin-bottom: 8px;
}
.se-card p {
  font-size: 14px;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  margin: 0;
}

/* Stats grid */
.se-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.se-stat {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(27,44,94,0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.se-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--se-navy);
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1;
}
.se-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
}

/* FAQ wrapper */
.se-faq { display: flex; flex-direction: column; }

/* Topbar layout for sub-pages */
.se-topbar-phones {
  display: flex;
  gap: 14px;
  align-items: center;
}
.se-topbar-phones a {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.se-topbar-phones a:hover { color: #fff; }
.se-topbar-info {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-family: 'Outfit', sans-serif;
}
.se-stars { color: #ffc107; }

/* Brand name in navbar */
.se-brand {
  font-weight: 800;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--se-navy);
  letter-spacing: -0.3px;
  text-decoration: none;
}
.se-brand:hover { color: var(--se-red); text-decoration: none; }

/* Alternate background (sub-pages use class directly on section) */
section.se-bg-alt, .se-bg-alt { background: var(--se-bg-alt); }

/* Form */
.se-form .form-group { margin-bottom: 16px; }
.se-form label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--se-navy);
  margin-bottom: 5px;
  display: block;
}
.se-form .form-control {
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  padding: 10px 14px;
}
.se-form .form-control:focus {
  border-color: var(--se-blue);
  box-shadow: 0 0 0 3px rgba(46,77,143,0.12);
  outline: none;
}

/* Footer components */
.se-footer-brand {
  font-weight: 800;
  font-size: 1.15rem;
  font-family: 'Nunito Sans', sans-serif;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.se-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.se-footer-links li { margin-bottom: 5px; }
.se-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: color 0.15s;
}
.se-footer-links a:hover { color: #fff; }
.se-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
  padding-top: 16px;
}
.se-footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: 'Outfit', sans-serif;
  margin: 0;
}

/* Mobile call bar */
.se-mobile-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--se-navy);
}
@media (min-width: 992px) { .se-mobile-call { display: none !important; } }

/* Viber float button */
.se-viber-float {
  position: fixed;
  bottom: 72px;
  right: 18px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #7360f2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.2s;
}
.se-viber-float:hover { transform: scale(1.08); }
@media (min-width: 992px) { .se-viber-float { bottom: 24px; } }

/* Responsive adjustments */
@media (max-width: 767px) {
  .se-hero { padding: 28px 0 22px; }
  .se-hero-title { font-size: 22px; }
  .se-hero-sub { font-size: 13px; }
  .se-stats-grid { gap: 10px; }
}
