/* ==================================================
   RESET & BASE
================================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #1c2b3a;
  background: #f4f6f8;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
/* ==================================================
   HEADER – CENTER LOGO + NAV BELOW
================================================== */

.site-header {
  position: relative;
  z-index: 99999;
  background: linear-gradient(90deg, #0d3b66, #1b5fa7);
  border-bottom: 4px solid #ff7f11;
}

/* LOGO TOP CENTER */
.logo-bar {
  text-align: center;
  padding: 18px 0 10px;
}

.logo {
  height: 52px;
}

@media (max-width:768px){
section{
padding-top:40px;
}
}

button,
.service-btn,
.btn-primary,
.btn-secondary,
.cta-button,
.whatsapp-button {
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.25s ease;
}

button:hover,
.service-btn:hover,
.btn-primary:hover,
.cta-button:hover,
.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

/* ==================================================
   HERO
================================================== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(244,246,248,0) 0%,
    rgba(244,246,248,1) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 520px;
  margin-left: 60px;
  padding: 40px;
  background: rgba(0,0,0,0.45);
  border-radius: 8px;
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.btn-primary {
  background: #ff7f11;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
}
.hero-content {
  backdrop-filter: blur(4px);
}
.hero-inner {
  min-height: 50vh;
  display: flex;
  align-items: center;
}


/* ==================================================
   SERVICES
================================================== */
.services {
  padding: 80px 0;
  background: #f4f6f8;
}

.services h2 {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 20px;
  text-align: center;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
/* ==================================================
   FEATURES
================================================== */


.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.feature-box.emergency {
  border: 2px solid #ff7f11;
 }

/* ==================================================
   CTA – CLEAN STRUCTURE
================================================== */
.cta-section {
  background: linear-gradient(135deg, #0d3b66, #092b4c);
  color: #ffffff;
  padding: 100px 20px;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 30px;
  font-size: 30px;
}

.cta-button,
.whatsapp-button {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  margin: 10px;
}

.cta-button {
  background: #ff7f11;
  color: #fff;
}

.whatsapp-button {
  background: #25d366;
  color: #fff;
}

.cta-alt {
  margin-top: 30px;
  opacity: 0.85;
}

/* ==================================================
   FOOTER – CLEAN GRID SYSTEM
================================================== */

.footer {
  background: #081f33; /* Deep corporate navy */
  color: rgba(255,255,255,0.85);
  padding: 90px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

.footer-box h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-box p,
.footer-box li {
  font-size: 15px;
  opacity: 0.8;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #ff7f11;
  transition: 0.2s ease;
}

.footer-bottom {
  margin-top: 70px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
}

/* =========================================
   TRUST BADGES
========================================= */

.trust-badges {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-badge {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  width: fit-content;
}

/* EXPERIENCE */
.badge-experience {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
}

/* EMERGENCY */
.badge-emergency {
  background: #c70000;
  color: #fff;
}

/* WARRANTY */
.badge-warranty {
  background: #ff7f11;
  color: #fff;
}

/* ==================================================
   RESPONSIVE
================================================== */

/* Tablet */
@media (max-width: 900px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}
@media (max-width: 600px) {

  .logo {
    height: 44px;
  }
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-form {
    max-width: 350px;
    margin: 0 auto;
  }
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 16px 20px;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff7f11;
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}
/* ===============================
   RESPONSIVE FIX CLEAN
================================ */

/* Tablet */
@media (max-width: 900px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */
@media (max-width: 600px) {

  .logo {
    height: 40px;
  }

  .hero {
    min-height: 85vh;
    padding-top: 40px;
  }

  .hero-content {
    margin-left: 0;
    padding: 24px;
  }
.hero-human {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.9;
}

  .hero-actions {
    flex-direction: column;
  }

  .services-grid,
  .features-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-form {
    max-width: 350px;
    margin: 0 auto;
  }

}
/* =================================
   MOBILE HEADER FIX
================================= */

.hero {
  display: flex;
  align-items: center;
  min-height: 80vh;
}

@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
  }
}
.hero-trust {
  margin-top: 20px;
  font-size: 15px;
  opacity: 0.9;
}
.footer-badges {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-badge {
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  width: fit-content;
}

.badge-experience {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

.badge-experience span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
}

.badge-rating {
  background: #ff7f11;
  color: #fff;
}
.footer-social {
  margin-top: 25px;
  display: flex;
  gap: 18px;
}

/* Common style */
.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* FACEBOOK */
.footer-social a.facebook {
  background: #1877f2;
}

.footer-social a.facebook:hover {
  box-shadow: 0 8px 22px rgba(24,119,242,0.4);
  transform: translateY(-3px);
}

/* INSTAGRAM (gradient zyrtar) */
.footer-social a.instagram {
  background: radial-gradient(circle at 30% 30%, 
    #feda75 0%, 
    #fa7e1e 25%, 
    #d62976 50%, 
    #962fbf 75%, 
    #4f5bd5 100%);
}

.footer-social a.instagram:hover {
  box-shadow: 0 8px 22px rgba(214,41,118,0.4);
  transform: translateY(-3px);
}

/* WHATSAPP */
.footer-social a.whatsapp {
  background: #25d366;
}

.footer-social a.whatsapp:hover {
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
  transform: translateY(-3px);
}
/* ==================================================
   INTRO SECTION
================================================== */

.intro {
  background: #ffffff;
  padding: 80px 20px;
}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: 28px;
  color: #0d3b66;
  margin-bottom: 20px;
}

.intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.services-intro {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.services-intro p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #2a3a4b;
}


/* MOBILE */
@media (max-width: 600px) {
  .intro {
    padding: 50px 20px;
  }

  .intro h2 {
    font-size: 22px;
  }

  .intro p {
    font-size: 16px;
  }
}
.services-seo-text {
  max-width: 900px;
  margin: 70px auto 0;
  padding: 0 20px;
  text-align: left;
}

.services-seo-text h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #0d3b66;
}

.services-seo-text p {
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 16px;
}
/* ===============================
   SERVICE ICON – PREMIUM STYLE
================================ */

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 12px auto;
  line-height: 0;
}

.service-icon img {
  width: 36px;
  height: 36px;
}

/* Hover effect */
.service-card:hover .service-icon {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
/* ==============================
   INNER PAGE HEADER (SLIM)
============================== */

.inner-page .logo-bar {
  padding: 12px 0 6px;
}

.inner-page .logo {
  height: 42px;
}

.inner-page .main-nav {
  padding: 10px 20px;
}

.inner-page .site-header {
  border-bottom: 3px solid #ff7f11;
}

.why-us {
  padding: 80px 20px;
  background: #f7f9fb;
}

.why-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #e5e9ef;
  transition: 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: #ff7f11;
}

.highlight {
  border: 2px solid #ff7f11;
}
.service-hero {
  background: linear-gradient(135deg, #0d3b66, #123f73);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.service-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-hero p {
  font-size: 18px;
  opacity: 0.9;
}
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-item {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  font-weight: 600;
}
@media (max-width: 900px) {
  .service-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-list-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   ULTRA PREMIUM SERVICE HERO
=================================*/

.service-hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 40%),
    linear-gradient(135deg, #0d3b66 0%, #123f73 50%, #0a2e52 100%);
}

/* Subtle noise texture overlay */
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Crect width='300' height='300' fill='none'/%3E%3Ccircle cx='5' cy='5' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
}

/* Smooth bottom fade */
.service-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(13,59,102,0) 0%, #f4f6f8 100%);
}

.service-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.service-hero h1 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.service-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.hero {
  position: relative;
}

/* ORANGE ACCENT LINE */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255,127,17,0.4),
    #ff7f11,
    rgba(255,127,17,0.4)
  );
  z-index: 2;
}
/* =======================================
   SERVICE HERO – PREMIUM GRADIENT
======================================= */

