/*
Theme Name: RK Feet Traders
Theme URI: https://rkfeettraders.com
Author: Nagma Parveen
Author URI: 
Description: Custom industrial machinery and services theme built for RK Feet Traders. Optimized for speed and lead generation.
Version: 1.0.0
Text Domain: rkfeet
*/

/* ===================== CSS VARIABLES Ã¢â‚¬â€ WHITE THEME ===================== */
:root {
  --clr-bg:        #f5f6f8;
  --clr-bg2:       #ffffff;
  --clr-bg3:       #eef0f4;
  --clr-red:       #e8192c;
  --clr-red-dark:  #b01020;
  --clr-green:     #00a651;
  --clr-gold:      #d4a000;
  --clr-black:     #1a1a2e;
  --clr-light:     #2d2d2d;
  --clr-muted:     #666666;
  --clr-border:    #dde1e8;
  --font-display: 'Philosopher', serif;
  --font-body:    'Rajdhani', sans-serif;
  --font-sub:     'Inter', sans-serif;
}

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--clr-bg);
      color: var(--clr-light);
      font-family: var(--font-body);
      overflow-x: hidden;
    }

    /* ===================== SCROLLBAR ===================== */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--clr-bg3); }
    ::-webkit-scrollbar-thumb { background: var(--clr-red); border-radius: 10px; }

    /* ===================== PRELOADER ===================== */
    #preloader {
      position: fixed; inset: 0;
      background: #ffffff;
      display: flex; align-items: center; justify-content: center;
      z-index: 9999;
      transition: opacity 0.6s ease;
    }
    .preloader-ring {
      width: 70px; height: 70px;
      border: 3px solid var(--clr-border);
      border-top-color: var(--clr-red);
      border-right-color: var(--clr-green);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ===================== NAVBAR ===================== */
    .rk-navbar {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--clr-border);
      padding: 10px 0;
      transition: all 0.4s ease;
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
    }
    
    .rk-navbar.scrolled {
      padding: 6px 0;
      border-bottom-color: rgba(232,25,44,0.3);
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    }
    .navbar-brand img {height: 65px;transition: transform 0.3s;}
    .navbar-brand img:hover { transform: scale(1.05); }
    .brand-text { line-height: 1.1; }
    .brand-text .name {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: #1a1a2e;
      letter-spacing: 1px;
    }
    .brand-text .tagline {
      font-size: 0.62rem;
      color: var(--clr-red);
      font-family: var(--font-sub);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .navbar-nav .nav-link {
      color: #333333 !important;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      padding: 8px 16px !important;
      position: relative;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute; bottom: 2px; left: 16px; right: 16px;
      height: 2px;
      background: linear-gradient(90deg, var(--clr-red), var(--clr-green));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .navbar-nav .nav-link:hover { color: #1a1a2e !important; }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after { transform: scaleX(1); }
    .navbar-nav .nav-link.active { color: var(--clr-red) !important; }

    .btn-nav-cta {
      background: var(--clr-red);
      color: #fff;
      border-radius: 4px;
      padding: 8px 20px !important;
      font-weight: 700 !important;
      letter-spacing: 1px;
      text-decoration: none;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .btn-nav-cta:hover {
      background: var(--clr-red-dark) !important;
      box-shadow: 0 0 18px rgba(232,25,44,0.5);
    }
    .btn-nav-cta::after { display: none !important; }

    .navbar-toggler {
      border: 1px solid var(--clr-red);
      padding: 4px 8px;
      background: transparent;
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232,25,44,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    /* ===================== NAVBAR MOBILE FIX (UPDATED) ===================== */

/* 1. Logo area ko limit karein taaki Toggler button ke liye hamesha 70px safe jagah bachi rahe */
.rk-navbar .navbar-brand {
  max-width: calc(100% - 70px); 
}

@media (max-width: 575px) {
  /* Logo ko mobile ke hisaab se perfect size diya */
  .navbar-brand img {
    height: 38px !important; 
  }
  
  /* Text ko zaroorat padne par 2 lines mein wrap hone ki permission di */
  .brand-text {
    white-space: normal; 
  }

  /* Brand Name font size aur line-height adjust */
  .brand-text .name {
    font-size: 0.95rem !important; 
    line-height: 1.1;
  }
  
  /* Tagline text adjust */
  .brand-text .tagline {
    font-size: 0.55rem !important; 
    line-height: 1.2;
    margin-top: 2px;
  }
  
  /* Logo aur text ke beech ka gap thoda kam kiya */
  .navbar-brand.gap-3 {
    gap: 8px !important;
  }
  
  /* Toggler button padding */
  .navbar-toggler {
    padding: 4px 8px;
    margin-left: auto; /* Button ko strictly right side force karne ke liye */
  }
}

/* 2. Button click karne par jo ugly black border aata hai usko hatana */
.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}
    /* ===================== HERO ===================== */
    .hero-section {
      min-height: 100vh;
      background: linear-gradient(135deg, #f0f2f7 0%, #ffffff 50%, #eef5ff 100%);
      position: relative;
      display: flex; align-items: center;
      padding-top: 80px;
      overflow: hidden;
    }

    /* Grid BG */
    .hero-grid-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(232,25,44,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,25,44,0.06) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: gridMove 20s linear infinite;
    }
    @keyframes gridMove {
      0% { transform: translate(0,0); }
      100% { transform: translate(50px,50px); }
    }

    /* Glow orbs */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }
    .orb-red {
      width: 400px; height: 400px;
      background: rgba(232,25,44,0.08);
      top: -100px; right: -100px;
      animation: orbFloat 8s ease-in-out infinite;
    }
    .orb-green {
      width: 300px; height: 300px;
      background: rgba(0,166,81,0.06);
      bottom: -50px; left: -80px;
      animation: orbFloat 10s ease-in-out infinite reverse;
    }
    @keyframes orbFloat {
      0%,100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-30px) scale(1.05); }
    }

    .hero-eyebrow {
      font-family: var(--font-sub);
      font-size: 0.75rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--clr-red);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 16px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 40px; height: 1px;
      background: var(--clr-red);
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: 72px;
      line-height: 0.95;
      font-weight: 700;
      color: #1a1a2e;
    }
    .hero-title .accent-red { color: var(--clr-red); }
    .hero-title .accent-green { color: var(--clr-green); }

    .hero-desc {
      font-family: var(--font-sub);
      font-size: 1rem;
      color: #555;
      line-height: 1.7;
      max-width: 480px;
      margin-top: 20px;
    }

    .hero-btns { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

    .btn-rk-primary {
      background: var(--clr-red);
      color: #fff;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 14px 32px;
      border: none;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.3s;
      position: relative; overflow: hidden;
    }
    .btn-rk-primary::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transform: translateX(-100%);
      transition: transform 0.5s;
    }
    .btn-rk-primary:hover { background: var(--clr-red-dark); color: #fff; box-shadow: 0 4px 20px rgba(232,25,44,0.35); }
    .btn-rk-primary:hover::before { transform: translateX(100%); }

    .btn-rk-outline {
      background: transparent;
      color: #1a1a2e;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 13px 32px;
      border: 1px solid #bbb;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.3s;
    }
    .btn-rk-outline:hover {
      border-color: var(--clr-green);
      color: var(--clr-green);
      box-shadow: 0 4px 16px rgba(0,166,81,0.15);
    }

    .hero-stats {
      display: flex; gap: 40px; margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid #dde1e8;
      flex-wrap: wrap;
    }
    .stat-item .num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: #1a1a2e;
      line-height: 1;
    }
    .stat-item .num span { color: var(--clr-red); }
    .stat-item .lbl {
      font-family: var(--font-sub);
      font-size: 0.72rem;
      color: #777;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* Hero Visual ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Machine Graphic */
    .hero-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      height: 500px;
    }
    .hero-machine-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid;
      animation: rotateCCW 12s linear infinite;
    }
    .ring-1 {
      width: 420px; height: 420px;
      border-color: rgba(232,25,44,0.15);
      animation-duration: 20s;
    }
    .ring-2 {
      width: 320px; height: 320px;
      border-color: rgba(0,166,81,0.2);
      border-style: dashed;
      animation-duration: 14s;
      animation-direction: reverse;
    }
    .ring-3 {
      width: 220px; height: 220px;
      border-color: rgba(232,25,44,0.3);
      animation-duration: 8s;
    }
    @keyframes rotateCCW { to { transform: rotate(360deg); } }

    .hero-center-icon {
      position: relative; z-index: 2;
      width: 130px; height: 130px;
      background: linear-gradient(135deg, #ffffff, #f0f2f7);
      border: 2px solid rgba(232,25,44,0.35);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 40px rgba(232,25,44,0.15), 0 8px 32px rgba(0,0,0,0.1);
    }
    .hero-center-icon i {
      font-size: 4rem;
      background: linear-gradient(135deg, var(--clr-red), var(--clr-gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .orbit-dot {
      position: absolute;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--clr-red);
      box-shadow: 0 0 10px var(--clr-red);
    }
    .orbit-dot-green {
      background: var(--clr-green);
      box-shadow: 0 0 10px var(--clr-green);
    }

    .floating-badge {
      position: absolute;
      background: #ffffff;
      border: 1px solid #dde1e8;
      border-left: 3px solid var(--clr-red);
      padding: 10px 16px;
      border-radius: 4px;
      font-family: var(--font-body);
      font-size: 0.8rem;
      color: #333;
      white-space: nowrap;
      animation: floatBadge 4s ease-in-out infinite;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .floating-badge.green { border-left-color: var(--clr-green); animation-delay: -2s; }
    .floating-badge .badge-icon { color: var(--clr-red); margin-right: 6px; }
    .floating-badge.green .badge-icon { color: var(--clr-green); }
    .fb-1 { top: 60px; right: 30px; }
    .fb-2 { bottom: 80px; left: 20px; }
    .fb-3 { top: 40%; left: 0; }
    @keyframes floatBadge {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    /* ===================== HERO SLIDER ANIMATIONS & STYLES ===================== */
.hero-swiper {
  width: 100%;
  padding-bottom: 40px;
}

/* Image Wrapper with Depth */
.hero-slide-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

/* .visual-backdrop {
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(232,25,44,0.1), rgba(0,166,81,0.1));
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
} */

.hero-slide-img {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  max-height: 400px;
  object-fit: cover;
}

/* --- Slide-In Animations based on Active Slide --- */
.hero-swiper .hero-eyebrow,
.hero-swiper .hero-title,
.hero-swiper .hero-desc,
.hero-swiper .hero-btns,
.hero-swiper .hero-slide-img {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-swiper .hero-eyebrow { transform: translateY(20px); }
.hero-swiper .hero-title { transform: translateY(30px); }
.hero-swiper .hero-desc { transform: translateY(30px); }
.hero-swiper .hero-btns { transform: translateY(30px); }
.hero-swiper .hero-slide-img { transform: scale(0.9) translateX(30px); }

/* Trigger animations when slide becomes active */
.hero-swiper .swiper-slide-active .hero-eyebrow { 
  opacity: 1; transform: translateY(0); transition-delay: 0.1s; 
}
.hero-swiper .swiper-slide-active .hero-title { 
  opacity: 1; transform: translateY(0); transition-delay: 0.2s; 
}
.hero-swiper .swiper-slide-active .hero-desc { 
  opacity: 1; transform: translateY(0); transition-delay: 0.3s; 
}
.hero-swiper .swiper-slide-active .hero-btns { 
  opacity: 1; transform: translateY(0); transition-delay: 0.4s; 
}
.hero-swiper .swiper-slide-active .hero-slide-img { 
  opacity: 1; transform: scale(1) translateX(0); transition-delay: 0.3s; 
}

/* Pagination Adjustments */
.hero-pagination {
  position: relative;
  bottom: 0 !important;
  z-index: 10 !important;
  text-align: left !important;
}
/* .product-thumb-slider .swiper-slide {
    cursor: pointer;
    border: 2px solid transparent;
}
.product-thumb-slider .swiper-slide-thumb-active {
    border-color: #e8192c; /* Aapka red color */
}
.product-thumb-slider img {
    height: 80px; /* Ya apni marzi se */
    object-fit: cover;
}
@media (max-width: 991px) {
  .hero-pagination { text-align: center !important; }
  .hero-swiper { text-align: center; }
  .hero-content-wrap .hero-eyebrow,
  .hero-content-wrap .hero-btns { justify-content: center; }
  .hero-slide-img { margin-top: 20px; }
}
    /* ===================== SECTION COMMON ===================== */
    .rk-section {padding: 50px 0px;}
    .section-eyebrow {
      font-family: var(--font-sub);
      font-size: 0.72rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--clr-red);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 10px;
    }
    .section-eyebrow::before {
      content: ''; width: 30px; height: 1px; background: var(--clr-red);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: #1a1a2e;
      letter-spacing: 2px;
      line-height: 1.05;
    }
    .section-title .accent { color: var(--clr-red); }
    .section-desc {
      font-family: var(--font-sub);
      color: #666;
      font-size: 0.95rem;
      line-height: 1.7;
      max-width: 560px;
    }

    /* ===================== MARQUEE BAR ===================== */
    .marquee-bar {
      background: var(--clr-red);
      padding: 12px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .marquee-track {
      display: inline-flex;
      animation: marqueeScroll 20s linear infinite;
    }
    .marquee-track span {
      font-family: var(--font-display);
      font-size: 0.9rem;
      letter-spacing: 3px;
      color: #fff;
      padding: 0 30px;
    }
    .marquee-track span i { margin-right: 10px; opacity: 0.7; }
    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===================== ABOUT STRIP ===================== */
    .about-section { background: #ffffff; }
    .about-img-wrap {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
    }
    .about-img-wrap img {
      width: 100%; border-radius: 6px;
      transition: transform 0.6s ease, filter 0.4s;
    }
    .about-img-wrap:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }
    .about-img-frame {
      position: absolute; top: -8px; left: -8px; right: 8px; bottom: 8px;
      border-radius: 6px;
      pointer-events: none;
      z-index: 0;
    }
    .about-badge {
      position: absolute;
      bottom: 20px; right: -10px;
      background: var(--clr-red);
      color: #fff;
      padding: 12px 20px;
      border-radius: 4px;
      font-family: var(--font-display);
      font-size: 1.5rem;
      line-height: 1;
      z-index: 2;
      box-shadow: 0 8px 24px rgba(232,25,44,0.4);
    }
    .about-badge small {
      display: block;
      font-family: var(--font-sub);
      font-size: 0.6rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 400;
      opacity: 0.85;
    }
    .about-feature {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px;
      background: #f5f6f8;
      border: 1px solid #dde1e8;
      border-left: 3px solid var(--clr-red);
      border-radius: 4px;
      margin-bottom: 14px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .about-feature:nth-child(even) { border-left-color: var(--clr-green); }
    .about-feature:hover {
      border-color: rgba(232,25,44,0.4);
      box-shadow: 0 4px 20px rgba(232,25,44,0.08);
      background: #fff;
    }
    .about-feature i {
      font-size: 1.6rem;
      color: var(--clr-red);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .about-feature:nth-child(even) i { color: var(--clr-green); }
    .about-feature h6 {
      font-family: var(--font-body);
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 3px;
      font-size: 0.95rem;
    }
    .about-feature p {
      font-family: var(--font-sub);
      color: #666;
      font-size: 0.82rem;
      margin: 0;
      line-height: 1.5;
    }

    /* ===================== PRODUCTS SLIDER ===================== */
    .products-section { background: #f5f6f8; }

    .swiper-rk { padding-bottom: 50px !important; }

    .product-card {
      background: #ffffff;
      border: 1px solid #dde1e8;
      border-radius: 6px;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
      position: relative;
      cursor: pointer;
      /* NAYA: Sabhi cards ko equal height dene ke liye flexbox */
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .product-card::before {
      content: '';
      position: absolute; 
      /* NAYA: top: 0; ko hatakar bottom: 0; kar diya */
      bottom: 0; 
      left: 0; 
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--clr-red), var(--clr-green));
      transform: scaleX(0);
      transform-origin: center; /* Bottom mein center se expand hona zyada premium lagta hai */
      transition: transform 0.4s ease;
      z-index: 2;
    }
    
    .product-card:hover { 
      transform: translateY(-8px); 
      box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(232,25,44,0.15); 
      border-color: rgba(232,25,44,0.25); 
    }
    .product-card:hover::before { transform: scaleX(1); }

    .product-img-wrap {
      position: relative; 
      overflow: hidden;
      height: 220px; /* Fixed height for image area */
      background: #eef0f4;
      flex-shrink: 0; /* Image wrap ko shrink hone se rokne ke liye */
    }
    
    .product-img-wrap img {
      width: 100%; 
      height: 100%; 
      /* NAYA: 'cover' ko 'contain' kiya taaki image full dikhe aur upar/neeche se cut na ho */
      object-fit: contain;
      object-position: center; 
      padding: 15px; /* Image ko box se thoda dur rakhne ke liye breathing space */
      transition: transform 0.5s ease, filter 0.4s;
      filter: brightness(0.92) saturate(0.8);
    }
    
    .product-card:hover .product-img-wrap img {
      transform: scale(1.08);
      filter: brightness(1) saturate(1);
    }
    
    .product-cat-tag {
      position: absolute; top: 12px; left: 12px;
      background: var(--clr-red);
      color: #fff;
      font-family: var(--font-sub);
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
      z-index: 1;
    }
    
    .product-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(20,20,40,0.2) 0%, transparent 60%);
      pointer-events: none;
    }
    
    .product-body { 
      padding: 20px; 
      /* NAYA: Content area ko flex banaya taaki button ko push kar sakein */
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    
    .product-body h5 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: #1a1a2e;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    
    .product-body p {
      font-family: var(--font-sub);
      color: #666;
      font-size: 0.82rem;
      line-height: 1.5;
      margin-bottom: 16px;
    }
    
    .product-specs {
      display: flex; gap: 12px; flex-wrap: wrap;
      margin-bottom: 20px;
    }
    
    .spec-chip {
      background: #eef0f4;
      border: 1px solid #dde1e8;
      color: #444;
      font-family: var(--font-sub);
      font-size: 0.7rem;
      letter-spacing: 1px;
      padding: 3px 10px;
      border-radius: 2px;
    }
    
    .btn-product-detail {
      display: inline-flex; align-items: center; gap: 6px;
      background: transparent;
      border: 1px solid var(--clr-red);
      color: var(--clr-red);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 3px;
      text-decoration: none;
      transition: all 0.3s;
      /* NAYA: Button ko hamesha card ke bottom par align rakhne ke liye */
      margin-top: auto;
      align-self: flex-start; 
    }
    
    .btn-product-detail:hover {
      background: var(--clr-red);
      color: #fff;
    }

    .swiper-pagination-bullet { background: var(--clr-muted) !important; opacity: 1; }
    .swiper-pagination-bullet-active { background: var(--clr-red) !important; width: 24px !important; border-radius: 4px !important; }

    .swiper-button-next, .swiper-button-prev {
      color: var(--clr-red) !important;
      background: var(--clr-bg3);
      border: 1px solid var(--clr-border);
      width: 44px !important; height: 44px !important;
      border-radius: 50%;
      transition: all 0.3s;
    }
    
    .swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; font-weight: 900; }
    
    .swiper-button-next:hover, .swiper-button-prev:hover {
      background: var(--clr-red); border-color: var(--clr-red); color: #fff !important;
    }
/* ===================== CLIENTELE ===================== */
.clientele-section { 
  background: var(--clr-bg); 
}

.swiper-clientele { 
  padding: 20px 0 !important; 
}

.client-logo-card {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 20px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Signature animated bottom border */
.client-logo-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-green));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

/* Grayscale state for logos */
.client-logo-card img {
  max-width: 100%;
  max-height: 100%;

  transition: all 0.4s ease;
}

/* Hover Effects */
.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-color: rgba(232,25,44,0.15);
}

.client-logo-card:hover::before {
  transform: scaleX(1);
}

/* Bring colors back on hover */
.client-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}
/* Update bottom padding from 20px to 60px to make room for pagination dots */
.swiper-clientele { 
  padding: 20px 0 60px 0 !important; 
}

/* Pagination ko visible aur active banayein */
.swiper-clientele .swiper-pagination {
    position: relative; /* Absolute ki jagah relative use karein agar niche jagah chahiye */
    margin-top: 30px;   /* Slider se thoda gap ke liye */
    bottom: 0 !important;
}

.swiper-clientele .swiper-pagination-bullet {
    background: #000 !important; /* Test karne ke liye black color */
    opacity: 0.5;
}

.swiper-clientele .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--clr-red) !important;
}
    /* ===================== SERVICES ===================== */
    .services-section { background: var(--clr-bg2); }

    .service-card {
      background: var(--clr-bg3);
      border: 1px solid var(--clr-border);
      border-radius: 6px;
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      height: 100%;
    }
    .service-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--clr-red), var(--clr-green));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); border-color: rgba(232,25,44,0.2); }
    .service-card:hover::after { transform: scaleX(1); }

    .service-icon {
      width: 60px; height: 60px;
      border-radius: 6px;
      background: rgba(232,25,44,0.1);
      border: 1px solid rgba(232,25,44,0.2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      transition: all 0.3s;
    }
    .service-card:hover .service-icon {
      background: var(--clr-red);
      border-color: var(--clr-red);
      box-shadow: 0 0 20px rgba(232,25,44,0.4);
    }
    .service-icon i { font-size: 1.6rem; color: var(--clr-red); transition: color 0.3s; }
    .service-card:hover .service-icon i { color: #fff; }
    .service-card:nth-child(2) .service-icon { background: rgba(0,166,81,0.1); border-color: rgba(0,166,81,0.2); }
    .service-card:nth-child(2) .service-icon i { color: var(--clr-green); }
    .service-card:nth-child(2):hover .service-icon { background: var(--clr-green); border-color: var(--clr-green); box-shadow: 0 0 20px rgba(0,166,81,0.4); }
    .service-card:nth-child(2):hover .service-icon i { color: #fff; }
    .service-card:nth-child(4) .service-icon { background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.2); }
    .service-card:nth-child(4) .service-icon i { color: var(--clr-gold); }
    .service-card:nth-child(4):hover .service-icon { background: var(--clr-gold); border-color: var(--clr-gold); box-shadow: 0 0 20px rgba(255,215,0,0.3); }
    .service-card:nth-child(4):hover .service-icon i { color: #111; }

    .service-card h5 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--clr-black);
      letter-spacing: 1px;
      margin-bottom: 10px;
    }
    .service-card p {
      font-family: var(--font-sub);
      color: var(--clr-muted);
      font-size: 0.86rem;
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .service-link {
      color: var(--clr-red);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap 0.3s;
    }
    .service-link:hover { gap: 12px; }
    .service-card:nth-child(2) .service-link { color: var(--clr-green); }
    .service-card:nth-child(4) .service-link { color: var(--clr-gold); }

    /* Big number bg */
    .service-bg-num {
      position: absolute;
      top: 10px; right: 16px;
      font-family: var(--font-display);
      font-size: 7rem;
      color: rgba(255,255,255,0.02);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
/* ===================== MACHINERY RANGE GRID ===================== */
.range-section { 
  background: var(--clr-bg2); 
}

.range-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #dde1e8;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.range-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: rgba(232,25,44,0.3);
}

.range-img-wrap {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  background: #eef0f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.range-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevents image from cutting or shrinking improperly */
  transition: transform 0.5s ease;
  filter: brightness(0.95) saturate(0.9);
}

.range-card:hover .range-img-wrap img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1);
}

