:root{
  --dark:#0f172a;
  --primary:#1e293b;
  --brand:#38bdf8;
  --accent:#22c55e;
  --blue:#0d6efd;
}

/* FLOAT BUTTONS */
.call,.whatsapp{
  position:fixed;right:15px;padding:14px;border-radius:50%;
  font-size:22px;color:#fff;z-index:6000
}
.call{bottom:90px;background:var(--blue)}
.whatsapp{bottom:25px;background:#25D366}







/* NavBar Start */

:root{
  --navy:#0b1f3a;
  --navy-dark:#08172c;
  --accent:#1ec6b6;
  --white:#ffffff;
  --light:#e4e9f6;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Segoe UI',sans-serif;
}

/* ================= HEADER ================= */
.kc-header{
  background:var(--navy);
  position:sticky;
  top:0;
  z-index:9999;
  transition:transform .35s ease-in-out;
}
.kc-header.nav-hide{
  transform:translateY(-100%);
}

/* ================= TOP BAR ================= */
.kc-top{
  background:var(--light);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 14px;
}

.kc-logo img{
  height:45px;
}

/* ================= DESKTOP TOLL ================= */
.kc-toll-desktop{
  font-size:15px;
  font-weight:600;
}
.kc-toll-desktop a{
  color:#000;
  text-decoration:none;
}
.kc-toll-desktop i{
  color:var(--accent);
  margin-right:6px;
}

/* ================= HAMBURGER ================= */
.kc-menu-btn{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.kc-menu-btn span{
  width:26px;
  height:3px;
  background:#19609f;
  border-radius:3px;
}

/* ================= NAV ================= */
.kc-nav{
  background:linear-gradient(90deg,#0a1c34,#0b2447);
}

.kc-menu{
  display:flex;
  list-style:none;
  justify-content:center;
  gap:30px;
}

.kc-menu li{
  position:relative;
}

.kc-menu a{
  display:flex;
  align-items:center;
  gap:8px;
  padding:14px 8px;
  color:#fff;
  text-decoration:none;
  font-weight:500;
}
.kc-menu a:hover{
  color:var(--accent);
}

/* ================= DROPDOWN ================= */
.dropdown ul{
  position:absolute;
  top:100%;
  left:0;
  background:#0e2a52;
  min-width:300px;
  list-style:none;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:.3s ease;
  border-radius:12px;
  padding:12px;
  z-index:99;
}

/* BRAND MENU DEFAULT */
.brand-menu{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

/* SHOW ON HOVER (DESKTOP) */
.dropdown:hover > ul{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown ul li a{
  padding:10px 12px;
  font-size:14px;
  border-radius:8px;
  display:flex;
  align-items:center;
  gap:10px;
}
.dropdown ul li a:hover{
  background:rgba(255,255,255,.08);
}

.brand-menu img{
  width:30px;
  height:30px;
  object-fit:contain;
  background:#fff;
  border-radius:6px;
  padding:3px;
}

/* ================= MOBILE TOLL ================= */
.kc-mobile-toll{
  display:none;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding:16px;
  font-size:17px;
  background:#08172c;
  color:#fff !important;
  text-decoration:none !important;
}
.kc-mobile-toll i{
  color:var(--accent);
  pointer-events:none;
}

/* ======================================================
   DESKTOP ONLY FIX → SELECT BRANDS (4 PER ROW)
   MOBILE 100% UNTOUCHED
====================================================== */
@media (min-width:769px){
  .brand-menu{
    grid-template-columns:repeat(4,1fr); /* 👈 4 brands side by side */
    min-width:520px;
  }

  .brand-menu img{
    width:32px;
    height:32px;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width:768px){
  .kc-toll-desktop{
    display:none;
  }
  .kc-menu-btn{
    display:flex;
  }

  .kc-nav{
    max-height:0;
    overflow-y:auto;
    transition:max-height .4s ease;
  }
  .kc-nav.active{
    max-height:100vh;
  }

  .kc-menu{
    flex-direction:column;
    gap:0;
  }

  .kc-menu a{
    padding:16px 20px;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .dropdown ul{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    padding:14px;
  }
  .dropdown.active > ul{
    display:block;
  }

  .brand-menu{
    grid-template-columns:1fr; /* 👈 MOBILE SAME AS BEFORE */
  }

  .kc-mobile-toll{
    display:flex;
  }
}


/* End NavBar */





/* SLIADER START */

:root{
  --u-primary:#b52513;
}

/* ===== GLOBAL FIXES (RED TAP / OUTLINE REMOVE) ===== */
*{
  -webkit-tap-highlight-color:transparent;
}
a,button{
  outline:none !important;
}
a:focus,button:focus{
  outline:none !important;
  box-shadow:none !important;
}

/* ===== BASE ===== */
.u-slider-wrap{
  width:100%;
  overflow:hidden;
  background:#ffffff;
  font-family:'Segoe UI',Arial,sans-serif;
  position:relative;
}
.u-slider-track{
  display:flex;
  transition:transform .6s ease;
}
.u-slide-item{
  min-width:100%;
  position:relative;
}

/* ===== DESKTOP / LAPTOP ===== */
@media(min-width:768px){
  .u-slide-item{height:500px;}

  .u-img-desktop{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .u-img-mobile{display:none;}

  .u-slide-media{
    position:absolute;
    inset:0;
  }

  .u-slide-content{
    position:absolute;
    inset:0;
    z-index:3;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    color:#fff;
    background:linear-gradient(
      to bottom,
      rgba(0,0,0,.45),
      rgba(0,0,0,.25),
      rgba(0,0,0,.55)
    );
  }

  .u-slide-content h1,
  .u-slide-content h2{
    font-size:44px;
    margin:10px 0;
  }

  .u-slide-content p{
    font-size:16px;
    margin-bottom:22px;
    color:#f1f1f1;
  }
}

/* ===== MOBILE ===== */
@media(max-width:767px){
  .u-slide-item{height:55vh;}

  .u-img-desktop{display:none;}
  .u-slide-media{position:absolute;inset:0;}

  .u-img-mobile{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }

  .u-slide-content{
    position:absolute;
    inset:0;
    z-index:3;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:16px;
    color:#fff;
    background:linear-gradient(
      to bottom,
      rgba(0,0,0,.55),
      rgba(0,0,0,.25),
      rgba(0,0,0,.65)
    );
  }

  .u-slide-content h1,
  .u-slide-content h2{
    font-size:22px;
    margin:6px 0;
    line-height:1.25;
  }

  .u-slide-content p{
    font-size:13px;
    margin-bottom:12px;
  }
}

/* ===== BADGE ===== */
.u-badge{
  background:#ffffff;
  color:var(--u-primary);
  padding:6px 16px;
  border-radius:20px;
  border:1px solid var(--u-primary);
  font-size:12px;
  margin-bottom:12px;
}

/* ===== CTA BUTTON + ANIMATION ===== */
.u-cta-btn{
  background:var(--u-primary);
  padding:12px 28px;
  border-radius:40px;
  font-size:15px;
  font-weight:700;
  color:#ffffff;
  text-decoration:none;
  position:relative;
  animation:uPulse 2s infinite;
}

@keyframes uPulse{
  0%{
    box-shadow:0 0 0 0 rgba(181,37,19,.6);
    transform:scale(1);
  }
  70%{
    box-shadow:0 0 0 18px rgba(181,37,19,0);
    transform:scale(1.04);
  }
  100%{
    box-shadow:0 0 0 0 rgba(181,37,19,0);
    transform:scale(1);
  }
}

@media(min-width:768px){
  .u-cta-btn:hover{
    transform:scale(1.08);
  }
}

/* ===== DOTS ===== */
.u-dot-nav{
  position:absolute;
  bottom:14px;
  width:100%;
  display:flex;
  justify-content:center;
  gap:10px;
  z-index:50;
}
.u-dot{
  width:10px;
  height:10px;
  background:rgba(255,255,255,.35);
  border-radius:50%;
}
.u-dot.active{
  width:28px;
  border-radius:10px;
  background:var(--u-primary);
}

/* END SLIDER */




/* EMERGANCY NUMBER */

.emergency-wrapper {
    width: 100%;
    background-color: #004aad; /* Dark Blue BG 🔵 */
    padding: 10px 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emergency-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.emergency-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.emergency-number {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
}

/* 🚨 BLINKING ANIMATION (Red to Yellow) */
.blink-number {
    animation: colorBlink 1s infinite;
}

@keyframes colorBlink {
    0% { color: #ff0000; }   /* Red 🔴 */
    50% { color: #ffff00; }  /* Yellow 🟡 */
    100% { color: #ff0000; } /* Red 🔴 */
}

/* 📱 MOBILE RESPONSIVE (Up to 767px) */
@media (max-width: 767px) {
    .emergency-wrapper {
        padding: 8px 5px; /* Kam space lega mobile par */
    }
    
    .emergency-content {
        flex-direction: column; /* Text aur Number upar niche ho jayenge */
        gap: 5px;
    }

    .emergency-text {
        font-size: 14px; /* Mobile par chota text */
    }

    .emergency-number {
        font-size: 18px; /* Mobile par number ka size adjustment */
    }
}

/* 💻 LAPTOP/DESKTOP VIEW (768px and above) */
@media (min-width: 768px) {
    .emergency-wrapper {
        height: 80px; /* Laptop par chauda dikhega */
    }
}


/* END EMARGENCY NO */


 




  /* ================= SHOP BY CATEGORY ================= */
/* ================= SHOP BY CATEGORY ================= */
.shop-category{
  padding:40px 10px;   /* 👈 overall height kam */
  text-align:center;
  background:#fff;
}

.shop-category__title{
  font-size:24px;      /* 👈 heading smaller */
  font-weight:600;
  margin-bottom:25px;
  color:#000;
}

/* WRAP */
.shop-category__wrap{
  display:flex;
  justify-content:center;
  gap:30px;            /* 👈 gap kam */
  flex-wrap:nowrap;
}

/* ITEM */
.category-item{
  text-decoration:none;
  color:#222;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* CIRCLE (50% SMALLER) */
.category-circle{
  width:160px;         /* 👈 pehle 260px */
  height:160px;
  border-radius:2%;
  border:1px solid #cfcfcf;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  transition:.3s ease;
}

.category-circle img{
  max-width:65%;
  max-height:65%;
  object-fit:contain;
}

/* TEXT */
.category-item span{
  font-size:15px;      /* 👈 text smaller */
  font-weight:500;
}

/* HOVER */
.category-item:hover .category-circle{
  transform:scale(1.05);
  border-color:#1ec6b6;
}

/* ================= MOBILE ================= */
@media(max-width:600px){
  .category-circle{
    width:120px;       /* 👈 mobile aur chhota */
    height:120px;
  }

  .shop-category__title{
    font-size:20px;
  }

  .category-item span{
    font-size:13px;
  }

  .shop-category__wrap{
    gap:15px;
  }
}















/* <!-- Full Height Banner + Compact Form --> */

.hero-wrapper {
  width: 100%;
  background: #f2f3ff;
}

/* ================= GRID ================= */
.hero-container {
  display: grid;
  grid-template-columns: 2.5fr 0.8fr;
  align-items: stretch;
}

/* ================= LEFT IMAGE ================= */
.hero-left {
  background-image: url('https://www.gen1service.com/images/banners/chimney-banner2.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 REAL IMAGE RIGHT SHIFT */
  margin-left: 20px;   /* yahin se control karo */
}

/* Overlay */
.hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 25px 30px;
  text-align: center;
  max-width: 90%;
}

/* Text */
.tagline {
  color: #ff4a4a;
  font-size: 16px;
  font-weight: 600;
}

.hero-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-top: 5px;
}

/* Call Button */
.call-btn {
  margin-top: 15px;
  display: inline-block;
  background: #1a1aff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 17px;
  text-decoration: none;
}

/* ================= RIGHT FORM ================= */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.form-box {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 350px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

/* Form Title */
.form-box h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
}

/* Inputs */
input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #bbb;
  margin-bottom: 10px;
}

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Submit */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: #1a1aff;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* =================================================
   📱 MOBILE – EXACT OLD LOOK (NO CHANGE)
   ================================================= */
@media (max-width: 768px) {

  .hero-container {
    grid-template-columns: 1fr;
    min-height: 38vh;
  }

  .hero-left {
    min-height: 24vh;
    margin-left: 0;        /* 🔥 mobile reset */
    background-position: center;
  }

  .hero-overlay {
    padding: 12px 16px;
  }

  .tagline {
    font-size: 13px;
  }

  .hero-title {
    font-size: 18px;
  }

  .call-btn {
    font-size: 14px;
    padding: 6px 15px;
  }

  .hero-right {
    padding: 0;
  }

  .form-box {
    padding: 14px;
    width: 95%;
  }

  input,
  select,
  textarea {
    padding: 6px;
    font-size: 12px;
  }

  .two-col {
    gap: 5px;
  }

  .submit-btn {
    font-size: 15px;
    padding: 9px;
  }
}

/* <!-- END Full Height Banner + Compact Form --> */















/* ================== START SEO CONTENT (below logo/header) ================== */

.seo-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,.05);
  padding: 18px 16px;
  margin: 16px auto;
  max-width: 1400px;
}

.seo-content h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.seo-content h3 {
  font-size: 1.2rem;
  margin: 14px 0 6px;
  color: #1A4C8B;
}

.seo-content p {
  color: #333;
  line-height: 1.65;
  margin: 6px 0 10px;
  font-size: 0.95rem;
}

.seo-content ul,
.seo-content ol {
  margin: 6px 0 8px 18px;
  font-size: 0.95rem;
}

.seo-content li {
  margin: 4px 0;
}

.seo-content strong {
  color: #000;
}

.faq {
  margin-top: 10px;
}

.faq details {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin: 6px 0;
  padding: 10px 12px;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

/* ================= MOBILE (NO CHANGE) ================= */
@media (max-width: 600px) {

  .seo-content {
    padding: 14px 12px;
    margin: 10px;
  }

  .seo-content h2 {
    font-size: 1.3rem;
  }

  .seo-content h3 {
    font-size: 1.05rem;
  }

  .seo-content p,
  .seo-content li,
  .faq summary {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ================= DESKTOP / LAPTOP WIDTH FIX ================= */
@media (min-width: 769px) {

  .seo-content {
    max-width: 95%;     /* 🔥 left-right space reduced */
    padding-left: 24px;
    padding-right: 24px;
  }

}


/* ================== END SEO CONTENT (below logo/header) ================== */






















/* Start About us  */

/* ================= NEXT LEVEL ABOUT ================= */
.nl-about {
  background: linear-gradient(135deg,#f5f7ff,#ffffff);
  padding: 70px 0;
}

.nl-container {
  max-width: 1400px;
  width: 95%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.nl-badge {
  display: inline-block;
  background: #1a1aff;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.nl-left h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #0b1f3a;
}

.nl-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.nl-features {
  list-style: none;
  padding: 0;
}

.nl-features li {
  font-size: 14.5px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-16px);
  animation: slideIn 0.5s forwards;
}

.nl-features li:nth-child(1){animation-delay:.1s}
.nl-features li:nth-child(2){animation-delay:.2s}
.nl-features li:nth-child(3){animation-delay:.3s}
.nl-features li:nth-child(4){animation-delay:.4s}
.nl-features li:nth-child(5){animation-delay:.5s}

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

/* RIGHT SIDE */
.nl-right {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.nl-rating {
  text-align: center;
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  font-size: 20px;
}

.nl-rating h3 {
  font-size: 24px;
  margin: 4px 0;
  color: #1a1aff;
}

.nl-rating p {
  font-size: 13px;
  color: #444;
}

.nl-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-box {
  background: #f6f8ff;
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
}

.stat-box h4 {
  font-size: 20px;
  color: #1a1aff;
}

.stat-box p {
  font-size: 12.5px;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .nl-container {
    grid-template-columns: 1fr;
  }

  .nl-left h2 {
    font-size: 24px;
  }

  .nl-right {
    padding: 20px;
  }
}


/* End About us  */
















/* ================= CONTACT SECTION ================= */
.nl-contact {
  background: linear-gradient(135deg,#f6f8ff,#ffffff);
  padding: 80px 0;
}

.nl-contact-container {
  max-width: 1400px;
  width: 95%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.nl-contact-badge {
  background: #1a1aff;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
}

.nl-contact-info h2 {
  font-size: 34px;
  margin-bottom: 14px;
  color: #0b1f3a;
}

.nl-contact-info p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.nl-contact-box {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.contact-item span {
  font-size: 22px;
}

/* SUPPORT BUTTON */
.support-btn {
  background: #0b1f3a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* MAP */
.nl-contact-map {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.nl-contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ================= POPUP ================= */
.support-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  width: 95%;
  max-width: 420px;
  padding: 24px;
  border-radius: 18px;
  position: relative;
}

.popup-box h3 {
  text-align: center;
  margin-bottom: 16px;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.submit-support {
  width: 100%;
  background: #1a1aff;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 600;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nl-contact {
    padding: 50px 0;
  }

  .nl-contact-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .nl-contact-info h2 {
    font-size: 24px;
  }

  .nl-contact-map iframe {
    height: 300px;
  }
}/* ================= CONTACT SECTION ================= */
.nl-contact {
  background: linear-gradient(135deg,#f6f8ff,#ffffff);
  padding: 80px 0;
}

.nl-contact-container {
  max-width: 1400px;
  width: 95%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* MAP | INFO */
  gap: 50px;
  align-items: center;
}

/* ================= LEFT : MAP ================= */
.nl-contact-map {
  order: 1; /* LEFT on desktop */
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.nl-contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ================= RIGHT : INFO ================= */
.nl-contact-info {
  order: 2; /* RIGHT on desktop */
}

.nl-contact-badge {
  background: #1a1aff;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
}

.nl-contact-info h2 {
  font-size: 34px;
  margin-bottom: 14px;
  color: #0b1f3a;
}

.nl-contact-info p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #333;
}

/* INFO CARDS */
.nl-contact-box {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  align-items: center;
}

.contact-item span {
  font-size: 22px;
}

.contact-item strong {
  font-size: 14px;
  color: #1a1aff;
}

.contact-item p {
  font-size: 14px;
  margin: 0;
}

/* SUPPORT BUTTON */
.support-btn {
  background: #0b1f3a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.support-btn:hover {
  background: #000;
}

/* ================= SUPPORT POPUP ================= */
.support-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  width: 95%;
  max-width: 420px;
  padding: 24px;
  border-radius: 18px;
  position: relative;
}

.popup-box h3 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.submit-support {
  width: 100%;
  background: #1a1aff;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* ================= MOBILE (NO CHANGE) ================= */
@media (max-width: 768px) {

  .nl-contact {
    padding: 50px 0;
  }

  .nl-contact-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Mobile order default */
  .nl-contact-map {
    order: 2;
  }

  .nl-contact-info {
    order: 1;
  }

  .nl-contact-info h2 {
    font-size: 24px;
  }

  .nl-contact-info p {
    font-size: 14px;
  }

  .nl-contact-map iframe {
    height: 300px;
  }

  .support-btn {
    font-size: 15px;
    padding: 12px 26px;
  }
}

/* ================= END CONTACT SECTION ================= */
