/*
Theme Name: Riopure
Theme URI: https://riopure.in
Author: Riopure Water
Author URI: https://riopure.in
Description: A premium, clean, water-inspired WordPress theme for Riopure — a packaged drinking water company based in Karnal, Haryana, India. Designed for trust, conversions, and brand authority.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: riopure
Tags: water, business, corporate, responsive, bootstrap, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, post-thumbnails, theme-options

Riopure Theme — Pure Drinking Water Website Theme
*/

/* =============================================
   CUSTOM PROPERTIES / DESIGN TOKENS
============================================= */
:root {
  --rp-primary:       #0B4F8A;
  --rp-primary-dark:  #083A6A;
  --rp-primary-light: #1A6EB5;
  --rp-aqua:          #00BFFF;
  --rp-aqua-light:    #E0F7FF;
  --rp-cyan:          #E8F8FF;
  --rp-green:         #2ECC71;
  --rp-green-dark:    #27AE60;
  --rp-white:         #FFFFFF;
  --rp-off-white:     #F8FBFF;
  --rp-gray-100:      #F1F5F9;
  --rp-gray-200:      #E2E8F0;
  --rp-gray-500:      #64748B;
  --rp-gray-700:      #374151;
  --rp-gray-900:      #111827;
  --rp-text:          #1F2A3C;
  --rp-text-light:    #6B7A8D;
  --rp-border:        #D1E3F5;
  --rp-shadow:        0 4px 24px rgba(11, 79, 138, 0.10);
  --rp-shadow-lg:     0 8px 40px rgba(11, 79, 138, 0.16);
  --rp-radius:        12px;
  --rp-radius-sm:     8px;
  --rp-radius-lg:     20px;
  --rp-font-main:     'Inter', 'Segoe UI', Arial, sans-serif;
  --rp-font-heading:  'Poppins', 'Inter', 'Segoe UI', Arial, sans-serif;
  --rp-transition:    all 0.3s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--rp-font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--rp-text);
  background: var(--rp-white);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rp-primary); text-decoration: none; transition: var(--rp-transition); }