.range-info {
  padding: 16px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #dde1e8;
  transition: background 0.4s ease;
}

.range-card:hover .range-info {
  background: rgba(232,25,44,0.03);
}

.range-info h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--clr-black);
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.range-card:hover .range-info h5 {
  color: var(--clr-red);
}

/* Mobile Adjustments */
@media (max-width: 575px) {
  .range-img-wrap {
    height: 160px; /* Smaller image height for mobile */
    padding: 10px;
  }
  .range-info {
    padding: 12px 8px;
  }
  .range-info h5 {
    font-size: 0.95rem; /* Smaller text for mobile */
  }
}
    /* ===================== WHY US ===================== */
    .whyus-section { background: var(--clr-bg); }
    .whyus-card {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 24px;
      background: var(--clr-bg3);
      border: 1px solid var(--clr-border);
      border-radius: 6px;
      transition: all 0.3s;
      height: 100%;
    }
    .whyus-card:hover { border-color: rgba(232,25,44,0.3); box-shadow: 0 8px 30px rgba(0,0,0,0.3); transform: translateY(-4px); }
    .whyus-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      color: var(--clr-red);
      line-height: 1;
      flex-shrink: 0;
      opacity: 0.6;
    }
    .whyus-card h6 {
      font-family: var(--font-body);
      font-weight: 700;
      color: var(--clr-black);
      font-size: 1rem;
      margin-bottom: 6px;
    }
    .whyus-card p {
      font-family: var(--font-sub);
      color: var(--clr-muted);
      font-size: 0.82rem;
      margin: 0;
      line-height: 1.55;
    }

    /* ===================== CTA BANNER ===================== */
    .cta-section {
      background: var(--clr-bg2);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(232,25,44,0.08) 0%, transparent 60%);
    }
    .cta-section::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--clr-red), var(--clr-green), var(--clr-gold));
    }
    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.5rem);
      color: var(--clr-black);
      letter-spacing: 2px;
      line-height: 1;
    }
    .cta-title span { color: var(--clr-red); }