.service-hero {
  background: linear-gradient(135deg, #0d3b66, #1b5fa7);
  color: #fff;
  padding: 120px 20px 80px;
  text-align: center;
}

.service-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.service-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.service-hero p {
  font-size: 18px;
  opacity: 0.95;
}

/* Thin orange accent */
.accent-line {
  height: 4px;
  background: #ff7f11;
}

/* Intro */
.service-intro {
  padding: 80px 20px;
  text-align: center;
}

.service-intro .container {
  max-width: 1200px;
  margin: auto;
}

/* Content */
.service-content {
  padding: 80px 20px;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

/* Areas */
.service-areas {
  background: #f4f6f8;
  padding: 80px 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .service-columns {
    grid-template-columns: 1fr;
  }

  .service-hero h1 {
    font-size: 30px;
  }
}
/* FAQ */

.faq-section {
  padding: 80px 20px;
  background: #ffffff;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 30px;
}

.faq-item h3 {
  font-size: 18px;
  color: #0d3b66;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
}
.service-hero-locksmith {
  background: linear-gradient(135deg, #0d3b66 0%, #092b4c 100%);
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.service-hero-locksmith .accent-line {
  width: 80px;
  height: 3px;
  background: #ff7f11;
  margin: 30px auto 0;
}

.service-intro {
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.service-content {
  padding: 80px 20px;
}

.service-list {
  margin: 30px 0;
  padding-left: 20px;
}

.service-list li {
  margin-bottom: 10px;
}
.service-hero-electric {
  background: linear-gradient(135deg, #1b5fa7 0%, #0d3b66 100%);
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}
/* ===== WhatsApp Button Global ===== */
.btn-secondary,
.whatsapp-button {
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover,
.whatsapp-button:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
/* ===== Service Hero Centered ===== */
.hero-content {
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
}

.hero-actions {
  justify-content: center;
}
.hero {
  padding: 100px 20px;
}
/* ===== WHY SECTION MOBILE FIX ===== */
@media (max-width: 768px) {

  .why-grid {
    grid-template-columns: 1fr;
  }

}
/* ================================
   WHY SECTION – PREMIUM MOBILE
=================================*/
@media (max-width: 768px) {

  .why-us {
    padding: 50px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    padding: 26px 22px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .why-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
  }

  /* Emergency Highlight – Premium Version */
  .why-card.highlight {
    border: 1px solid rgba(255, 125, 0, 0.25);
    background: linear-gradient(
      180deg,
      rgba(255,125,0,0.05) 0%,
      rgba(255,255,255,1) 100%
    );
  }

}
@media (max-width: 768px) {

  .why-us {
    padding: 60px 22px;
  }

  .why-card {
    padding: 30px 24px;
  }

}
.why-card.highlight {
  border: 1px solid rgba(255, 125, 0, 0.18);
  box-shadow: 0 8px 25px rgba(255, 125, 0, 0.08);
}
/* ===============================
   PACKAGES SECTION
================================ */

.packages-section {
  padding: 90px 20px;
  background: #f4f6f8;
}

.packages-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.packages-intro {
  max-width: 600px;
  margin: 0 auto 50px;
  opacity: 0.85;
}

/* GRID */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */

.package-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  text-align: left;
  transition: 0.25s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.package-card h3 {
  margin-top: 10px;
  color: #0d3b66;
}

.package-price {
  font-size: 26px;
  font-weight: 700;
  margin: 12px 0 18px;
}

.package-card ul {
  padding-left: 18px;
  margin-bottom: 25px;
}

.package-card li {
  margin-bottom: 6px;
}

/* BADGES */

.badge-private,
.badge-b2b {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(13,59,102,0.08);
  font-weight: 700;
}

.badge-featured {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ff7f11;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
}

/* FEATURED CARD */

.package-card.featured {
  border: 2px solid #ff7f11;
}
/* ===============================
   BUSINESS SECTION
================================ */

.business-section {
  padding: 90px 20px;
  background: #fff;
}

.business-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.business-subtitle {
  margin: 10px 0 25px;
  opacity: 0.85;
}

.business-columns {
  margin-top: 40px;
  text-align: left;
}

.business-columns ul {
  padding-left: 18px;
}
/* ===============================
   BUSINESS WHY
================================ */

.business-why {
  padding: 90px 20px;
  background: #f4f6f8;
}

.business-why-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.business-why-intro {
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.85;
}

.business-why-list {
  text-align: left;
  max-width: 700px;
  margin: auto;
  padding-left: 0;
  list-style: none;
}

.business-why-list li {
  margin-bottom: 18px;
}
/* ===============================
   MOBILE PACKAGES
================================ */

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    text-align: center;
  }

  .package-card ul {
    text-align: left;
    margin: 20px auto;
  }

}
/* ===============================
   APARTMENT PACKAGES CENTER
================================ */

.apartment-packages .packages-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.apartment-packages .package-card {
  width: 340px;
}
.package-price {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 18px 0 25px;
  color: #0d3b66;
}

.package-price span {
  font-size: 14px;
  opacity: 0.6;
}
@media (max-width: 600px) {

  .apartment-packages .packages-grid {
    flex-direction: column;
    align-items: center;
  }

  .apartment-packages .package-card {
    width: 100%;
    max-width: 340px;
  }

}
.plumbing-content {
  padding: 80px 20px;
  background: #f5f7fa;
}

.plumbing-content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.plumbing-content h2 {
  text-align: center;
  margin-bottom: 20px;
}

.plumbing-content p {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}
.electrical-services {
  background: #f9fafb;
}

.electrical-services h2 {
  text-align: center;
  margin-bottom: 15px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin: 10px 0 8px 0 !important;
  color: #0f3057;
}

.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 992px) {
  .services-grid-3 {
    grid-template-columns: 1fr;
  }
}
/* ===== ABOUT PAGE NARROW CONTENT ===== */

.about-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content h2 {
  text-align: center;
  margin-bottom: 30px;
}

.about-content p {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 16px;
}
@media (max-width: 768px) {

.about-content {
  max-width: 92%;
}

.about-content p {
  font-size: 15px;
}

}
/* ===== PRICING CARDS ===== */

.pricing-cards-section {
  background: #f5f7fa;
  padding: 80px 20px;
}

.pricing-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: bold;
  color: #ff7a00;
  margin: 10px 0;
}

.pricing-card span {
  font-size: 14px;
  color: #666;
}

/* FEATURED CARD */
.pricing-card.featured {
  border: 2px solid #ff7a00;
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff7a00;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* ===== MOBILE ===== */

@media(max-width:992px){
  .pricing-cards{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .pricing-cards{
    grid-template-columns:1fr;
  }
}
/* ===== TARIFAT 4x1 CENTER FIX ===== */

.tarifa-section .packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.tarifa-section .package-card {
  width: 260px;
  text-align: center;
}
@media (max-width: 768px) {

  .packages-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .package-card {
    width: 90%;
  }

}
.package-card.featured {
  transform: scale(1.05);
  z-index: 2;
}
.contact-hero {
  background: linear-gradient(135deg,#143a5e,#1f5589);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contact-hero-actions {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-whatsapp {
  background:#25D366;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
}

.contact-main-inner {
  max-width: 1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:60px 20px;
}

.contact-form input,
.contact-form textarea {
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:6px;
  border:1px solid #ccc;
}

.contact-form button {
  background:#ff7a00;
  color:#fff;
  padding:12px 20px;
  border:none;
  border-radius:6px;
  width:100%;
}

.emergency-box {
  background:#fff3f3;
  border-left:5px solid red;
  padding:12px;
  margin-top:15px;
}

@media(max-width:768px){
  .contact-main-inner {
    grid-template-columns:1fr;
  }
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff7a00;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-bottom: 15px;
}
.hero {
  background-size: cover;
  background-position: right center;
}
.services-grid > .service-card {
  min-height: 280px;
}
.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;   /* force same height for all icons */
  margin-bottom: 10px;
}
.service-icon img,
.service-icon svg,
.service-icon i {
  width: 32px;
  height: 32px;
}
.service-icon i,
.service-icon svg,
.service-icon img {
  position: relative;
  top: -4px;
}
.service-card h3 {
  min-height: 48px;
}
.service-card p {
  min-height: 72px;
}
.form-success,
.form-error {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 5px;
  z-index: 9999;
  font-size: 14px;
  animation: fadeInOut 5s ease forwards;
}

.form-success {
  background: #28a745;
  color: white;
}

.form-error {
  background: #dc3545;
  color: white;
}

@keyframes fadeInOut {
  0% {opacity: 0; transform: translateY(-10px);}
  10% {opacity: 1; transform: translateY(0);}
  90% {opacity: 1;}
  100% {opacity: 0; transform: translateY(-10px);}
}
.pricing-info {
  padding: 80px 20px;
  background: #f4f6f8;
}

.pricing-info .container {
  max-width: 900px;
  margin: auto;
}

.pricing-card-box {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.pricing-card-box h2 {
  margin-bottom: 20px;
  color: #0d3b66;
}

.pricing-card-box ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.pricing-card-box li {
  margin-bottom: 8px;
}

.pricing-card-box.highlight {
  border: 2px solid #ff7f11;
}
.pricing-card-box {
  background: #fff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
  margin-bottom: 50px;
}

.pricing-card-box h2 {
  margin-bottom: 20px;
  color: #0d3b66;
}

.pricing-card-box ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.pricing-card-box li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.pricing-card-box.highlight {
  border: 2px solid #ff7f11;
}

.mini-cta {
  margin: 25px 0 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.legal-box {
  border-left: 4px solid #0d3b66;
}

.premium-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.pricing-info {
  padding: 80px 20px;
  background: #f4f6f8;
}

.pricing-info .container {
  max-width: 900px;
  margin: auto;
}

.pricing-card-box {
  background: #fff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
  margin-bottom: 50px;
}

.pricing-card-box h2 {
  margin-bottom: 20px;
  color: #0d3b66;
}

.pricing-card-box ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.pricing-card-box li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.pricing-card-box.highlight {
  border: 2px solid #ff7f11;
}

.mini-cta {
  margin: 25px 0 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.legal-box {
  border-left: 4px solid #0d3b66;
}

.premium-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.local-note {
  background:#fff3cd;
  color:#856404;
  padding:12px;
  margin-top:20px;
  border-radius:8px;
  font-size:14px;
}
.hero-trust{
margin-top:10px;
font-size:14px;
color:#ffffffcc;
}
.whatsapp-btn{
background:#25D366;
color:#fff;
border:none;
padding:12px 20px;
margin-top:20px;
width:100%;
border-radius:6px;
cursor:pointer;
font-size:16px;
}
.hero-problem {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffffdd;
}
.emergency-section{
background:#f8f9fa;
padding:40px 20px;
text-align:center;
}

.emergency-list{
list-style:none;
padding:0;
margin:20px 0;
}

.emergency-list li{
margin:8px 0;
font-size:16px;
}
.emergency-section .cta-btn{
width:auto;
display:inline-block;
padding:12px 24px;
}
.emergency-section .whatsapp-btn{
width:auto;
display:inline-block;
}
@media(max-width:768px){
.emergency-section .cta-btn{
width:100%;
}
}
.emergency-cta {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-call,
.cta-whatsapp {
  flex: 1;
  text-align:center;
  padding:14px 18px;
  border-radius:8px;
  display:inline-block;
}

.cta-whatsapp {
  flex: 1;
}

.cta-call {
  background: #ff7a00;
  color: #fff;
}

.cta-whatsapp {
  background: #25d366;
  color: #fff;
}

@media (min-width: 768px) {
  .emergency-cta {
    max-width: 420px;
    margin: 20px auto 0;
  }
}
.coverage-area {
  background:#f8f9fb;
  padding:50px 20px;
  text-align:center;
}

.coverage-list {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:20px 0;
  list-style:none;
  padding:0;
}

.coverage-list li {
  background:#ffffff;
  padding:8px 14px;
  border-radius:6px;
  font-size:14px;
  box-shadow:0 2px 5px rgba(0,0,0,0.05);
}

.coverage-call {
  display:inline-block;
  margin-top:15px;
  background:#ff7a00;
  color:#fff;
  padding:14px 20px;
  border-radius:8px;
  text-decoration:none;
}
.sticky-mobile{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
z-index:9999;
}

.sticky-call,
.sticky-whatsapp{
flex:1;
text-align:center;
padding:14px;
color:#fff;
font-size:16px;
font-weight:600;
text-decoration:none;
}

.sticky-call{
background:#ff7a00;
}

.sticky-whatsapp{
background:#25D366;
}

/* HIDE ON DESKTOP */
@media(min-width:768px){
.sticky-mobile{
display:none;
}
}
/* Sticky vetëm për MOBILE */
@media (min-width: 768px) {
  .sticky-cta {
    display: none !important;
  }
}
.hero {
  background: 
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/handyman-services.webp');
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}
.hero-service {
  background: 
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/handyman-services.webp');
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}
.hero-plumber {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/plumber-durres.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-electrician {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/electrician-durres.webp');

  background-size: cover;
  background-position: center;
}
.hero-oddjobs {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/odd-jobs-durres.webp');

  background-size: cover;
  background-position: center;
}
.hero-locksmith {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/locksmith-durres.webp');

  background-size: cover;
  background-position: center;
}
.hero-maintenance {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/property-maintenance-durres.webp');

  background-size: cover;
  background-position: center;
}
.hero-assembly {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/furniture-assembly-durres.webp');

  background-size: cover;
  background-position: center;
}
.hero-services {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/handyman-services-durres.webp');

  background-size: cover;
  background-position: center;
}
.hero-about {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/handyman-services-durres.webp');

  background-size: cover;
  background-position: center;
}
.hero-rates {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/rates-handyman-durres.webp');

  background-size: cover;
  background-position: center;
}
.hero-contact {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('../images/emergency-handyman.webp');

  background-size: cover;
  background-position: center;
}
.service-includes {
  padding: 60px 0;
  background: #f8fafc;
}

.service-includes ul {
  max-width: 700px;
  margin-top: 20px;
}
.service-includes-inner{
max-width:900px;
margin:auto;
text-align:center;
}

.service-list{
list-style:none;
padding:0;
margin:30px auto;
text-align:left;
max-width:520px;
}

.service-list li{
margin-bottom:12px;
font-size:17px;
}

.service-text{
margin-top:20px;
text-align:center;
max-width:700px;
margin-left:auto;
margin-right:auto;
}
/* ============================= */
/* B2B BUSINESS PACKAGES SECTION */
/* ============================= */

.b2b-section {
  padding: 80px 20px;
  background: #f7f9fc;
}

.b2b-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Grid më i hapur */
.b2b-container .pricing-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Kartat më të mëdha */
.b2b-container .pricing-card {
  flex: 1 1 320px;
  max-width: 360px;
  padding: 40px 30px;
}
.b2b-sub {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 10px;
  color: #555;
}
/* GLOBAL CTA BUTTON */
.pricing-btn {
    display: inline-block;
    background: #ff7a00;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #e56e00;
    transform: translateY(-2px);
}
.pricing-card ul {
    list-style: none;
    padding-left: 0;
}
.pricing-card ul {
    list-style: none;
    padding-left: 0;
}

.pricing-card ul li {
    position: relative;
    padding-left: 22px;
}
.package-card ul li::before,
.pricing-card ul li::before {
  content: none !important;
  display: none !important;
}
.package-card ul li {
  padding-left: 0;
  list-style: none;
}
.sla-box {
  margin-top: 20px;
  padding: 12px 16px;
  background: #f5f7fa;
  border-radius: 8px;
  font-size: 14px;
  text-align: left;
}

.sla-box h4 {
  margin-bottom: 8px;
  font-size: 15px;
}

.sla-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sla-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.sla-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-size: 12px;
}

.premium-sla {
  background: #fff3f3;
  border-left: 4px solid #e74c3c;
}
.sla-disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
  text-align: center;
}
.scope-box {
  margin-top: 20px;
  padding: 12px 16px;
  background: #f9fbfd;
  border-radius: 8px;
  font-size: 14px;
  text-align: left;
}

.scope-box h4 {
  margin: 8px 0;
  font-size: 15px;
}

.scope-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.scope-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.scope-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-size: 12px;
}

.premium-scope {
  background: #eef7ff;
  border-left: 4px solid #3498db;
}
.nav-list {
list-style:none;
display:flex;
justify-content:center;
gap:40px;
padding:16px 20px;
margin:0;
transition:0.3s;
}

.nav-list li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d3b66;
  padding: 10px 0;
  min-width: 220px;
  z-index: 9999;
}

/* 🔑 KEEP OPEN ON HOVER */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* REMOVE GAP */
.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #fff;
  display: block;
}
@media (max-width:768px){

.footer-bottom{
padding-bottom:120px;
}

.footer-lang{
position:relative;
z-index:2;
margin-bottom:20px;
}

}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1f4f82;
  min-width: 220px;
  z-index: 9999;
  padding-top: 12px;

  /* 🔥 FIX */
  margin-top: -6px;

}
@media (max-width:768px){

.footer-bottom{
padding-bottom:40px;
}

}
/* ===== MOBILE NAV FINAL FIX ===== */
@media (max-width: 768px) {

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-list li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;
    margin-top: 0;
    width: 100%;
  }

}
/* ===== MOBILE HEADER AUTO HEIGHT FIX ===== */
@media (max-width: 768px) {

  .site-header {
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 5px;
  }

}
/* ===========================
   MOBILE HEADER REAL FIX
=========================== */

@media (max-width: 768px) {

  .site-header {
    padding: 10px 0;
  }

  .logo-bar {
    padding: 10px 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 6px;
    padding: 5px 0;
  }

  .nav-list li a {
    padding: 6px 0;
    font-size: 15px;
  }

}
/* =============================
HAMBURGER MOBILE NAV
============================= */

.hamburger{
display:none;
font-size:28px;
color:#fff;
cursor:pointer;
position:absolute;
right:20px;
top:22px;
z-index:99999;
}

@media(max-width:768px){

.hamburger{
display:block;
}

.nav-list{
display:none;
flex-direction:column;
background:#0d3b66;
width:100%;
text-align:center;
}

.nav-list.active{
display:flex;
}

.dropdown-menu{
position:static;
}

}
/* =============================
FOOTER LANGUAGE SWITCH FIX
============================= */

.lang-footer{
text-align:center;
margin-bottom:25px;
}

.lang-footer a{
color:#fff;
margin:0 10px;
text-decoration:none;
font-weight:500;
}

.footer{
padding-bottom:50px;
}
.site-header{
padding:8px 0;
}

.logo-bar{
padding:6px 0;
}

.logo{
height:42px;
}

.nav-list{
padding:8px 20px;
}
.hero{
padding:40px 20px !important;
}
@media(max-width:768px){

.logo{
height:36px;
}

.logo-bar{
padding:4px 0;
}

.nav-list{
padding:4px 0;
gap:4px;
}

.hero{
padding:30px 15px !important;
}

}
.footer-payments {
  text-align: center;
  margin: 15px 0;
}

.footer-payments p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.footer-payments img {
  height: 28px;
  width: auto;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin: 5px;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.fb {background:#3b5998;}
.ig {background:#E1306C;}
.wa {background:#25D366;}
.li {background:#0077b5;}
.service-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  flex: 1 1 400px;
  max-width: 500px;
}

.service-card h2 {
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6600;
  font-weight: bold;
}
.services-cards {
  padding: 40px 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card h2 {
  margin-bottom: 15px;
  font-size: 20px;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li::before {
  content: "✔";
  margin-right: 8px;
  color: #28a745;
}
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
.services-cards {
    padding: 60px 20px;
    background: #f4f6f9;
}
.services-cards .cards-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.services-cards .card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1 1 380px;
    max-width: 420px;
}
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
}
/* ===== FORCE SLIM HEADER DESKTOP ===== */

.site-header{
height:auto !important;
min-height:unset !important;
}

.logo-bar{
padding:2px 0 !important;
}

.main-nav{
padding:2px 0 !important;
}

.nav-list{
padding:0 !important;
margin:0 !important;
}

.site-header .container{
display:flex;
align-items:center;
justify-content:space-between;
height:70px !important;
}

/* LOGO BIGGER */
.logo{
height:60px !important;
}
@media(max-width:768px){

.site-header .container{
height:60px !important;
}

.logo{
height:44px !important;
}

}
.footer-social a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:50%;
    margin:0 6px;
    background:#1e3a5f;
}

.social-icon {
    width:20px;
    height:20px;
}

.fb { fill:#1877F2; }
.ig { fill:#E4405F; }
.wa { fill:#25D366; }
.ln { fill:#0A66C2; }
.privacy-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.privacy-label input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
}
.privacy-check {
  margin: 15px 0 20px 0;
}
.hero-service {
  position: relative;
  overflow: hidden;
}

.hero-service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(13,59,102,0) 0%,
    #f4f6f8 100%
  );
  pointer-events: none;
}
/* ===== STICKY PREMIUM HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: #0d3b66; /* solid corporate */
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.site-header.scrolled .logo-bar {
  padding: 10px 0 6px;
}

.site-header.scrolled .logo {
  height: 42px;
}

.site-header.scrolled .main-nav {
  padding: 8px 20px;
}
/* ===== LANGUAGE SWITCH DESKTOP ONLY ===== */

.lang-switch {
  position: absolute;
  right: 80px; /* lë hapësirë për hamburger */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
}

.lang-switch a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.85;
  transition: 0.2s ease;
}

.lang-switch a:hover {
  opacity: 1;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}
/* Fshi në mobile */
@media (max-width: 768px) {
  .lang-switch {
    display: none;
  }
}

.lang-switch a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.lang-switch a:hover {
  opacity: 1;
}

.lang-switch a.active {
  opacity: 1;
  position: relative;
}

.lang-switch a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff6a00;
  border-radius: 2px;
}

.lang-switch span {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.4);
}
.success-box {
  background: #28a745;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
/* ==============================
   MOBILE TYPOGRAPHY UPGRADE
============================== */

@media (max-width: 768px) {

  html {
    font-size: 20px;
  }

  body {
    font-size: 1rem;
    line-height: 1.7;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .nav-list li a {
    font-size: 1rem;
  }

  button,
  .btn-primary,
  .btn-secondary {
    font-size: 1rem;
  }

}
.process-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

.process-step {
  text-align: center;
  width: 19%;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  background: #0077cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Mobile Version */

@media (max-width: 992px) {
  .process-timeline {
    flex-direction: column;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    width: 100%;
    margin-bottom: 40px;
  }
}