a:hover { color: var(--rp-primary-dark); }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin-top: 0; margin-bottom: 1rem; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--rp-font-heading);
  font-weight: 700;
  color: var(--rp-gray-900);
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* =============================================
   LAYOUT HELPERS
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-fluid { width: 100%; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { grid-template-columns: repeat(6, 1fr); gap: 24px; }
.w-100 { width: 100%; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* =============================================
   TYPOGRAPHY UTILITIES
============================================= */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rp-aqua);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--rp-gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--rp-text-light);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--rp-transition);
  white-space: nowrap;
  font-family: var(--rp-font-main);
}
.btn-primary {
  background: var(--rp-primary);
  color: var(--rp-white);
  border-color: var(--rp-primary);
}
.btn-primary:hover {
  background: var(--rp-primary-dark);
  border-color: var(--rp-primary-dark);
  color: var(--rp-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(11, 79, 138, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--rp-primary);
  border-color: var(--rp-primary);
}
.btn-outline:hover {
  background: var(--rp-primary);
  color: var(--rp-white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--rp-white);
  color: var(--rp-primary);
  border-color: var(--rp-white);
}
.btn-white:hover {
  background: var(--rp-cyan);
  color: var(--rp-primary-dark);
}
.btn-green {
  background: var(--rp-green);
  color: var(--rp-white);
  border-color: var(--rp-green);
}
.btn-green:hover {
  background: var(--rp-green-dark);
  border-color: var(--rp-green-dark);
  color: var(--rp-white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--rp-white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #128C7E;
  color: var(--rp-white);
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* =============================================
   CARDS
============================================= */
.card {
  background: var(--rp-white);
  border-radius: var(--rp-radius);
  box-shadow: var(--rp-shadow);
  overflow: hidden;
  transition: var(--rp-transition);
  border: 1px solid var(--rp-border);
}
.card:hover {
  box-shadow: var(--rp-shadow-lg);
  transform: translateY(-4px);
}
.card-body { padding: 28px; }
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rp-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.75rem;
}

/* =============================================
   NOTICE BAR
============================================= */
.rp-notice-bar {
  background: var(--rp-primary-dark);
  color: var(--rp-white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.rp-notice-bar a { color: var(--rp-aqua); font-weight: 600; }
.rp-notice-bar a:hover { color: var(--rp-white); }

/* =============================================
   HEADER
============================================= */
.rp-header {
  background: var(--rp-white);
  box-shadow: 0 2px 16px rgba(11, 79, 138, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--rp-transition);
}
.rp-header.scrolled { box-shadow: 0 4px 24px rgba(11, 79, 138, 0.15); }
.rp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.rp-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.rp-logo img { height: 52px; width: auto; }
.rp-logo-text {
  font-family: var(--rp-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--rp-primary);
  letter-spacing: -0.5px;
}
.rp-logo-text span { color: var(--rp-aqua); }
.rp-logo-tagline { font-size: 0.7rem; color: var(--rp-text-light); letter-spacing: 1px; text-transform: uppercase; }

/* Primary Navigation */
.rp-nav { display: flex; align-items: center; gap: 4px; }
.rp-nav a {
  display: block;
  padding: 8px 16px;
  font-weight: 500;
  color: var(--rp-gray-700);
  border-radius: var(--rp-radius-sm);
  white-space: nowrap;
  font-size: 0.95rem;
}
.rp-nav a:hover,
.rp-nav .current-menu-item > a,
.rp-nav .current_page_item > a {
  color: var(--rp-primary);
  background: var(--rp-cyan);
}
.rp-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--rp-white);
  border-radius: var(--rp-radius-sm);
  box-shadow: var(--rp-shadow-lg);
  border: 1px solid var(--rp-border);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--rp-transition);
  z-index: 100;
}
.rp-nav li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rp-nav li { position: relative; }
.rp-nav .sub-menu a { padding: 10px 20px; border-radius: 0; }

.rp-header-actions { display: flex; align-items: center; gap: 12px; }
.rp-header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--rp-primary);
  font-size: 0.95rem;
}
.rp-header-phone svg, .rp-header-phone .icon { color: var(--rp-aqua); }

/* Mobile Menu Toggle */
.rp-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.rp-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--rp-primary);
  border-radius: 2px;
  transition: var(--rp-transition);
}
.rp-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.rp-menu-toggle.active span:nth-child(2) { opacity: 0; }
.rp-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO SECTION
============================================= */
.rp-hero {
  background: linear-gradient(135deg, var(--rp-primary-dark) 0%, var(--rp-primary) 50%, #0F6FBF 100%);
  color: var(--rp-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.rp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FFFFFF08' d='M0,64L60,80C120,96,240,128,360,128C480,128,600,96,720,85.3C840,75,960,85,1080,96C1200,107,1320,117,1380,122.7L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  pointer-events: none;
}
.rp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(0, 191, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.rp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.rp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rp-aqua);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.rp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--rp-white);
  line-height: 1.15;
  margin-bottom: 24px;
  font-family: var(--rp-font-heading);
}
.rp-hero-title .highlight { color: var(--rp-aqua); }
.rp-hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.rp-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.rp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.rp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.rp-trust-icon {
  width: 24px;
  height: 24px;
  background: rgba(0, 191, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--rp-aqua);
}
.rp-hero-image { display: flex; justify-content: center; align-items: center; }
.rp-hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.rp-hero-image-wrap img {
  width: 100%;
  border-radius: var(--rp-radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}
.rp-hero-image-badge {
  position: absolute;
  background: var(--rp-white);
  border-radius: var(--rp-radius);
  padding: 12px 18px;
  box-shadow: var(--rp-shadow-lg);
}
.rp-hero-image-badge.badge-1 { bottom: -20px; left: -20px; }
.rp-hero-image-badge.badge-2 { top: -16px; right: -16px; }
.rp-badge-value { font-size: 1.4rem; font-weight: 800; color: var(--rp-primary); }
.rp-badge-label { font-size: 0.75rem; color: var(--rp-text-light); }
.rp-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.rp-hero-wave svg { display: block; width: 100%; }

/* =============================================
   TRUST STATS STRIP
============================================= */
.rp-stats {
  background: var(--rp-white);
  padding: 48px 0;
  border-bottom: 1px solid var(--rp-border);
}
.rp-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.rp-stat-item { text-align: center; }
.rp-stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--rp-primary);
  font-family: var(--rp-font-heading);
  line-height: 1;
  margin-bottom: 8px;
}
.rp-stat-number span { color: var(--rp-aqua); }
.rp-stat-label { font-size: 0.9rem; color: var(--rp-text-light); font-weight: 500; }

