/* =============================================
   GLOVES MANUFACTURER INDIA — style.css
   Color Palette:
   --navy:    #0D1B3E (Dark Blue primary)
   --blue:    #1A3A6B (Medium Blue)
   --orange:  #FF6B35 (Accent Orange)
   --amber:   #F7A825 (Warm Accent)
   --white:   #FFFFFF
   --light:   #F4F7FB
   --dark:    #0A1628
============================================= */

/* ===== GOOGLE FONTS + CSS RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0E2A58;
  --blue:   #1A3A6B;
  --orange: #F3EB0A;
  --amber:  #F7A825;
  --white:  #FFFFFF;
  --light:  #F4F7FB;
  --dark:   #0A1628;
  --gray:   #6B7A99;
  --border: #E2E8F0;
  --card-shadow: 0 4px 24px rgba(13,27,62,0.10);
  --card-hover:  0 12px 40px rgba(13,27,62,0.18);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.32s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== UTILITY ===== */
.section-pad { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  background: rgba(255,107,53,0.10);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,107,53,0.25);
}
.section-label.light { color: var(--amber); background: rgba(247,168,37,0.12); border-color: rgba(247,168,37,0.3); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light-title { color: var(--white); }
.accent-text { color: var(--orange); }
.section-desc { color: var(--gray); font-size: 16px; margin-bottom: 12px; }
.section-sub-desc { color: var(--gray); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.glove-icon {
  font-size: 54px;
  color: var(--orange);
  animation: glowPulse 1s ease-in-out infinite alternate;
  margin-bottom: 20px;
}
@keyframes glowPulse {
  from { text-shadow: 0 0 10px rgba(255,107,53,0.4); transform: scale(1); }
  to   { text-shadow: 0 0 30px rgba(255,107,53,0.9); transform: scale(1.08); }
}
.preloader-bar {
  width: 200px; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px; margin: 0 auto 14px;
  overflow: hidden;
}
.preloader-bar span {
  display: block; width: 0; height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 10px;
  animation: loadBar 1.8s ease-in-out forwards;
}
@keyframes loadBar { to { width: 100%; } }
.preloader-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 2px;
  font-family: var(--font-head);
  text-transform: uppercase;
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border: none; border-radius: 50%;
  color: white; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
  cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(255,107,53,0.5); }

/* ===== NAVBAR ===== */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  background: rgb(3 40 96 / 97%);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  color: white !important; font-family: var(--font-head);
  font-weight: 800; font-size: 18px; letter-spacing: 0.5px;
}
.brand-icon { font-size: 26px; color: var(--orange); }
.brand-text .accent { color: var(--orange); }
.toggler-icon { color: white; font-size: 28px; display: block; line-height: 1; }
.navbar-toggler { border: 2px solid rgba(255,107,53,0.5); padding: 4px 10px; border-radius: var(--radius-sm); }
.navbar-toggler:focus { box-shadow: none; }
.nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-family: var(--font-head); font-weight: 600;
  font-size: 15px; letter-spacing: 0.5px;
  padding: 6px 14px !important;
  position: relative; transition: var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--orange);
  transition: var(--transition); border-radius: 2px;
}
.nav-link:hover { color: var(--orange) !important; }
.nav-link:hover::after { left: 14px; right: 14px; }
.btn-quote {
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: white !important; border-radius: 50px;
  padding: 9px 24px !important; font-family: var(--font-head);
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
  border: none;
}
.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.5); }
@media (max-width: 991px) {
  .navbar-collapse { background: rgba(10,22,40,0.97); backdrop-filter: blur(12px); padding: 16px; border-radius: var(--radius); margin-top: 10px; border: 1px solid rgba(255,107,53,0.15); }
  .btn-quote { margin-top: 10px; display: block; text-align: center; }
}

