/* =====================================================
   HOMEPAGE — Redesigned Theme
   Brand Colors: Orange #E8531E / #F26522
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --brand-orange: #E8531E;
  --brand-orange-light: #F26522;
  --brand-orange-dark: #C7441A;
  --brand-gradient: linear-gradient(135deg, #E8531E 0%, #F26522 100%);
  --brand-gradient-r: linear-gradient(135deg, #F26522 0%, #E8531E 100%);
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --grey-bg: #f8f9fa;
  --grey-bg-2: #f1f2f6;
  --text-dark: #2d3436;
  --text-muted: #636e72;
  --text-light: #b2bec3;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: .3s ease;
}

/* ---------- Global Overrides ---------- */
.homepage-section {
  padding: 80px 0;
  position: relative;
}

.homepage-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-orange);
  margin-bottom: 12px;
  position: relative;
}

.section-header .section-label {
  /* inherits from .section-label */
}

.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--brand-orange);
  vertical-align: middle;
  margin: 0 12px;
  opacity: .5;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  margin: 0 0 16px;
  letter-spacing: 1px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.light .section-label {
  color: var(--brand-orange-light);
}

.section-header.light .section-label::before,
.section-header.light .section-label::after {
  background: var(--brand-orange-light);
}

.section-header.light h2 {
  color: #fff;
}

.section-header.light p {
  color: rgba(255, 255, 255, .75);
}

/* ==========================================================================
   HERO SECTION — Pure CSS Hero Slider
   No RevSlider dependency. Fully responsive on all portrait & landscape sizes.
   Uses viewport units + flexbox for bulletproof centering.
   ========================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 620px;
  /* Desktop default */
  overflow: hidden;
  background: #0a0a0a;
}

/* --- Slider wrapper --- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* --- Individual slide --- */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* --- Dark overlay --- */
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 3;
}

/* --- Content wrapper — flexbox centered --- */
.hero-slide__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
  box-sizing: border-box;
  color: #fff;
}

/* --- Tag pill --- */
.hero-caption__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  background: var(--brand-orange);
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 22px;
  white-space: nowrap;
  line-height: 1.4;
}

/* --- Title --- */
.hero-caption__title {
  font-size: 60px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin: 0 0 20px 0;
  padding: 0;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6), 0 0 40px rgba(0, 0, 0, .3);
}

/* --- Subtitle --- */
.hero-caption__sub {
  font-size: 19px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  padding: 0;
  opacity: 0.95;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

/* --- CTA button --- */
.hero-caption__btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
  background: transparent;
  white-space: nowrap;
}

.hero-caption__btn:hover,
.hero-caption__btn:focus {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(232, 83, 30, .5);
}

.hero-caption__btn i {
  margin-left: 8px;
}

/* --- Nav arrows --- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  background: rgba(0, 0, 0, .25);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  padding: 0;
  outline: none;
}

.hero-arrow:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}

.hero-arrow--left {
  left: 20px;
}

.hero-arrow--right {
  right: 20px;
}

/* --- Dots --- */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
  outline: none;
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}

/* ---------------------------------------------------------------
   RESPONSIVE — Tablets (≤ 991px)
   --------------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-section {
    height: 500px;
  }

  .hero-caption__title {
    font-size: 40px;
    letter-spacing: 1.5px;
  }

  .hero-caption__sub {
    font-size: 15px;
  }

  .hero-caption__tag {
    font-size: 11px;
    padding: 5px 16px;
    margin-bottom: 16px;
  }

  .hero-caption__btn {
    padding: 11px 28px;
    font-size: 12px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .hero-arrow--left {
    left: 14px;
  }

  .hero-arrow--right {
    right: 14px;
  }
}

/* ---------------------------------------------------------------
   RESPONSIVE — Large portrait phones (≤ 767px portrait)
   --------------------------------------------------------------- */