/* =============================================
   WHY CHOOSE US
============================================= */
.rp-why {
  background: var(--rp-off-white);
  padding: 80px 0;
}
.rp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.rp-why-card {
  background: var(--rp-white);
  border-radius: var(--rp-radius);
  padding: 32px 28px;
  border: 1px solid var(--rp-border);
  box-shadow: var(--rp-shadow);
  transition: var(--rp-transition);
  position: relative;
  overflow: hidden;
}
.rp-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rp-primary), var(--rp-aqua));
}
.rp-why-card:hover { transform: translateY(-6px); box-shadow: var(--rp-shadow-lg); }
.rp-why-icon {
  width: 60px; height: 60px;
  background: var(--rp-cyan);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.75rem;
}
.rp-why-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--rp-gray-900); }
.rp-why-card p { font-size: 0.95rem; color: var(--rp-text-light); margin: 0; line-height: 1.65; }

/* =============================================
   PRODUCTS SECTION
============================================= */
.rp-products {
  background: var(--rp-white);
  padding: 80px 0;
}
.rp-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.rp-product-card {
  background: var(--rp-white);
  border-radius: var(--rp-radius);
  border: 1.5px solid var(--rp-border);
  box-shadow: var(--rp-shadow);
  overflow: hidden;
  transition: var(--rp-transition);
  text-align: center;
}
.rp-product-card:hover {
  border-color: var(--rp-primary);
  transform: translateY(-6px);
  box-shadow: var(--rp-shadow-lg);
}
.rp-product-image {
  background: linear-gradient(180deg, var(--rp-aqua-light) 0%, var(--rp-cyan) 100%);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.rp-product-image .product-emoji { font-size: 4rem; }
.rp-product-body { padding: 24px 20px; }
.rp-product-size {
  display: inline-block;
  background: var(--rp-primary);
  color: var(--rp-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.rp-product-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.rp-product-card p { font-size: 0.88rem; color: var(--rp-text-light); margin-bottom: 16px; line-height: 1.55; }
.rp-product-use {
  font-size: 0.82rem;
  color: var(--rp-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

/* =============================================
   ABOUT SECTION
============================================= */
.rp-about {
  background: var(--rp-off-white);
  padding: 80px 0;
}
.rp-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.rp-about-image { position: relative; }
.rp-about-image img {
  border-radius: var(--rp-radius-lg);
  box-shadow: var(--rp-shadow-lg);
  width: 100%;
}
.rp-about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--rp-primary);
  color: var(--rp-white);
  border-radius: var(--rp-radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--rp-shadow-lg);
}
.rp-about-badge .number { font-size: 2rem; font-weight: 800; display: block; }
.rp-about-badge .text { font-size: 0.8rem; opacity: 0.9; }
.rp-about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.rp-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.rp-about-feature-icon {
  width: 36px; height: 36px;
  background: var(--rp-cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.rp-about-feature-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.rp-about-feature-text p { font-size: 0.88rem; color: var(--rp-text-light); margin: 0; }

/* =============================================
   PURIFICATION PROCESS
============================================= */
.rp-process { background: var(--rp-white); padding: 80px 0; }
.rp-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.rp-process-step { text-align: center; position: relative; }
.rp-step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--rp-primary), var(--rp-aqua));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rp-white);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.rp-step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.rp-process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.rp-process-step p { font-size: 0.85rem; color: var(--rp-text-light); }
.rp-process-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--rp-primary), var(--rp-aqua));
  opacity: 0.3;
}