/* ===== HERO ===== */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-image-wrap { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,22,40,0.90) 0%,
    rgba(13,27,62,0.75) 50%,
    rgba(26,58,107,0.55) 100%
  );
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.4);
  color: var(--orange); padding: 6px 18px; border-radius: 50px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; color: white; line-height: 1.1;
  margin-bottom: 22px;
}
.hero-accent { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,0.80); font-size: 17px;
  max-width: 520px; margin-bottom: 36px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary-hero {
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: white; border-radius: 50px; padding: 14px 36px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  letter-spacing: 0.5px; border: none;
  box-shadow: 0 6px 24px rgba(255,107,53,0.45);
  transition: var(--transition);
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,53,0.55); color: white; }
.btn-outline-hero {
  background: transparent;
  color: white; border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px; padding: 12px 34px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  letter-spacing: 0.5px; transition: var(--transition);
}
.btn-outline-hero:hover { background: white; color: var(--navy); border-color: white; transform: translateY(-3px); }
.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.hero-trust span {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.70); font-size: 14px; font-family: var(--font-head); font-weight: 600;
}
.hero-trust span i { color: var(--orange); }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center; color: rgba(255,255,255,0.6);
  font-size: 12px; letter-spacing: 2px; font-family: var(--font-head);
  animation: bounceHint 2s ease-in-out infinite;
}
.scroll-arrow { font-size: 20px; color: var(--orange); margin-top: 4px; }
@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--light); }
.about-img-wrap {
  position: relative; border-radius: var(--radius);
  overflow: visible;
}
.about-img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  object-fit: cover; height: 460px;
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: white; padding: 18px 22px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 28px rgba(255,107,53,0.4);
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  line-height: 1.4;
}
.about-img-badge i { font-size: 28px; }
.about-checklist { margin: 20px 0; }
.about-checklist div {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--navy); padding: 6px 0;
  font-weight: 600;
}
.about-checklist div i { color: var(--orange); font-size: 18px; flex-shrink: 0; }
.counters-row {
  display: flex; gap: 0; margin-top: 30px;
  border: 2px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.counter-item {
  flex: 1; text-align: center; padding: 20px 10px;
  border-right: 2px solid var(--border);
  background: white;
  transition: var(--transition);
}
.counter-item:last-child { border-right: none; }
.counter-item:hover { background: var(--navy); }
.counter-item:hover .counter-num,
.counter-item:hover .counter-plus { color: var(--orange); }
.counter-item:hover p { color: rgba(255,255,255,0.7); }
.counter-num {
  font-family: var(--font-head); font-size: 2.4rem;
  font-weight: 800; color: var(--navy);
  display: inline; transition: var(--transition);
}
.counter-plus {
  font-family: var(--font-head); font-size: 2rem;
  font-weight: 800; color: var(--orange);
  transition: var(--transition);
}
.counter-item p { font-size: 13px; color: var(--gray); margin: 4px 0 0; font-weight: 600; transition: var(--transition); }

/* ===== PRODUCTS SECTION ===== */
.products-section { background: var(--white); }
.product-card {
  background: white;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--amber));
  transform: scaleY(0); transform-origin: top;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--card-hover); border-color: transparent; }