/* Ask Price - WhatsApp Button */
.btn-rk-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
}
.btn-rk-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}
.btn-rk-whatsapp i {
    font-size: 18px;
}

/* Share Button */
.btn-rk-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #222;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.btn-rk-share:hover {
    border-color: #c0392b;
    color: #c0392b;
    transform: translateY(-2px);
}
.btn-rk-share i {
    font-size: 16px;
}
    /* ===================== FOOTER ===================== */
    .rk-footer {
      background: #080808;
      border-top: 1px solid var(--clr-border);
      padding: 60px 0 0;
    }
    .footer-brand .name {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--clr-bg2);
    }
    .footer-brand .tagline {
      font-family: var(--font-sub);
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--clr-bg3);
      margin-top: 4px;
    }
    .footer-brand p {
      font-family: var(--font-sub);
      color: var(--clr-muted);
      font-size: 0.84rem;
      line-height: 1.65;
      margin-top: 16px;
    }
    .footer-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--clr-bg2);
      letter-spacing: 2px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    .footer-title::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 30px; height: 2px;
      background: var(--clr-red);
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: var(--clr-bg3);
      text-decoration: none;
      font-family: var(--font-sub);
      font-size: 0.87rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s, gap 0.3s;
    }
    .footer-links a i { font-size: 0.5rem; color: var(--clr-red); }
    .footer-links a:hover { color: var(--clr-red-dark); gap: 12px; }

    .footer-contact p {
      font-family: var(--font-sub);
      color: var(--clr-bg3);
      font-size: 0.85rem;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
    }
    .footer-contact p i { color: var(--clr-red); flex-shrink: 0; margin-top: 2px; }
    .footer-contact a {color: var(--clr-bg3);text-decoration: none;transition: color 0.3s;}
    .footer-contact a:hover { color: var(--clr-red); }

    .social-icons { display: flex; gap: 10px; margin-top: 20px; }
    .social-icons a {
      width: 38px; height: 38px;
      border: 1px solid var(--clr-border);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--clr-muted);
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s;
    }
    .social-icons a:hover { background: var(--clr-red); border-color: var(--clr-red); color: #fff; }

    .footer-bottom {
      background: #050505;
      padding: 18px 0;
      margin-top: 50px;
      border-top: 1px solid var(--clr-border);
    }
    .footer-bottom p {
      font-family: var(--font-sub);
      font-size: 0.8rem;
      color: var(--clr-muted);
      margin: 0;
    }
    .footer-bottom span { color: var(--clr-red); }

    /* ===================== BACK TO TOP ===================== */
    #backToTop {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 44px; height: 44px;
      background: var(--clr-red);
      color: #fff;
      border: none;
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      z-index: 999;
      opacity: 0; visibility: hidden;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(232,25,44,0.4);
    }
    #backToTop.show { opacity: 1; visibility: visible; }
    #backToTop:hover { background: var(--clr-red-dark); transform: translateY(-3px); }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 991px) {
      .hero-visual { height: 360px; }
      .ring-1 { width: 300px; height: 300px; }
      .ring-2 { width: 230px; height: 230px; }
      .ring-3 { width: 160px; height: 160px; }
      .fb-3 { display: none; }
    }
    @media (max-width: 767px) {
      .hero-section { text-align: center; }
      .hero-eyebrow { justify-content: center; }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-btns { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { height: 260px; }
      .ring-1 { width: 220px; height: 220px; }
      .ring-2 { width: 170px; height: 170px; }
      .ring-3 { width: 120px; height: 120px; }
      .fb-1, .fb-2 { font-size: 0.7rem; padding: 8px 12px; }
      .section-eyebrow { justify-content: center; }
      .rk-section { padding: 60px 0; }
    }
    @media (max-width: 575px) {
      .hero-title { font-size: 2.6rem; }
      .fb-1, .fb-2 { display: none; }
    }

    /* ===================== TICKER ANIMATION for counts ===================== */
    .count-up { display: inline-block; }

    /* Product slider category tabs */
    .product-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
    .filter-btn {
      background: var(--clr-bg3);
      border: 1px solid var(--clr-border);
      color: var(--clr-muted);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 3px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--clr-red);
      border-color: var(--clr-red);
      color: #fff;
    }