/* =============================================
   INDUSTRIES SERVED
============================================= */
.rp-industries { background: linear-gradient(135deg, var(--rp-primary-dark), var(--rp-primary)); padding: 80px 0; color: var(--rp-white); }
.rp-industries .section-title { color: var(--rp-white); }
.rp-industries .section-subtitle { color: rgba(255, 255, 255, 0.8); }
.rp-industries .section-label { color: var(--rp-aqua); }
.rp-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.rp-industry-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rp-radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--rp-transition);
  backdrop-filter: blur(8px);
}
.rp-industry-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  border-color: var(--rp-aqua);
}
.rp-industry-card .icon { font-size: 2.5rem; margin-bottom: 14px; }
.rp-industry-card h4 { font-size: 1rem; font-weight: 600; color: var(--rp-white); margin: 0; }
.rp-industry-card p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.7); margin: 8px 0 0; }

/* =============================================
   TESTIMONIALS
============================================= */
.rp-testimonials { background: var(--rp-off-white); padding: 80px 0; }
.rp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.rp-testimonial-card {
  background: var(--rp-white);
  border-radius: var(--rp-radius);
  padding: 32px;
  box-shadow: var(--rp-shadow);
  border: 1px solid var(--rp-border);
  position: relative;
}
.rp-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 28px;
  font-size: 6rem;
  color: var(--rp-primary);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}
.rp-testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; }
.rp-testimonial-card p { font-size: 0.95rem; color: var(--rp-gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.rp-testimonial-author { display: flex; align-items: center; gap: 12px; }
.rp-author-avatar {
  width: 48px; height: 48px;
  background: var(--rp-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rp-white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rp-author-name { font-weight: 700; font-size: 0.95rem; color: var(--rp-gray-900); }
.rp-author-role { font-size: 0.82rem; color: var(--rp-text-light); }

/* =============================================
   DISTRIBUTOR CTA
============================================= */
.rp-distributor-cta {
  background: linear-gradient(135deg, var(--rp-green-dark), var(--rp-green));
  padding: 80px 0;
  text-align: center;
  color: var(--rp-white);
}
.rp-distributor-cta h2 { color: var(--rp-white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.rp-distributor-cta p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.rp-distributor-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}
.rp-dist-benefit {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rp-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* =============================================
   FAQ SECTION
============================================= */
.rp-faq { background: var(--rp-white); padding: 80px 0; }
.rp-faq-list { max-width: 760px; margin: 48px auto 0; }
.rp-faq-item {
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.rp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--rp-gray-900);
  background: var(--rp-white);
  transition: var(--rp-transition);
  gap: 16px;
}
.rp-faq-question:hover { background: var(--rp-cyan); color: var(--rp-primary); }
.rp-faq-question.active { background: var(--rp-primary); color: var(--rp-white); }
.rp-faq-toggle {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--rp-cyan);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--rp-primary);
  transition: var(--rp-transition);
}
.rp-faq-question.active .rp-faq-toggle {
  background: rgba(255, 255, 255, 0.2);
  color: var(--rp-white);
  transform: rotate(45deg);
}
.rp-faq-answer {
  display: none;
  padding: 20px 24px;
  background: var(--rp-cyan);
  font-size: 0.95rem;
  color: var(--rp-gray-700);
  line-height: 1.7;
}
.rp-faq-answer.active { display: block; }

/* =============================================
   CONTACT SECTION
============================================= */
.rp-contact { background: var(--rp-off-white); padding: 80px 0; }
.rp-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.rp-contact-info h2 { margin-bottom: 16px; }
.rp-contact-info p { color: var(--rp-text-light); margin-bottom: 32px; }
.rp-contact-details { display: flex; flex-direction: column; gap: 20px; }
.rp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rp-contact-icon {
  width: 44px; height: 44px;
  background: var(--rp-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rp-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rp-contact-text { font-size: 0.9rem; }
.rp-contact-text strong { display: block; color: var(--rp-gray-900); font-size: 0.85rem; margin-bottom: 4px; }
.rp-contact-text a { color: var(--rp-text-light); }
.rp-contact-text a:hover { color: var(--rp-primary); }
.rp-contact-form { background: var(--rp-white); border-radius: var(--rp-radius-lg); padding: 40px; box-shadow: var(--rp-shadow); border: 1px solid var(--rp-border); }
.rp-form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--rp-gray-900); }
.rp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rp-form-group { margin-bottom: 16px; }
.rp-form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--rp-gray-700); margin-bottom: 8px; }
.rp-form-group input,
.rp-form-group textarea,
.rp-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--rp-border);
  border-radius: var(--rp-radius-sm);
  font-size: 0.95rem;
  font-family: var(--rp-font-main);
  color: var(--rp-text);
  background: var(--rp-white);
  transition: var(--rp-transition);
  outline: none;
}
.rp-form-group input:focus,
.rp-form-group textarea:focus,
.rp-form-group select:focus {
  border-color: var(--rp-primary);
  box-shadow: 0 0 0 3px rgba(11, 79, 138, 0.1);
}
.rp-form-group textarea { resize: vertical; min-height: 120px; }
.rp-map-embed { margin-top: 40px; }
.rp-map-embed iframe { border-radius: var(--rp-radius); border: 0; width: 100%; height: 280px; }
.rp-map-placeholder {
  background: var(--rp-gray-100);
  border-radius: var(--rp-radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--rp-text-light);
  border: 2px dashed var(--rp-border);
  text-align: center;
  padding: 24px;
  margin-top: 40px;
}
.rp-map-placeholder .map-icon { font-size: 2.5rem; }