.product-card:hover::before { transform: scaleY(1); }
.product-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px; transition: var(--transition);
}
.product-icon.orange  { background: rgba(255,107,53,0.12); color: #FF6B35; }
.product-icon.blue    { background: rgba(26,58,107,0.12);  color: #1A3A6B; }
.product-icon.teal    { background: rgba(0,168,168,0.12);  color: #00A8A8; }
.product-icon.red     { background: rgba(220,50,50,0.12);  color: #DC3232; }
.product-icon.green   { background: rgba(40,167,69,0.12);  color: #28A745; }
.product-icon.purple  { background: rgba(111,66,193,0.12); color: #6F42C1; }
.product-card:hover .product-icon { transform: scale(1.12) rotate(-5deg); }
.product-card h5 {
  font-family: var(--font-head); font-size: 1.2rem;
  font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.product-card p { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-family: var(--font-head);
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  transition: var(--transition);
}
.product-link:hover { gap: 10px; }

/* ===== FEATURES / WHY CHOOSE US ===== */
.features-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.features-section::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  top: -100px; right: -100px; border-radius: 50%;
}
.features-img-side {
  position: relative; border-radius: var(--radius);
  overflow: visible;
}
.features-img-side img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.features-cert {
  position: absolute; top: 30px; left: -20px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: white; padding: 14px 18px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}
.features-cert i { font-size: 22px; }
.timeline-list { display: flex; flex-direction: column; gap: 4px; }
.timeline-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition); position: relative;
}
.timeline-item:hover {
  background: rgba(255,107,53,0.10);
  border-color: rgba(255,107,53,0.30);
  transform: translateX(6px);
}
.timeline-icon {
  font-size: 26px; color: var(--orange);
  flex-shrink: 0; margin-top: 2px;
  transition: var(--transition);
}
.timeline-item:hover .timeline-icon { transform: scale(1.15); }
.timeline-body h6 {
  font-family: var(--font-head); font-size: 1.05rem;
  font-weight: 700; color: white; margin-bottom: 4px;
}
.timeline-body p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light); }
.testi-card {
  background: white; border-radius: var(--radius);
  padding: 40px; max-width: 760px; margin: 0 auto;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testi-quote {
  font-size: 48px; color: var(--orange); opacity: 0.2;
  line-height: 1; margin-bottom: 16px;
}
.testi-card > p {
  font-size: 17px; color: var(--navy); line-height: 1.8;
  margin-bottom: 28px; font-style: italic; font-weight: 500;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.testi-avatar { font-size: 44px; color: var(--blue); opacity: 0.6; line-height: 1; }
.testi-author strong { display: block; color: var(--navy); font-size: 16px; }
.testi-author span { font-size: 13px; color: var(--gray); }
.testi-stars { color: var(--amber); font-size: 18px; }
.testi-ctrl {
  width: 44px; height: 44px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 18px;
  box-shadow: var(--card-shadow); transition: var(--transition);
}
.testi-ctrl:hover { background: var(--orange); color: white; }
.carousel-control-prev { left: -28px; }
.carousel-control-next { right: -28px; }
@media (max-width: 768px) {
  .carousel-control-prev { left: 0; }
  .carousel-control-next { right: 0; }
}
.testi-dots { position: static; margin-top: 30px; }
.testi-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); opacity: 1; transition: var(--transition);
}
.testi-dots button.active { background: var(--orange); width: 28px; border-radius: 10px; }
.carousel-control-prev-icon,
.carousel-control-next-icon { display: none; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background: url('img/gloves.jpg') center/cover no-repeat;
  padding: 100px 0;
  overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgb(5 67 161 / 93%) 0%, rgb(243 255 53 / 75%) 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-icon { font-size: 54px; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.cta-content h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: white; margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,0.80); font-size: 17px; max-width: 540px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-main {
  background: white; color: var(--navy);
  border-radius: 50px; padding: 14px 36px;
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  letter-spacing: 0.5px; border: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.btn-cta-main:hover { background: var(--orange); color: white; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,53,0.4); }
.btn-cta-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px; padding: 12px 32px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  transition: var(--transition);
}
.btn-cta-outline:hover { background: white; color: var(--navy); border-color: white; transform: translateY(-3px); }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--white); }
.contact-info-card {
  background: var(--light); border-radius: var(--radius);
  padding: 36px; height: 100%; border: 1px solid var(--border);
}
.contact-info-card h5 {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  color: var(--navy); margin-bottom: 26px; padding-bottom: 14px;
  border-bottom: 2px solid var(--orange);
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.contact-detail > i {
  font-size: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px;
}
.contact-detail strong { display: block; font-size: 13px; color: var(--gray); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.contact-detail span { font-size: 15px; color: var(--navy); line-height: 1.6; }
.map-placeholder {
  background: var(--navy); border-radius: var(--radius-sm);
  padding: 22px; text-align: center; margin-top: 6px;
  border: 2px dashed rgba(255,107,53,0.3);
}
.map-placeholder i { font-size: 32px; color: var(--orange); margin-bottom: 8px; }
.map-placeholder span { display: block; color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 10px; }
.map-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-size: 13px; font-weight: 700;
  font-family: var(--font-head); letter-spacing: 0.5px;
  transition: var(--transition);
}
.map-link:hover { color: var(--amber); }
.contact-form-card {
  background: white; border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}
.form-label { font-size: 13px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.input-group-custom { position: relative; }
.input-group-custom > i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-size: 16px; z-index: 1; pointer-events: none;
}
.textarea-wrap > i { top: 16px; transform: none; }
.custom-input {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px 12px 44px !important;
  font-size: 15px; color: var(--navy); background: var(--light);
  transition: var(--transition);
  width: 100%;
}
.custom-input:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
  background: white;
}
.btn-submit {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white; border-radius: var(--radius-sm); padding: 15px;
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  letter-spacing: 0.5px; border: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(13,27,62,0.25);
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}
.form-success {
  text-align: center; padding: 30px;
  border: 2px solid rgba(40,167,69,0.3);
  border-radius: var(--radius); background: rgba(40,167,69,0.05);
  margin-top: 20px;
}
.form-success i { font-size: 40px; color: #28A745; margin-bottom: 12px; }
.form-success h6 { color: var(--navy); font-size: 17px; margin: 0; }

/* ===== FOOTER ===== */
.footer-section {
  background: var(--navy);
  padding-top: 70px;
}
.footer-main { padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: white; margin-bottom: 14px;
}
.footer-brand i { color: var(--orange); font-size: 22px; }
.footer-about { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: white; transform: translateY(-3px); }
.footer-heading {
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  color: white; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange); display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 14px;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-links a i { font-size: 12px; }
.footer-links a:hover { color: var(--orange); transform: translateX(4px); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.55); font-size: 14px;
  margin-bottom: 12px; line-height: 1.5;
}
.footer-contact-item i { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-cert-badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px;
}
.footer-cert-badges span {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.25);
  color: rgba(255,255,255,0.7); font-size: 12px; padding: 4px 12px;
  border-radius: 50px; font-weight: 600;
}
.footer-cert-badges span i { color: var(--orange); }
.footer-bottom {
  padding: 22px 0; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .about-img { height: 320px; }
  .about-img-badge { bottom: -14px; right: 10px; }
  .features-img-side img { height: 320px; }
  .features-cert { left: 10px; }
}
@media (max-width: 767px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 14px; }
  .counters-row { flex-direction: column; }
  .counter-item { border-right: none; border-bottom: 2px solid var(--border); }
  .counter-item:last-child { border-bottom: none; }
  .testi-card { padding: 28px 20px; }
  .contact-form-card { padding: 26px 18px; }
  .contact-info-card { padding: 26px 18px; }
  .section-pad { padding: 60px 0; }
}