.footer-text{
    color: var(--clr-bg);
}
/* Floating Menu Container */
.floating-menu {
  position: fixed;
  bottom: 92px; /* Adjust distance from bottom */
  right: 13px; /* Adjust distance from right */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 9999;
}

/* Action Buttons Wrapper */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Spring-like transition for opening */
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: bottom center;
  pointer-events: auto;
}

/* Hidden State Animation */
.floating-menu.closed .action-buttons {
  opacity: 0;
  transform: translateY(40px) scale(0.5);
  pointer-events: none; /* Prevents clicking when hidden */
}

/* Base styling for all circular buttons */
.action-btn,
.toggle-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect for buttons */
.action-btn:hover,
.toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

/* Specific Brand Colors from your screenshot */
.wa-btn {
  background-color: #1ea34b;
}
.doc-btn {
  background-color: #a8640d;
}
.phone-btn {
  background-color: #2d448e;
}
.toggle-btn {
  background-color: #7f7f7f;
}

/* Toggle Icon Animation */
.toggle-btn i {
  transition: transform 0.4s ease;
  /* Default Open State: Rotated to look like an X */
  transform: rotate(45deg);
}

/* Closed State: Rotates back to look like a + */
.floating-menu.closed .toggle-btn i {
  transform: rotate(0deg);
}
/* ===================== COMMON INNER PAGE BANNER ===================== */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Top padding zyada rakhi hai taaki aapka fixed navbar text ke upar overlap na kare */
  padding: 140px 0 90px; 
  min-height: 400px;
  display: flex;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  /* Dark overlay using your black variable, fading slightly towards right */
  background: linear-gradient(to right, rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.7));
  z-index: 1;
}