/* =============================================
   BULK ORDER SECTION
============================================= */
.rp-bulk-order {
  background: var(--rp-white);
  padding: 80px 0;
}
.rp-bulk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.rp-bulk-info h2 { margin-bottom: 16px; }
.rp-bulk-info p { color: var(--rp-text-light); margin-bottom: 24px; }
.rp-bulk-use-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.rp-use-case {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--rp-gray-700);
  font-weight: 500;
}
.rp-use-case::before { content: '✓'; color: var(--rp-green); font-weight: 700; }

/* =============================================
   EVENT / OFFICE BOOKING CTA BLOCK
============================================= */
.rp-event-cta {
  background: linear-gradient(135deg, var(--rp-aqua-light), var(--rp-cyan));
  border: 1px solid var(--rp-primary);
  border-radius: var(--rp-radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.rp-event-cta h3 { color: var(--rp-primary); margin-bottom: 12px; }
.rp-event-cta p { color: var(--rp-text-light); margin-bottom: 24px; }

/* =============================================
   FOOTER
============================================= */
.rp-footer {
  background: var(--rp-gray-900);
  color: rgba(255, 255, 255, 0.8);
}
.rp-footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.rp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.rp-footer-brand .rp-logo-text { color: var(--rp-white); font-size: 1.5rem; }
.rp-footer-brand .rp-logo-text span { color: var(--rp-aqua); }
.rp-footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; color: rgba(255, 255, 255, 0.6); }
.rp-footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.rp-footer-contact-item { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); display: flex; align-items: flex-start; gap: 8px; }
.rp-footer-contact-item a { color: rgba(255, 255, 255, 0.7); }
.rp-footer-contact-item a:hover { color: var(--rp-aqua); }
.rp-footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rp-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.rp-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--rp-aqua);
  border-radius: 2px;
}
.rp-footer-links { display: flex; flex-direction: column; gap: 10px; }
.rp-footer-links a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); transition: var(--rp-transition); }
.rp-footer-links a:hover { color: var(--rp-aqua); padding-left: 4px; }
.rp-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.rp-social-link {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--rp-transition);
}
.rp-social-link:hover {
  background: var(--rp-aqua);
  border-color: var(--rp-aqua);
  color: var(--rp-primary-dark);
  transform: translateY(-2px);
}
.rp-footer-bottom {
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.rp-footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.rp-footer-bottom a:hover { color: var(--rp-aqua); }
.rp-footer-certifications {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 24px;
}
.rp-cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   WHATSAPP FLOATING BUTTON
============================================= */
.rp-whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.rp-whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  color: var(--rp-white);
  font-size: 1.8rem;
  text-decoration: none;
  transition: var(--rp-transition);
  animation: rp-pulse 2.5s infinite;
}
.rp-whatsapp-btn:hover {
  transform: scale(1.1);
  background: #128C7E;
  color: var(--rp-white);
}
@keyframes rp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7); }
}
.rp-whatsapp-tooltip {
  background: var(--rp-gray-900);
  color: var(--rp-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: var(--rp-transition);
}
.rp-whatsapp-float:hover .rp-whatsapp-tooltip { opacity: 1; transform: translateY(0); }

/* =============================================
   PAGE HEADER / BANNER
============================================= */
.rp-page-header {
  background: linear-gradient(135deg, var(--rp-primary-dark), var(--rp-primary));
  color: var(--rp-white);
  padding: 60px 24px;
  text-align: center;
}
.rp-page-header h1 { color: var(--rp-white); margin-bottom: 16px; font-size: clamp(1.8rem, 4vw, 3rem); }
.rp-page-header p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Breadcrumb */
.rp-breadcrumb { margin-bottom: 16px; font-size: 0.9rem; }
.rp-breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.rp-breadcrumb a:hover { color: var(--rp-aqua); }
.rp-breadcrumb span { color: rgba(255, 255, 255, 0.5); margin: 0 8px; }
.rp-breadcrumb .current { color: var(--rp-aqua); }

/* =============================================
   BLOG / POST STYLES
============================================= */
.rp-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.rp-blog-card {
  background: var(--rp-white);
  border-radius: var(--rp-radius);
  border: 1px solid var(--rp-border);
  overflow: hidden;
  box-shadow: var(--rp-shadow);
  transition: var(--rp-transition);
}
.rp-blog-card:hover { transform: translateY(-4px); box-shadow: var(--rp-shadow-lg); }
.rp-blog-card-image { aspect-ratio: 16/9; overflow: hidden; }
.rp-blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.rp-blog-card:hover .rp-blog-card-image img { transform: scale(1.05); }
.rp-blog-card-body { padding: 24px; }
.rp-blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.82rem; color: var(--rp-text-light); margin-bottom: 12px; }
.rp-blog-category {
  background: var(--rp-cyan);
  color: var(--rp-primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 600;
}
.rp-blog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.rp-blog-card h3 a { color: var(--rp-gray-900); }
.rp-blog-card h3 a:hover { color: var(--rp-primary); }
.rp-blog-card p { font-size: 0.88rem; color: var(--rp-text-light); margin-bottom: 16px; }
.rp-blog-read-more { font-size: 0.9rem; font-weight: 600; color: var(--rp-primary); display: flex; align-items: center; gap: 6px; }
.rp-blog-read-more:hover { gap: 10px; }

/* Single Post */
.rp-single-post { max-width: 800px; margin: 60px auto; padding: 0 24px; }
.rp-post-content { font-size: 1.05rem; line-height: 1.85; color: var(--rp-text); }
.rp-post-content h2, .rp-post-content h3 { margin-top: 40px; }
.rp-post-content ul, .rp-post-content ol { padding-left: 28px; list-style: revert; margin-bottom: 1rem; }
.rp-post-content blockquote {
  border-left: 4px solid var(--rp-primary);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--rp-cyan);
  border-radius: 0 var(--rp-radius-sm) var(--rp-radius-sm) 0;
  font-style: italic;
  color: var(--rp-primary-dark);
}