@media (max-width: 767px) and (orientation: portrait) {
  .hero-section {
    height: 55vh;
    min-height: 320px;
    max-height: 480px;
  }

  .hero-slide__content {
    max-width: 100%;
    padding: 24px 20px;
  }

  .hero-caption__tag {
    font-size: 9px;
    letter-spacing: 2px;
    padding: 4px 14px;
    margin-bottom: 14px;
  }

  .hero-caption__title {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-caption__sub {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
  }

  .hero-caption__btn {
    padding: 10px 26px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 14px;
    gap: 8px;
  }

  .hero-dot {
    width: 9px;
    height: 9px;
  }
}

/* ---------------------------------------------------------------
   RESPONSIVE — Medium portrait phones (≤ 414px portrait)
   --------------------------------------------------------------- */
@media (max-width: 414px) and (orientation: portrait) {
  .hero-section {
    height: 50vh;
    min-height: 290px;
    max-height: 420px;
  }

  .hero-slide__content {
    padding: 20px 18px;
  }

  .hero-caption__tag {
    font-size: 8px;
    letter-spacing: 1.5px;
    padding: 3px 12px;
    margin-bottom: 10px;
  }

  .hero-caption__title {
    font-size: 22px;
    letter-spacing: 0.5px;
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .hero-caption__sub {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .hero-caption__btn {
    padding: 9px 22px;
    font-size: 10px;
  }

  .hero-arrow {
    width: 28px;
    height: 28px;
    font-size: 11px;
    border-width: 1.5px;
  }

  .hero-arrow--left {
    left: 8px;
  }

  .hero-arrow--right {
    right: 8px;
  }

  .hero-dots {
    bottom: 10px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }
}

/* ---------------------------------------------------------------
   RESPONSIVE — Small portrait phones (≤ 375px portrait)
   --------------------------------------------------------------- */
@media (max-width: 375px) and (orientation: portrait) {
  .hero-section {
    height: 48vh;
    min-height: 270px;
    max-height: 380px;
  }

  .hero-slide__content {
    padding: 16px 16px;
  }

  .hero-caption__tag {
    font-size: 7px;
    padding: 3px 10px;
    margin-bottom: 8px;
  }

  .hero-caption__title {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
  }

  .hero-caption__sub {
    font-size: 10px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .hero-caption__btn {
    padding: 8px 18px;
    font-size: 9px;
    letter-spacing: 0.8px;
  }
}

/* ---------------------------------------------------------------
   RESPONSIVE — Extra-small portrait phones (≤ 320px portrait)
   --------------------------------------------------------------- */
@media (max-width: 320px) and (orientation: portrait) {
  .hero-section {
    height: 45vh;
    min-height: 240px;
    max-height: 340px;
  }

  .hero-caption__tag {
    font-size: 6.5px;
    padding: 2px 8px;
    margin-bottom: 6px;
  }

  .hero-caption__title {
    font-size: 17px;
    margin-bottom: 5px;
  }

  .hero-caption__sub {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .hero-caption__btn {
    padding: 7px 16px;
    font-size: 8px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 8px;
  }

  .hero-dot {
    width: 7px;
    height: 7px;
  }
}

/* ---------------------------------------------------------------
   RESPONSIVE — Landscape phones (≤ 767px landscape)
   --------------------------------------------------------------- */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-section {
    height: 100vh;
    min-height: 280px;
    max-height: 400px;
  }

  .hero-slide__content {
    padding: 16px 40px;
  }

  .hero-caption__tag {
    font-size: 8px;
    padding: 3px 12px;
    margin-bottom: 8px;
  }

  .hero-caption__title {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .hero-caption__sub {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .hero-caption__btn {
    padding: 8px 20px;
    font-size: 10px;
  }

  .hero-arrow {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/* Override components.css insane padding on slider title shapes */
.c-layout-revo-slider-4 .c-main-title-circle,
.c-layout-revo-slider-4 .c-main-title-square {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

/* ---------- About / Intro Section ---------- */
.about-section {
  background: var(--white);
}

.about-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-grid .about-image {
  flex: 0 0 45%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-grid .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.about-grid .about-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-grid .about-content {
  flex: 1;
}

.about-grid .about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.about-grid .about-content .accent-text {
  font-size: 16px;
  color: var(--brand-orange);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-grid .about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.about-grid .about-content .highlight-box {
  background: var(--grey-bg);
  border-left: 4px solid var(--brand-orange);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}

.about-grid .about-content .highlight-box p {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 0;
  margin-top: 50px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid #eee;
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--brand-gradient);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label {
  color: #fff;
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
  transition: var(--transition);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 8px;
  transition: var(--transition);
}

/* ---------- Products Section ---------- */
.products-section {
  background: var(--grey-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card .product-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(232, 83, 30, .1), rgba(242, 101, 34, .15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand-orange);
  transition: var(--transition);
}

.product-card:hover .product-icon {
  background: var(--brand-gradient);
  color: #fff;
  transform: scale(1.1);
}

.product-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.product-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.product-card .card-arrow {
  display: inline-block;
  margin-top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #eee;
  line-height: 32px;
  color: var(--text-light);
  transition: var(--transition);
}

.product-card:hover .card-arrow {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}

/* ---------- Services Section ---------- */
.services-section {
  background: var(--dark);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,.03)"/></svg>');
  background-size: 40px 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .3s ease;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.service-card:hover,
a.service-card:focus {
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--brand-orange);
  transform: translateY(-3px);
}

.service-card .service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--brand-gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.service-card h5 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.service-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Why Infocare Section ---------- */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-content .why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.why-content .why-item .why-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.why-content .why-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 5px;
}

.why-content .why-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-image .badge-box {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--brand-gradient);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.why-image .badge-box .badge-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.why-image .badge-box .badge-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---------- Coverage + Quality Row ---------- */
.cq-section {
  background: var(--grey-bg);
}

.cq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cq-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.cq-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cq-card h3 i {
  color: var(--brand-orange);
  font-size: 24px;
}

.cq-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cq-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cq-card ul li:last-child {
  border-bottom: none;
}

.cq-card ul li i {
  color: var(--brand-orange);
  font-size: 12px;
  flex-shrink: 0;
}

.cq-card .quality-quote {
  background: linear-gradient(135deg, rgba(232, 83, 30, .05), rgba(242, 101, 34, .1));
  border-left: 4px solid var(--brand-orange);
  padding: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 16px;
}

.cq-card .quality-quote p {
  font-size: 15px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}

/* ---------- Clients / Association ---------- */
.clients-section {
  background: var(--white);
}

.clients-section .owl-carousel .item {
  padding: 20px;
}

.clients-section .owl-carousel .item img {
  filter: grayscale(100%);
  opacity: .5;
  transition: all .3s ease;
  max-height: 60px;
  margin: 0 auto;
}

.clients-section .owl-carousel .item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- CTA Banner ---------- */
.cta-section {
  background: linear-gradient(135deg, #BF4A1A 0%, #D45A20 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, .25);
  color: var(--brand-orange-dark);
  text-decoration: none;
}

.btn-outline-white {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: all .3s ease;
  margin-left: 12px;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--brand-orange);
  border-color: #fff;
  text-decoration: none;
}

/* ---------- Orange Buttons Generic ---------- */
.btn-brand {
  display: inline-block;
  padding: 12px 30px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232, 83, 30, .4);
  color: #fff;
  text-decoration: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .homepage-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about-grid {
    flex-direction: column;
    gap: 30px;
  }

  .about-grid .about-image {
    flex: none;
    width: 100%;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 50%;
    border-bottom: 1px solid #eee;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

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

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

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

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

@media (max-width: 576px) {
  .homepage-section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header .section-label::before,
  .section-header .section-label::after {
    display: none;
  }

  .stats-row {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

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

  .cta-section h3 {
    font-size: 22px;
  }

  .btn-outline-white {
    margin-left: 0;
    margin-top: 12px;
  }
}

/* ---------- CTA Pre-Footer (Inner Pages) ---------- */
.cta-prefooter {
  position: relative;
}

.cta-prefooter h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-prefooter p {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {

  /* Reduce CTA padding on mobile */
  .cta-section {
    padding: 40px 0 !important;
    margin-top: 30px;
  }

  .cta-prefooter {
    padding: 40px 0 !important;
    margin-top: 30px;
  }

  .cta-prefooter h3 {
    font-size: 22px !important;
  }

  .cta-prefooter p {
    font-size: 14px !important;
    padding: 0 10px;
  }

  .cta-prefooter .btn-cta,
  .cta-prefooter .btn-outline-white {
    display: block;
    margin: 8px auto;
    max-width: 260px;
    text-align: center;
  }

  /* Force-show WOW-animated content inside CTA sections on mobile
     WOW.js hides elements until they scroll into view, but at the
     bottom of the page the trigger often never fires. */
  .cta-prefooter .wow,
  .cta-section .wow {
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-animation: none !important;
    animation: none !important;
  }
}

/* ---------- Breadcrumb Banner Override ---------- */
.c-layout-breadcrumbs-1.c-bgimage {
  padding: 50px 0 !important;
  position: relative;
  overflow: hidden;
}

.c-layout-breadcrumbs-1.c-bgimage::after {
  content: '' !important;
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .55) !important;
  z-index: 0 !important;
  display: block !important;
  clear: none !important;
}

.c-layout-breadcrumbs-1.c-bgimage>.container {
  position: relative;
  z-index: 1;
}