.banner-title {
  font-family: var(--font-display);
  /* clamp() ensure karega ki font desktop par bada (4rem) aur mobile par automatically chota (2.5rem) ho jaye */
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.1;
}

.banner-title .accent {
  color: var(--clr-red);
}

.banner-desc {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  color: #eef0f4;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Breadcrumb Styling */
.banner-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.banner-breadcrumb .breadcrumb-item a {
  color: var(--clr-red);
  text-decoration: none;
  transition: color 0.3s;
}

.banner-breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
}

.banner-breadcrumb .breadcrumb-item.active {
  color: #a0aabf;
}

.banner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #a0aabf;
  content: "/"; /* Separator icon */
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .page-banner {
    padding: 120px 0 70px;
    min-height: 320px;
  }
  .banner-desc {
    font-size: 0.9rem;
  }
}
/* ===================== PRODUCT DETAIL PAGE ===================== */
.product-detail-section {
  background: var(--clr-bg2);
  padding: 80px 0;
}

/* --- Left Side: Gallery Sliders --- */
.product-gallery { position: relative; }

.product-main-slider {
  background: #eef0f4;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  height: 450px;
  overflow: hidden;
}
.product-main-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevents cutting */
  padding: 20px;
}
/* Custom arrows for gallery */
.gallery-next, .gallery-prev {
  color: var(--clr-red) !important;
  background: #ffffff;
  width: 40px !important; height: 40px !important;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery-next::after, .gallery-prev::after { font-size: 1rem !important; font-weight: bold; }
.gallery-next:hover, .gallery-prev:hover { background: var(--clr-red); color: #fff !important; }

/* Thumbnails */
/* Main Slider ko ek fixed height dein */
.product-main-slider {
    width: 100%;
    height: 450px; /* Ya aapki requirement */
}
.product-main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Image stretched nahi hogi */
}

/* Thumbnail ko chota rakhein */
.product-thumb-slider {
    height: 100px;
    margin-top: 15px;
}
.product-thumb-slider .swiper-slide {
    width: 25%; /* 4 slides ke liye */
    height: 100%;
}
.product-thumb-slider img {
    width: 100%;
    border-radius: 6px;
    height: 100%;
    object-fit: cover;
    border: 1px solid #000;
    padding: 5px 12px;
}

/* --- Right Side: Content --- */
.detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--clr-black);
  line-height: 1.1;
  margin-bottom: 15px;
}
.detail-divider {
  width: 60px; height: 3px; background: var(--clr-red); margin-bottom: 20px;
}
.detail-desc {
  font-family: var(--font-sub);
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Features List */
.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--clr-black);
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 10px;
}
.detail-features-list { list-style: none; padding: 0; margin: 0; }
.detail-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  background: var(--clr-bg);
  padding: 18px;
  border-radius: 6px;
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-red);
  transition: all 0.3s;
}
.detail-features-list li:hover {
  background: #ffffff;
  border-color: rgba(232,25,44,0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transform: translateX(6px); /* Smooth slide effect on hover */
}
.detail-features-list i {
  font-size: 1.4rem;
  color: var(--clr-red);
  margin-top: 2px;
}
.detail-features-list div {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.5;
}
.detail-features-list strong {
  display: block;
  color: var(--clr-black);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-main-slider { height: 320px; }
  .product-thumb-slider .swiper-slide { height: 70px; }
  .detail-actions { flex-direction: column; width: 100%; }
  .detail-actions a { justify-content: center; width: 100%; }
}
/* ===================== RELATED PRODUCTS ===================== */
.swiper-related {
  padding: 0 0 50px 0 !important; /* Bottom padding for dots */
}

/* Ensure anchor tags don't get default blue underline inside product cards */
a.product-card {
  color: inherit;
}
/* ================================================================
   CONTACT PAGE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â css/contact-style.css
   R.K. Feet Traders ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â White Theme
   ================================================================ */

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ PAGE HERO BANNER ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.page-hero-banner {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a0e 60%, #0d1a0d 100%);
  overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,25,44,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,25,44,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: pageGridMove 24s linear infinite;
  pointer-events: none;
}
@keyframes pageGridMove {
  0%   { transform: translate(0,0); }
  100% { transform: translate(50px,50px); }
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(232,25,44,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-eyebrow {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.page-eyebrow::before, .page-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--clr-red);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.page-hero-title .accent-red { color: var(--clr-red); }
.page-hero-desc {
  font-family: var(--font-sub);
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 22px;
}

/* Breadcrumb */
.rk-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  list-style: none; padding: 0; margin: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 7px 18px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
}
.rk-breadcrumb li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.rk-breadcrumb li a:hover { color: var(--clr-red); }
.rk-breadcrumb .sep { color: rgba(255,255,255,0.2); font-size: 0.65rem; }
.rk-breadcrumb .active { color: var(--clr-red); font-weight: 600; }

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ CONTACT INFO CARDS ROW ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.contact-cards-row {
  background: #f5f6f8;
  padding: 0;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.contact-cards-row .container {
  transform: translateY(-42px);
}

.cinfo-card {
  background: #ffffff;
  border: 1px solid #dde1e8;
  border-top: 3px solid var(--clr-red);
  border-radius: 6px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cinfo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,25,44,0.03) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cinfo-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-top-color: var(--clr-red); }
.cinfo-card:hover::before { opacity: 1; }

/* green card */
.cinfo-card .cinfo-icon.green    { background: rgba(0,166,81,0.08); }
.cinfo-card .cinfo-icon.green i  { color: var(--clr-green); }
.cinfo-card:has(.cinfo-icon.green) { border-top-color: var(--clr-green); }

/* whatsapp card */
.cinfo-card .cinfo-icon.whatsapp   { background: rgba(37,211,102,0.1); }
.cinfo-card .cinfo-icon.whatsapp i { color: #25d366; }
.cinfo-card:has(.cinfo-icon.whatsapp) { border-top-color: #25d366; }

/* email card */
.cinfo-card .cinfo-icon.email   { background: rgba(66,133,244,0.08); }
.cinfo-card .cinfo-icon.email i { color: #4285f4; }
.cinfo-card:has(.cinfo-icon.email) { border-top-color: #4285f4; }

.cinfo-icon {
  width: 56px; height: 56px;
  background: rgba(232,25,44,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s;
}
.cinfo-icon i { font-size: 1.4rem; color: var(--clr-red); }
.cinfo-card:hover .cinfo-icon { transform: scale(1.1); }

.cinfo-card h6 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.cinfo-card p {
  font-family: var(--font-sub);
  font-size: 15px;
  color: #666;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 14px;
}
.cinfo-card p a {
  color: #666;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}
.cinfo-card p a:hover { color: var(--clr-red); }

.cinfo-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-red);
  text-decoration: none;
  transition: gap 0.3s;
}
.cinfo-link:hover { gap: 10px; }
.cinfo-link.green   { color: var(--clr-green); }
.cinfo-link.whatsapp { color: #25d366; }
.cinfo-link.email   { color: #4285f4; }

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ CONTACT MAIN SECTION ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.contact-main-section {
  background: #ffffff;
  padding-top: 20px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ FORM WRAP ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.contact-form-wrap {
  background: #f9fafb;
  border: 1px solid #dde1e8;
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-green));
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ FORM FIELDS ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ FORM FIELDS ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.rk-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rk-form-group label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: #1a1a2e;
  letter-spacing: 0.3px;
}
.rk-form-group label .req { color: var(--clr-red); }
 
.input-icon-wrap {
  position: relative;
}
.input-icon-wrap > i:first-child {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: #aaa;
  pointer-events: none;
  transition: color 0.3s;
  z-index: 1;
}
.input-icon-wrap input,
.input-icon-wrap select {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dde1e8;
  border-radius: 4px;
  padding: 11px 14px 11px 42px;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: #1a1a2e;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}
.input-icon-wrap input::placeholder { color: #bbb; }
.input-icon-wrap input:focus,
.input-icon-wrap select:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.08);
}
.input-icon-wrap input:focus + i,
.input-icon-wrap:focus-within > i:first-child {
  color: var(--clr-red);
}
 
/* Select dropdown */
.select-wrap select {
  cursor: pointer;
  padding-right: 36px;
}
.select-wrap select option { color: #1a1a2e; }
.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #aaa;
  pointer-events: none;
}
 
/* Textarea */
.textarea-icon-wrap {
  position: relative;
}
.textarea-icon-wrap > i {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 0.95rem;
  color: #aaa;
  pointer-events: none;
  transition: color 0.3s;
}
.textarea-icon-wrap textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dde1e8;
  border-radius: 4px;
  padding: 11px 14px 11px 42px;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: #1a1a2e;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.textarea-icon-wrap textarea::placeholder { color: #bbb; }
.textarea-icon-wrap textarea:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.08);
}
.textarea-icon-wrap textarea:focus ~ i,
.textarea-icon-wrap:focus-within > i { color: var(--clr-red); }
 
/* Field errors */
.field-error {
  font-family: var(--font-sub);
  font-size: 0.76rem;
  color: var(--clr-red);
  display: none;
}
.field-error.show { display: block; }
 
/* Input invalid state */
.input-invalid input,
.input-invalid select,
.input-invalid textarea {
  border-color: var(--clr-red) !important;
  background: rgba(232,25,44,0.02);
}
 
/* Submit Button */
.btn-rk-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}
.btn-rk-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-rk-submit:hover { background: var(--clr-red-dark); box-shadow: 0 6px 20px rgba(232,25,44,0.35); }
.btn-rk-submit:hover::before { transform: translateX(100%); }
.btn-rk-submit:disabled { opacity: 0.7; cursor: not-allowed; }
 
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinBtn 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spinBtn { to { transform: rotate(360deg); } }
 
/* Success Message */
.form-success-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0,166,81,0.08);
  border: 1px solid rgba(0,166,81,0.3);
  border-left: 3px solid var(--clr-green);
  border-radius: 4px;
  padding: 14px 18px;
  margin-top: 16px;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: #1a1a2e;
  line-height: 1.5;
}
.form-success-msg i { color: var(--clr-green); font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
 

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ MAP WRAP ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.map-wrap {
  border: 1px solid #dde1e8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.map-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #f5f6f8;
  border-bottom: 1px solid #dde1e8;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a2e;
  letter-spacing: 0.5px;
}
.map-header i { color: var(--clr-red); }
.map-frame iframe {
  display: block;
  width: 100%;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.3s;
}
.map-frame:hover iframe { filter: saturate(1) contrast(1); }
.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #f9fafb;
  border-top: 1px solid #dde1e8;
  gap: 10px;
  flex-wrap: wrap;
}
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.map-directions-btn:hover { background: var(--clr-red-dark); color: #fff; }
.map-address {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  color: #888;
  line-height: 1.4;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ BUSINESS HOURS CARD ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.biz-hours-card {
  background: #fff;
  border: 1px solid #dde1e8;
  border-radius: 8px;
  overflow: hidden;
}
.biz-hours-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #f5f6f8;
  border-bottom: 1px solid #dde1e8;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a2e;
  letter-spacing: 0.5px;
}
.biz-hours-header i { color: var(--clr-red); }
.biz-hours-body { padding: 16px 18px; }
.biz-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: var(--font-sub);
  font-size: 0.86rem;
  color: #555;
}
.biz-row:last-of-type { border-bottom: none; }
.biz-row .open  { color: var(--clr-green); font-weight: 600; }
.biz-row .closed { color: var(--clr-red); font-weight: 600; }
.biz-emergency {
  margin-top: 12px;
  background: rgba(232,25,44,0.05);
  border: 1px solid rgba(232,25,44,0.15);
  border-radius: 3px;
  padding: 10px 12px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  color: var(--clr-red);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}
.biz-emergency i { flex-shrink: 0; margin-top: 1px; }

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ CATALOG DOWNLOAD CARD ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.catalog-download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d0a10 100%);
  border-radius: 8px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.catalog-download-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,25,44,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,25,44,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.catalog-icon {
  width: 52px; height: 52px;
  background: rgba(232,25,44,0.15);
  border: 1px solid rgba(232,25,44,0.3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.catalog-icon i { font-size: 1.6rem; color: var(--clr-red); }
.catalog-content {
  flex: 1;
  position: relative; z-index: 1;
}
.catalog-content h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.catalog-content p {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
  margin-bottom: 8px;
}
.catalog-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.catalog-meta span {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 4px;
}
.catalog-meta span i { color: var(--clr-red); }

.btn-catalog-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--clr-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative; z-index: 1;
  line-height: 1.3;
  text-align: center;
}
.btn-catalog-download small {
  font-size: 0.65rem;
  opacity: 0.8;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.btn-catalog-download i { font-size: 1.2rem; margin-bottom: 2px; }
.btn-catalog-download:hover {
  background: #fff;
  color: var(--clr-red);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ RESPONSIVE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
@media (max-width: 767px) {
  .contact-form-wrap { padding: 26px 20px; }
  .catalog-download-card { flex-wrap: wrap; }
  .btn-catalog-download { width: 100%; flex-direction: row; gap: 8px; justify-content: center; }
  .contact-cards-row .container { transform: translateY(-28px); }
}
@media (max-width: 575px) {
  .page-hero-banner { padding: 130px 0 60px; }
  .cinfo-card { padding: 20px 16px; }
  .contact-cards-row .container { transform: translateY(-20px); }
}