/* =============================================
   SIDEBAR
============================================= */
.rp-layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}
.rp-sidebar { display: flex; flex-direction: column; gap: 28px; }
.rp-widget {
  background: var(--rp-white);
  border-radius: var(--rp-radius);
  padding: 24px;
  border: 1px solid var(--rp-border);
  box-shadow: var(--rp-shadow);
}
.rp-widget-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rp-border);
  color: var(--rp-gray-900);
  position: relative;
}
.rp-widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--rp-primary);
}

/* =============================================
   TRUST BADGES
============================================= */
.rp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 32px 0;
}
.rp-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--rp-white);
  border: 1.5px solid var(--rp-border);
  border-radius: 50px;
  box-shadow: var(--rp-shadow);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rp-gray-700);
}
.rp-trust-badge .icon { font-size: 1.2rem; }

/* =============================================
   404 PAGE
============================================= */
.rp-404 {
  text-align: center;
  padding: 100px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.rp-404 .error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--rp-primary);
  opacity: 0.15;
  line-height: 1;
  font-family: var(--rp-font-heading);
}
.rp-404 h2 { font-size: 2rem; margin-bottom: 16px; }
.rp-404 p { color: var(--rp-text-light); margin-bottom: 32px; }
.rp-404 form { max-width: 400px; margin: 0 auto 24px; display: flex; gap: 12px; }
.rp-404 input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--rp-border); border-radius: var(--rp-radius-sm); font-size: 0.95rem; outline: none; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .rp-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rp-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rp-header-inner { padding: 12px 20px; }
  .rp-nav, .rp-header-phone { display: none; }
  .rp-menu-toggle { display: flex; }
  .rp-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--rp-white);
    box-shadow: var(--rp-shadow-lg);
    padding: 20px;
    gap: 4px;
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .rp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .rp-hero-image { display: none; }
  .rp-hero { min-height: auto; padding: 60px 0 60px; }
  .rp-hero-title { font-size: 2rem; }
  .rp-about-inner, .rp-contact-inner, .rp-bulk-inner { grid-template-columns: 1fr; }
  .rp-about-badge { position: static; margin-top: 24px; display: inline-block; }
  .rp-footer-inner { grid-template-columns: 1fr 1fr; }
  .rp-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .rp-layout-with-sidebar { grid-template-columns: 1fr; }
  .rp-sidebar { order: -1; }
  .rp-form-row { grid-template-columns: 1fr; }
  .rp-whatsapp-float { bottom: 20px; right: 20px; }
  .section-padding { padding: 56px 0; }
  .rp-footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .rp-footer-inner { grid-template-columns: 1fr; }
  .rp-stats-inner { grid-template-columns: 1fr 1fr; }
  .rp-hero-actions { flex-direction: column; }
  .rp-hero-actions .btn { width: 100%; justify-content: center; }
  .rp-distributor-benefits { gap: 10px; }
}

