/* ============================================================
   Dublin Battery Replacements — style.css
   Consolidated from: default.css + style.css + responsive.css
   Bootstrap replaced with lightweight grid
   ============================================================ */

/* Google Fonts — loaded non-blocking via header.php <link> tags */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --red:        #e81c2e;
  --red-hover:  #c91525;
  --navy:       #0c2957;
  --navy-dark:  #000000;
  --green:      #25D366;
  --white:      #ffffff;
  --body-color: #777;
  --head-color: #00173c;
  --font-head:  'Rajdhani', sans-serif;
  --font-body:  'Roboto', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  margin: 0;
}
a { text-decoration: none; color: var(--head-color); transition: color .3s; }
a:hover { color: var(--red); }
button { cursor: pointer; }
button:focus, input:focus, textarea:focus { outline: none; box-shadow: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin-top: 0; margin-bottom: 15px; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--head-color);
  margin-top: 0;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 40px; }
h2 { font-size: 35px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
address { font-style: normal; }
.fix { overflow: hidden; }
.p-relative { position: relative; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.img-fluid   { max-width: 100%; height: auto; }

/* ── Bootstrap-compatible Grid (lightweight) ────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-fluid { width: 100%; padding: 0 15px; }
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row > * { padding: 0 15px; box-sizing: border-box; }

/* Columns */
.col-lg-2  { width: 16.6667%; }
.col-lg-3  { width: 25%; }
.col-lg-4  { width: 33.3333%; }
.col-lg-5  { width: 41.6667%; }
.col-lg-6  { width: 50%; }
.col-lg-7  { width: 58.3333%; }
.col-lg-8  { width: 66.6667%; }
.col-xl-2  { width: 16.6667%; }
.col-xl-3  { width: 25%; }
.col-xl-4  { width: 33.3333%; }
.col-xl-7  { width: 58.3333%; }
.col-xl-12 { width: 100%; }
.col-lg-12 { width: 100%; }
.col-6     { width: 50%; }
.col-12    { width: 100%; }
.offset-lg-1 { margin-left: 8.3333%; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.flex-row-reverse { flex-direction: row-reverse; }
.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }

/* ── Spacing utilities (used by pages) ──────────────────── */
.pt-90  { padding-top: 90px; }
.pt-100 { padding-top: 100px; }
.pt-120 { padding-top: 120px; }
.pb-60  { padding-bottom: 60px; }
.pb-70  { padding-bottom: 70px; }
.pb-80  { padding-bottom: 80px; }
.pb-105 { padding-bottom: 105px; }
.pb-120 { padding-bottom: 120px; }
.mt-20  { margin-top: 20px; }
.mt-30  { margin-top: 30px; }
.mt-40  { margin-top: 40px; }
.mb-30  { margin-bottom: 30px; }
.mb-50  { margin-bottom: 50px; }
.mb-80  { margin-bottom: 80px; }
.pb-25  { padding-bottom: 25px; }
.pb-30  { padding-bottom: 30px; }
.py-5   { padding-top: 5px; padding-bottom: 5px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 30px;
  border-radius: 4px;
  border: none;
  color: #fff;
  background: var(--red);
  transition: background .3s, color .3s;
  line-height: 1;
  cursor: pointer;
}
.btn:hover { background: var(--red-hover); color: #fff; }
.btn.ss-btn { background: var(--red); color: #fff; }
.btn.ss-btn:hover { background: var(--navy); color: #fff; }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-green { background: var(--green); border-color: var(--green); color: #fff; }
.btn-green:hover { background: #1da850; color: #fff; }
.slider-btn { display: inline-block; }

/* ── Form feedback ──────────────────────────────────────── */
.form-feedback {
  padding: 14px;
  text-align: center;
  font-weight: 600;
}
.form-feedback--success { background: var(--green); color: #fff; }
.form-feedback--error   { background: var(--red);   color: #fff; }

/* ── Header ─────────────────────────────────────────────── */
.header-area { position: relative; z-index: 100; }

.second-header {
  background: var(--navy-dark);
  padding: 8px 0;
  color: #fff;
}
.second-header a,
.second-header span { color: #fff; }
.second-header a:hover { color: #ccc; }

.header-cta ul { display: flex; align-items: center; }
.header-cta ul li { display: inline-block; padding-right: 20px; }
.header-cta ul li svg { color: var(--red); vertical-align: middle; margin-right: 4px; }

.header-social a {
  color: #fff;
  margin-left: 15px;
  display: inline-block;
  font-size: 16px;
}
.header-social a:hover { color: var(--red); }

.top-btn {
  background: var(--red);
  padding: 12px 22px;
  display: inline-block;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  white-space: nowrap;
}
.top-btn:hover { background: var(--navy); color: #fff; }
.top-btn svg { vertical-align: middle; }

.menu-area {
  background: var(--navy-dark);
  position: relative;
  z-index: 99;
  box-shadow: 0 10px 15px rgba(25,25,25,.1);
}
.menu-area .second-menu { padding: 5px 0; }
.menu-area .row { min-height: 80px; flex-wrap: nowrap; align-items: center; }
.menu-area.sticky {
  /* sticky disabled — header scrolls with page */
}
.second-menu { position: relative; z-index: 9; }

.logo { width: 100%; max-width: 180px; }
.logo a { display: block; }
.logo a img { display: block; width: 100%; height: auto; max-height: 80px; object-fit: contain; }

/* Nav row column overrides — keep on one line at desktop */
@media (min-width: 992px) {
  .second-menu .col-6 { width: auto; }
  .second-menu .col-lg-2  { width: 16.6667%; }
  .second-menu .col-lg-7  { width: 58.3333%; }
  .second-menu .col-xl-7  { width: 58.3333%; }
  .second-menu .col-lg-3  { width: 25%; }
  .second-menu .col-xl-3  { width: 25%; }
}

/* Desktop nav */
.main-menu nav#main-nav ul { display: flex; align-items: center; justify-content: center; gap: 40px; }
.main-menu nav#main-nav ul li a {
  display: block;
  color: #fff;
  padding: 20px 0;
  font-weight: 700;
  font-size: 17px;
  font-family: var(--font-head);
  transition: color .2s;
}
.main-menu nav#main-nav ul li a:hover { color: var(--red); }

.right-menu ul { display: flex; align-items: center; }
.right-menu li { float: left; padding: 10px 15px 10px 0; }
.right-menu .icon { float: left; margin-right: 15px; }
.right-menu .icon img { border-radius: 50%; width: 40px; height: 40px; object-fit: contain; }
.right-menu .text { float: left; padding-top: 5px; }
.right-menu .text span { display: block; color: #ccc; font-size: 13px; }
.right-menu .text strong { color: #fff; font-size: 20px; font-weight: 900; font-family: var(--font-head); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 38px; height: 26px;
  cursor: pointer;
  background: none; border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 3px; width: 100%;
  background: var(--red);
  border-radius: 3px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--navy);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer nav#main-nav ul { flex-direction: column; gap: 0; text-align: center; }
.mobile-nav-drawer nav#main-nav ul li { margin: 20px 0; }
.mobile-nav-drawer nav#main-nav ul li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0;
}
.mobile-nav-drawer nav#main-nav ul li a:hover { color: var(--red); }
.mobile-nav-close {
  position: absolute;
  top: 25px; right: 25px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb-area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
}
.breadcrumb-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.breadcrumb-wrap { position: relative; z-index: 1; }
.breadcrumb-title h1 { color: #fff; font-size: 2.2rem; margin-bottom: 15px; }
.breadcrumb { display: inline-flex; flex-wrap: wrap; padding: 0; margin: 0; }
.breadcrumb li { display: inline-block; }
.breadcrumb li a { color: #fff; font-size: 15px; }
.breadcrumb-item + .breadcrumb-item::before {
  content: "|";
  padding: 0 10px;
  color: #ddd;
}
.breadcrumb > .active { color: rgba(255,255,255,.8); }

@media (max-width: 991px) {
  .breadcrumb-area { background-image: linear-gradient(135deg,#000 0%,#1a1a1a 100%) !important; }
}

/* ── Section titles ─────────────────────────────────────── */
.section-title h2 { font-size: 46px; margin-bottom: 0; }
.section-sub {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: var(--red);
  height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 20px;
}
.second-title .section-sub { background: var(--red); }
.about-title h2 { font-size: 46px; }
.second-title.pb-25 { padding-bottom: 25px; }
.cta-title h2 { color: #fff; font-size: 48px; }
.cta-title .section-sub { background: transparent; color: var(--red); padding: 0; height: auto; letter-spacing: 2px; }

/* ── Hero section ───────────────────────────────────────── */
.hero-section {
  position: relative;
  background-color: #000;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.45) 60%,rgba(0,0,0,.55) 100%);
  z-index: 0;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-subtitle {
  color: var(--red);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}
.hero-section h1 { color: #fff; font-size: 2.4rem; line-height: 1.15; margin-bottom: 16px; }
.hero-section p { color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero bot panel */
.hero-bot-panel {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
}
.hero-bot-messages {
  min-height: 200px; max-height: 240px;
  overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  scroll-behavior: smooth;
  background: #f8f9fb;
}
.hero-bot-messages::-webkit-scrollbar { width: 4px; }
.hero-bot-messages::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.hb-msg { display: flex; flex-direction: column; }
.hb-msg.hb-bot .hb-bubble {
  background: #fff; border: 1px solid #e2e6ef; color: #1a1a2e;
  border-radius: 12px 12px 12px 3px;
  padding: 12px 14px; font-size: 14px; line-height: 1.6;
  max-width: 90%; box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.hb-msg.hb-bot .hb-bubble a { color: var(--red); }
.hb-msg.hb-user { align-items: flex-end; }
.hb-msg.hb-user .hb-bubble {
  background: var(--red); color: #fff;
  border-radius: 12px 12px 3px 12px;
  padding: 10px 14px; font-size: 14px; font-weight: 600; max-width: 85%;
}
.hb-typing { display: flex; gap: 4px; padding: 6px 2px; align-items: center; }
.hb-typing span {
  width: 7px; height: 7px;
  background: #bbb; border-radius: 50%;
  animation: hb-bounce .9s ease-in-out infinite;
}
.hb-typing span:nth-child(2) { animation-delay: .15s; }
.hb-typing span:nth-child(3) { animation-delay: .30s; }
@keyframes hb-bounce {
  0%,80%,100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
}
.hero-bot-input-row {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #e2e6ef;
  background: #fff;
}
.hero-bot-input-row input {
  flex: 1;
  border: 1px solid #d0d5e0; border-radius: 24px;
  padding: 9px 16px; font-size: 14px; color: #1a1a2e;
  outline: none; transition: border-color .2s;
  font-family: inherit;
}
.hero-bot-input-row input:focus { border-color: var(--red); }
.hero-bot-input-row input::placeholder { color: #999; }
#hb-send {
  width: 38px; height: 38px;
  background: var(--red); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background .15s, transform .15s;
}
#hb-send:hover { background: #ff3345; transform: scale(1.05); }
#hb-send svg { width: 15px; height: 15px; fill: #fff; }
#hb-send:disabled { opacity: .5; cursor: not-allowed; transform: none; }
#hb-reset {
  background: none; border: none; color: #999; font-size: 16px;
  cursor: pointer; padding: 0 4px; transition: color .15s; flex-shrink: 0;
}
#hb-reset:hover { color: var(--red); }
.hero-bot-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 10px 12px 6px;
  background: #f8f9fb; border-top: 1px solid #e2e6ef;
}
.hb-action-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px;
  background: #fff; border: 1px solid #e2e6ef; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: #1a1a2e;
  cursor: pointer; transition: border-color .15s, color .15s;
  font-family: inherit; text-align: left;
}
.hb-action-btn:hover { border-color: var(--red); color: var(--red); }
.hero-bot-contact { display: grid; grid-template-columns: 1fr 1fr; }
.hb-contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: opacity .15s;
  font-family: inherit; border: none; cursor: pointer;
}
.hb-contact-btn:hover { opacity: .88; }
.hb-call      { background: var(--red);   color: #fff; }
.hb-whatsapp  { background: var(--green); color: #fff; }

/* ── Feature strip ──────────────────────────────────────── */
.services-box07 {
  border-radius: 4px;
  background: #fff;
  box-shadow: 1px 1.732px 60px 0 rgba(0,0,0,.1);
  padding: 35px;
  height: 100%;
}
.services-box07 .sr-contner { display: flex; align-items: flex-start; gap: 20px; }
.services-box07 .sr-contner .icon { flex-shrink: 0; width: 60px; }
.services-box07 .sr-contner .icon img { width: 60px; height: 60px; object-fit: contain; }
.services-box07 .sr-contner .text h2,
.services-box07 .sr-contner .text h3,
.services-box07 .sr-contner .text h5 { font-size: 20px; margin-bottom: 8px; }
.services-box07 .sr-contner .text p  { margin-bottom: 0; }

/* ── About ──────────────────────────────────────────────── */
.s-about-img { position: relative; }
.s-about-img img { width: 100%; border-radius: 4px; }
.about-text.second-about {
  position: absolute;
  top: 0; right: 20px;
  background: var(--red);
  padding: 25px;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  width: 140px;
}
.about-text.second-about span {
  font-size: 55px; font-weight: 800;
  display: block; font-family: var(--font-head);
  color: #fff;
}
.about-text.second-about p {
  color: #fff; font-size: 16px; font-weight: 700;
  font-family: var(--font-head); margin: 0; line-height: 1.3;
}
.about-content { }
.about-content p { margin-bottom: 15px; }
.green { list-style: none; padding: 0; margin: 15px 0; }
.green li { display: flex; align-items: flex-start; margin-bottom: 8px; color: var(--head-color); }
.green li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}

/* ── Services section ───────────────────────────────────── */
.services-05 { position: relative; }
.services-05 h2,
.services-09 h2 { color: #fff; }
.services-05 .section-title h2 { color: #fff; }
.services-05 .section-title p { color: rgba(255,255,255,.85); }
.services-box-05 { margin-bottom: 30px; }
.services-icon-05 { overflow: hidden; border-radius: 4px 4px 0 0; }
.services-icon-05 img { width: 100%; height: 220px; object-fit: cover; display: block; }
.services-content-05 {
  background: #fff;
  box-shadow: 0 8px 38px 0 rgba(40,40,40,.04);
  padding: 20px;
}
.services-content-05 h4 { font-size: 18px; margin: 0; }
.services-content-05 h4 a { color: var(--head-color); }
.services-content-05 h4 a:hover { color: var(--red); }
.services-text05 p { font-size: 18px; color: #777 !important; }
.services-text05 a { font-size: 18px; color: var(--red); font-weight: 500; text-decoration: underline; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-area { position: relative; }
.cta-btn .btn { margin-top: 10px; }
.s-cta-btn { text-align: right; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-area { padding: 80px 0; }
.faq-area .section-title h2 { color: #fff; }
.faq-wrap .card {
  border: none;
  border-radius: 4px !important;
  margin-bottom: 12px;
  box-shadow: 2.5px 4.33px 15px 0 rgba(0,0,0,.09);
  overflow: hidden;
  background: #fff;
}
.faq-wrap .card-header { padding: 0; background: none; border: none; }
.faq-wrap .card-header h3 { margin: 0; font-size: inherit; }
.faq-btn {
  font-size: 16px;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 18px 60px 18px 20px;
  width: 100%;
  text-align: left;
  background: #f8f8f8;
  border-radius: 0;
  color: var(--head-color);
  position: relative;
  font-family: var(--font-body);
  transition: background .2s;
}
.faq-btn::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-size: 22px;
  background: var(--red);
  color: #fff;
  width: 55px; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.faq-btn.collapsed { background: #fff; }
.faq-btn.collapsed::after { content: "+"; }
.faq-btn:not(.collapsed)::after { content: "−"; }
.faq-collapse { display: none; }
.faq-collapse.show { display: block; }
.card-body { padding: 20px 25px; }

.sd-img { margin: 0 -20px; }
.sd-img img { width: 100%; border-radius: 4px; }

/* ── Coverage grid ──────────────────────────────────────── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px,1fr));
  gap: 8px;
}
.sa-tag {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  color: #333;
  text-align: center;
}

/* ── Contact section ────────────────────────────────────── */
.contact-area { background-repeat: no-repeat; background-position: center; }
.contact-bg02 {
  background: #f7f6fb;
  padding: 60px 50px;
  text-align: center;
  border-radius: 4px;
}
.contact-bg02 h2 { font-size: 36px; }
.single-cta {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
}
.single-cta:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.f-cta-icon { flex-shrink: 0; width: 40px; }
.f-cta-icon svg { color: var(--red); }
.cta-text h2 { font-size: 18px; margin-bottom: 6px; }
.cta-text p,
.cta-text address { margin: 0; }
.cta-text a { color: var(--body-color); }
.cta-text a:hover { color: var(--red); }
.contact-form { }
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-family: inherit;
  font-size: 14px;
  color: #333;
  transition: border-color .2s;
  border-radius: 2px;
}
.contact-field input { height: 46px; }
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--red); }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #999; }
.contact-field textarea { height: 130px; resize: vertical; padding: 12px 15px; }

/* Map */
.map.fix { }

/* ── Service detail pages ───────────────────────────────── */
.service-details { }
.about-area { }
.s-about-content p { margin-bottom: 15px; }
.about-content3 ul.green { margin-top: 20px; }

/* ── Footer ─────────────────────────────────────────────── */
footer.footer-bg { color: #777; }
.f-widget-title h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.f-contact p { color: rgba(255,255,255,.7); }
.footer-social a {
  display: inline-block;
  margin-right: 8px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  text-align: center;
  line-height: 38px;
  color: #fff;
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-link ul li { margin-bottom: 8px; }
.footer-link ul li a { color: rgba(255,255,255,.7); }
.footer-link ul li a::before { content: "+ "; color: var(--red); margin-right: 4px; }
.footer-link ul li a:hover { color: #fff; }
address ul li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
address ul li svg { flex-shrink: 0; margin-top: 4px; }
address ul li a { color: rgba(255,255,255,.7); }
address ul li a:hover { color: #fff; }
address ul li span { color: rgba(255,255,255,.7); }
.copyright-wrap { background: var(--red); padding: 18px 0; }
.copyright-wrap .copy-text { color: #fff; font-size: 14px; }
.copyright-wrap ul { display: flex; justify-content: flex-end; gap: 20px; }
.copyright-wrap ul li a { color: #fff; font-size: 14px; }
.copyright-wrap ul li a:hover { color: rgba(255,255,255,.8); }

/* ── Responsive ─────────────────────────────────────────── */

/* ── Desktop nav: always visible above 991px ────────────── */
@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
  .d-lg-none  { display: none !important; }
  .hamburger  { display: none !important; }
  .col-6.d-flex.d-lg-none { display: none !important; }
}

/* ── Hide desktop-only elements at 991px and below ──────── */
@media (max-width: 991px) {
  .d-lg-block { display: none !important; }
  .d-lg-none  { display: block !important; }
  .hamburger  { display: flex !important; }
  .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5,
  .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-12,
  .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-7,
  .col-xl-12 { width: 100%; }
  .offset-lg-1 { margin-left: 0; }
  .second-header { display: none; }
  .s-cta-btn { text-align: left; }
  .hero-section { padding: 80px 0 40px; min-height: auto !important; }
  .hero-bot-panel { margin-top: 30px; }
  .about-text.second-about { display: none; }
  .sd-img { margin: 30px 0 0; }
  .flex-row-reverse { flex-direction: column; }
  .services-content-05 h4 { font-size: 16px; }
  /* Logo left, hamburger right */
  .second-menu .row { flex-wrap: nowrap; align-items: center; }
  .second-menu .col-6:first-child { width: auto; flex: 1; }
  .second-menu .col-6.d-flex { width: auto; flex-shrink: 0; display: flex !important; }
}

/* Tablet 768–991 */
@media (min-width: 768px) and (max-width: 991px) {
  .col-md-6  { width: 50%; }
  .col-md-4  { width: 33.3333%; }
  .col-md-12 { width: 100%; }
  .contact-bg02 { padding: 30px; margin-bottom: 50px; }
  .section-title h2 { font-size: 38px; }
  .coverage-grid { grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); }
}

/* Mobile <768 */
@media (max-width: 767px) {
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  .section-title h2 { font-size: 30px; text-align: center; }
  .cta-title h2 { font-size: 30px; }
  .breadcrumb-title h1 { font-size: 1.5rem; }
  .breadcrumb-area { min-height: 220px; }
  .col-6 { width: 100%; }
  .hero-section h1 { font-size: 1.8rem; }
  .contact-bg02 { padding: 25px 15px; }
  .services-box07 { padding: 25px; }
  .services-box07 .sr-contner { flex-direction: column; gap: 12px; }
  .coverage-grid { grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); }
  .hero-bot-actions { grid-template-columns: 1fr; }
  .hero-bot-contact { grid-template-columns: 1fr 1fr; }
  .copyright-wrap ul { justify-content: center; margin-top: 10px; }
  .copy-text { text-align: center; }
  .faq-area .row { flex-direction: column; }
  .pt-120 { padding-top: 60px; }
  .pb-120 { padding-bottom: 60px; }
  .pt-100 { padding-top: 50px; }
  .pt-90  { padding-top: 50px; }
  .pb-105 { padding-bottom: 55px; }