/* =============================================
   UTILITY ANIMATIONS
============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* =============================================
   WORDPRESS DEFAULTS
============================================= */
.wp-caption { max-width: 100%; margin-bottom: 1rem; }
.wp-caption img { display: block; }
.wp-caption-text { font-size: 0.85rem; color: var(--rp-text-light); margin-top: 6px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 8px; }
.gallery-item img { border-radius: var(--rp-radius-sm); }
.alignnone, .aligncenter, .alignleft, .alignright { margin-bottom: 1.5rem; }
.aligncenter { margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: fixed; top: 16px; left: 16px; z-index: 9999; padding: 12px 20px; background: var(--rp-primary); color: white; border-radius: var(--rp-radius-sm); text-decoration: none; }

/* Pagination */
.rp-pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; flex-wrap: wrap; }
.rp-pagination a, .rp-pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--rp-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--rp-border);
  color: var(--rp-gray-700);
  transition: var(--rp-transition);
}
.rp-pagination a:hover, .rp-pagination .current {
  background: var(--rp-primary);
  border-color: var(--rp-primary);
  color: white;
}

/* Comments */
.rp-comments { max-width: 800px; margin: 40px auto 0; padding: 0 24px; }
.comment-list { list-style: none; }
.comment { margin-bottom: 24px; padding: 20px; background: var(--rp-white); border-radius: var(--rp-radius); border: 1px solid var(--rp-border); }
.comment-author { font-weight: 700; margin-bottom: 8px; }
.comment-meta { font-size: 0.82rem; color: var(--rp-text-light); margin-bottom: 12px; }
.comment-form input, .comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--rp-border);
  border-radius: var(--rp-radius-sm);
  margin-bottom: 16px;
  font-family: var(--rp-font-main);
  font-size: 0.95rem;
}

/* Search Results */
.search-no-results, .error-404 { text-align: center; padding: 80px 24px; }

/* Products Archive */
.rp-products-archive { max-width: 1200px; margin: 60px auto; padding: 0 24px; }
