/*
Theme Name: Repair Wala Pro
Theme URI: https://repairwala.in
Author: Repair Wala
Author URI: https://repairwala.in
Description: Premium Elementor-Compatible WordPress Theme for Repair Service Businesses. Includes pre-built pages, booking system, WhatsApp integration and full Elementor support.
Version: 2.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: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: repair-wala-pro
Tags: repair, service, elementor, business, responsive, professional, orange
*/

/* ============================================================
   REPAIR WALA PRO - COMPLETE STYLESHEET
   Compatible with Elementor Page Builder
   ============================================================ */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800;900&family=Hind:wght@300;400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Brand Colors */
  --rw-primary:        #FF6B00;
  --rw-primary-dark:   #E05A00;
  --rw-primary-light:  #FF9040;
  --rw-primary-bg:     rgba(255,107,0,0.08);
  --rw-secondary:      #1A1A2E;
  --rw-secondary-mid:  #16213E;
  --rw-accent:         #FFD700;
  --rw-green:          #25D366;

  /* Neutral Colors */
  --rw-white:          #FFFFFF;
  --rw-black:          #0D0D0D;
  --rw-text:           #2D2D2D;
  --rw-text-muted:     #6B7280;
  --rw-text-light:     #9CA3AF;
  --rw-bg:             #F9F7F4;
  --rw-bg-dark:        #111827;
  --rw-border:         #E5E7EB;
  --rw-border-light:   #F3F4F6;

  /* Shadows */
  --rw-shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
  --rw-shadow:         0 4px 24px rgba(0,0,0,0.10);
  --rw-shadow-md:      0 8px 40px rgba(0,0,0,0.15);
  --rw-shadow-orange:  0 8px 30px rgba(255,107,0,0.30);
  --rw-shadow-lg:      0 20px 60px rgba(0,0,0,0.20);

  /* Border Radius */
  --rw-radius-sm:      8px;
  --rw-radius:         14px;
  --rw-radius-lg:      20px;
  --rw-radius-xl:      28px;
  --rw-radius-full:    9999px;

  /* Typography */
  --rw-font-heading:   'Baloo 2', cursive;
  --rw-font-body:      'Hind', sans-serif;

  /* Spacing */
  --rw-section-padding: 90px 0;

  /* Transitions */
  --rw-transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --rw-transition-slow: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--rw-font-body);
  color: var(--rw-text);
  background: var(--rw-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--rw-transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CONTAINER ===== */
.rw-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.rw-container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--rw-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--rw-secondary);
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--rw-text-muted); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

/* ===== UTILITY CLASSES ===== */
.rw-text-center  { text-align: center; }
.rw-text-primary { color: var(--rw-primary); }
.rw-text-white   { color: var(--rw-white); }
.rw-bg-light     { background: var(--rw-bg); }
.rw-bg-dark      { background: var(--rw-bg-dark); }
.rw-section      { padding: var(--rw-section-padding); }
.rw-section-sm   { padding: 60px 0; }
.rw-mt-auto      { margin-top: auto; }
.rw-mb-0         { margin-bottom: 0 !important; }

/* ===== BUTTONS ===== */
.rw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--rw-radius-full);
  font-family: var(--rw-font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--rw-transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.rw-btn-primary {
  background: var(--rw-primary);
  color: var(--rw-white);
  border-color: var(--rw-primary);
  box-shadow: var(--rw-shadow-orange);
}
.rw-btn-primary:hover {
  background: var(--rw-primary-dark);
  border-color: var(--rw-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.40);
  color: var(--rw-white);
}
.rw-btn-outline-white {
  background: transparent;
  color: var(--rw-white);
  border-color: rgba(255,255,255,0.6);
}
.rw-btn-outline-white:hover {
  background: var(--rw-white);
  color: var(--rw-primary);
  border-color: var(--rw-white);
}
.rw-btn-outline-primary {
  background: transparent;
  color: var(--rw-primary);
  border-color: var(--rw-primary);
}
.rw-btn-outline-primary:hover {
  background: var(--rw-primary);
  color: var(--rw-white);
}
.rw-btn-whatsapp {
  background: #25D366;
  color: var(--rw-white);
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.rw-btn-whatsapp:hover {
  background: #1DAA56;
  border-color: #1DAA56;
  transform: translateY(-2px);
  color: var(--rw-white);
}
.rw-btn-dark {
  background: var(--rw-secondary);
  color: var(--rw-white);
  border-color: var(--rw-secondary);
}
.rw-btn-dark:hover {
  background: #2D3748;
  border-color: #2D3748;
  transform: translateY(-2px);
  color: var(--rw-white);
}
.rw-btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.rw-btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.rw-btn-block { width: 100%; }

/* ===== SECTION HEADER ===== */
.rw-section-header { margin-bottom: 60px; }
.rw-section-header.centered { text-align: center; }
.rw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rw-primary);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  background: var(--rw-primary-bg);
  padding: 6px 16px;
  border-radius: var(--rw-radius-full);
  border: 1px solid rgba(255,107,0,0.2);
}
.rw-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--rw-secondary);
  margin-bottom: 16px;
  font-weight: 800;
}
.rw-section-title .highlight { color: var(--rw-primary); }
.rw-section-desc {
  color: var(--rw-text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 0;
}
.rw-section-header.centered .rw-section-desc { margin: 0 auto; }

/* ===== DIVIDER ===== */
.rw-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--rw-primary), var(--rw-primary-light));
  border-radius: 4px;
  margin: 16px 0 24px;
}
.rw-section-header.centered .rw-divider { margin: 16px auto 24px; }

/* ===== TOP BAR ===== */
.rw-topbar {
  background: var(--rw-secondary);
  padding: 9px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rw-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rw-topbar-left, .rw-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,0.65);
}
.rw-topbar a { color: rgba(255,255,255,0.65); }
.rw-topbar a:hover { color: var(--rw-accent); }
.rw-topbar-divider { color: rgba(255,255,255,0.2); }

/* ===== HEADER ===== */
.rw-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: var(--rw-white);
  box-shadow: 0 1px 0 var(--rw-border);
  transition: var(--rw-transition);
}
.rw-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.10); }
.rw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.rw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.rw-logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--rw-primary), var(--rw-primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(255,107,0,0.3);
  flex-shrink: 0;
}
.rw-logo-text {
  font-family: var(--rw-font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--rw-secondary);
  line-height: 1;
}
.rw-logo-text .accent { color: var(--rw-primary); }
.rw-logo-sub {
  font-size: 0.65rem;
  color: var(--rw-text-muted);
  font-weight: 500;
  font-family: var(--rw-font-body);
  display: block;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* NAV */
.rw-nav ul { display: flex; align-items: center; gap: 4px; }
.rw-nav ul li { position: relative; }
.rw-nav ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--rw-radius-sm);
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--rw-text);
  transition: var(--rw-transition);
}
.rw-nav ul li a:hover,
.rw-nav ul li.current-menu-item > a {
  color: var(--rw-primary);
  background: var(--rw-primary-bg);
}

/* Dropdown */
.rw-nav ul li ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--rw-white);
  border-radius: var(--rw-radius);
  box-shadow: var(--rw-shadow-md);
  border: 1px solid var(--rw-border);
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  z-index: 100;
}
.rw-nav ul li:hover > ul { display: flex; }
.rw-nav ul li ul li a { border-radius: var(--rw-radius-sm); font-size: 0.9rem; }

.rw-header-actions { display: flex; align-items: center; gap: 12px; }
.rw-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-secondary);
  font-weight: 700;
  font-size: 0.95rem;
}
.rw-phone-btn:hover { color: var(--rw-primary); }

/* Hamburger */
.rw-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--rw-radius-sm);
}
.rw-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rw-text);
  border-radius: 2px;
  transition: var(--rw-transition);
}

/* Mobile Drawer */
.rw-mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 8999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.rw-mobile-drawer.open { display: block; }
.rw-drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--rw-white);
  padding: 24px;
  overflow-y: auto;
  box-shadow: var(--rw-shadow-lg);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.rw-drawer-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.rw-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--rw-radius);
  font-weight: 600;
  font-size: 1rem;
  color: var(--rw-text);
  border-bottom: 1px solid var(--rw-border-light);
  transition: var(--rw-transition);
}
.rw-drawer-nav a:hover { color: var(--rw-primary); background: var(--rw-primary-bg); }
.rw-drawer-contact { margin-top: 24px; }
.rw-drawer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--rw-bg);
  border-radius: var(--rw-radius);
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--rw-text);
}

/* ===== HERO - HOMEPAGE ===== */
.rw-hero {
  background: linear-gradient(140deg, var(--rw-secondary) 0%, var(--rw-secondary-mid) 50%, #0F3460 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.rw-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.rw-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.rw-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.rw-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.18);
  border: 1px solid rgba(255,107,0,0.35);
  color: #FFB07A;
  padding: 8px 18px;
  border-radius: var(--rw-radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  animation: pillPulse 3s ease infinite;
}
@keyframes pillPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(255,107,0,0); }
}
.rw-hero h1 {
  color: var(--rw-white);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 22px;
}
.rw-hero h1 .rw-highlight {
  color: var(--rw-primary);
  position: relative;
  display: inline-block;
}
.rw-hero h1 .rw-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 3px;
  background: var(--rw-primary);
  border-radius: 2px;
  opacity: 0.4;
}
.rw-hero-desc {
  color: rgba(255,255,255,0.70);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
}
.rw-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.rw-hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.rw-trust-item { text-align: center; }
.rw-trust-num {
  display: block;
  font-family: var(--rw-font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--rw-accent);
  line-height: 1;
}
.rw-trust-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 3px;
}

/* Hero Right Card */
.rw-hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--rw-radius-xl);
  padding: 36px 30px;
  position: relative;
}
.rw-hero-card-title {
  font-family: var(--rw-font-heading);
  color: var(--rw-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rw-service-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.rw-service-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--rw-radius);
  padding: 14px 10px;
  text-align: center;
  transition: var(--rw-transition);
  cursor: default;
}
.rw-service-chip:hover {
  background: rgba(255,107,0,0.2);
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-2px);
}
.rw-service-chip .rw-chip-icon { font-size: 1.6rem; margin-bottom: 5px; display: block; }
.rw-service-chip span { color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 500; display: block; }
.rw-hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.2);
  padding: 12px 16px;
  border-radius: var(--rw-radius);
}
.rw-stars { color: var(--rw-accent); font-size: 0.9rem; letter-spacing: 2px; }
.rw-rating-text { color: var(--rw-white); font-size: 0.85rem; font-weight: 600; }
.rw-rating-sub { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* ===== SERVICES SECTION ===== */
.rw-services { padding: var(--rw-section-padding); background: var(--rw-bg); }
.rw-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.rw-service-card {
  background: var(--rw-white);
  border-radius: var(--rw-radius-lg);
  padding: 32px 26px;
  border: 1.5px solid var(--rw-border);
  transition: var(--rw-transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rw-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rw-primary), var(--rw-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--rw-transition);
}
.rw-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--rw-shadow-md);
  border-color: rgba(255,107,0,0.15);
}
.rw-service-card:hover::after { transform: scaleX(1); }
.rw-service-icon-wrap {
  width: 66px; height: 66px;
  background: var(--rw-primary-bg);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 20px;
  transition: var(--rw-transition);
}
.rw-service-card:hover .rw-service-icon-wrap {
  background: var(--rw-primary);
  transform: rotate(-6deg) scale(1.05);
}
.rw-service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.rw-service-card p {
  font-size: 0.88rem;
  color: var(--rw-text-muted);
  margin-bottom: 20px;
  flex: 1;
}
.rw-service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rw-border-light);
  padding-top: 16px;
  margin-top: auto;
}
.rw-service-price {
  font-weight: 800;
  color: var(--rw-primary);
  font-size: 1rem;
  font-family: var(--rw-font-heading);
}
.rw-service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rw-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--rw-transition);
}
.rw-service-link:hover { color: var(--rw-primary); gap: 8px; }

/* ===== PROCESS STEPS ===== */
.rw-process { padding: var(--rw-section-padding); }
.rw-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.rw-steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%;
  right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--rw-primary) 0%, var(--rw-border) 100%);
  z-index: 0;
}
.rw-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.rw-step-num {
  width: 72px; height: 72px;
  background: var(--rw-white);
  border: 3px solid var(--rw-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rw-font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--rw-primary);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px var(--rw-bg);
  transition: var(--rw-transition);
}
.rw-step:hover .rw-step-num {
  background: var(--rw-primary);
  color: var(--rw-white);
  transform: scale(1.1);
}
.rw-step h4 { font-size: 1rem; margin-bottom: 8px; }
.rw-step p { font-size: 0.85rem; }

/* ===== WHY US ===== */
.rw-why { padding: var(--rw-section-padding); }
.rw-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.rw-feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.rw-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--rw-radius);
  border: 1.5px solid var(--rw-border);
  transition: var(--rw-transition);
  background: var(--rw-white);
}
.rw-feature:hover {
  border-color: rgba(255,107,0,0.25);
  box-shadow: var(--rw-shadow);
  transform: translateX(5px);
}
.rw-feature-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  background: var(--rw-primary-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--rw-transition);
}
.rw-feature:hover .rw-feature-icon { background: var(--rw-primary); }
.rw-feature-body h4 { font-size: 1rem; margin-bottom: 4px; }
.rw-feature-body p { font-size: 0.85rem; margin: 0; }

/* Stats Card */
.rw-stats-card {
  background: linear-gradient(145deg, var(--rw-secondary) 0%, #16213E 100%);
  border-radius: var(--rw-radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.rw-stats-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.rw-main-stat {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.rw-main-stat-num {
  display: block;
  font-family: var(--rw-font-heading);
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--rw-primary);
  line-height: 1;
}
.rw-main-stat p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 8px 0 0; }
.rw-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.rw-mini-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--rw-radius);
  padding: 18px 14px;
  text-align: center;
  transition: var(--rw-transition);
}
.rw-mini-stat:hover { background: rgba(255,107,0,0.12); border-color: rgba(255,107,0,0.3); }
.rw-mini-stat .n {
  display: block;
  font-family: var(--rw-font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--rw-accent);
  line-height: 1;
}
.rw-mini-stat .l { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.rw-testimonials { padding: var(--rw-section-padding); background: var(--rw-bg); }
.rw-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.rw-testi-card {
  background: var(--rw-white);
  border-radius: var(--rw-radius-lg);
  padding: 30px;
  border: 1.5px solid var(--rw-border);
  transition: var(--rw-transition);
  display: flex;
  flex-direction: column;
}
.rw-testi-card:hover {
  box-shadow: var(--rw-shadow);
  transform: translateY(-5px);
  border-color: rgba(255,107,0,0.15);
}
.rw-testi-stars { color: var(--rw-accent); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 14px; }
.rw-testi-text {
  color: var(--rw-text);
  font-size: 0.93rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}
.rw-testi-author { display: flex; align-items: center; gap: 12px; }
.rw-testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rw-primary), var(--rw-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.rw-testi-name { font-weight: 700; font-size: 0.93rem; color: var(--rw-secondary); }
.rw-testi-loc { font-size: 0.78rem; color: var(--rw-text-muted); margin: 2px 0 0; }

/* ===== PRICING ===== */
.rw-pricing { padding: var(--rw-section-padding); }
.rw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}
.rw-price-card {
  border-radius: var(--rw-radius-xl);
  padding: 40px 34px;
  border: 2px solid var(--rw-border);
  transition: var(--rw-transition);
  background: var(--rw-white);
  position: relative;
}
.rw-price-card:hover { transform: translateY(-6px); box-shadow: var(--rw-shadow-md); }
.rw-price-card.featured {
  border-color: var(--rw-primary);
  background: var(--rw-secondary);
  color: var(--rw-white);
  box-shadow: var(--rw-shadow-orange);
}
.rw-price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--rw-primary);
  color: var(--rw-white);
  padding: 4px 20px;
  border-radius: var(--rw-radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.rw-price-icon { font-size: 2.2rem; margin-bottom: 16px; }
.rw-price-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.rw-price-card.featured .rw-price-name { color: var(--rw-white); }
.rw-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0;
}
.rw-price-currency { font-size: 1.4rem; font-weight: 700; color: var(--rw-primary); }
.rw-price-num {
  font-family: var(--rw-font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--rw-primary);
  line-height: 1;
}
.rw-price-period { color: var(--rw-text-muted); font-size: 0.85rem; }
.rw-price-card.featured .rw-price-period { color: rgba(255,255,255,0.5); }
.rw-price-desc { font-size: 0.88rem; margin-bottom: 24px; }
.rw-price-card.featured .rw-price-desc { color: rgba(255,255,255,0.65); }
.rw-price-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.rw-price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--rw-text);
}
.rw-price-card.featured .rw-price-feature { color: rgba(255,255,255,0.8); }
.rw-check { color: var(--rw-primary); font-size: 1rem; flex-shrink: 0; }
.rw-price-card.featured .rw-check { color: var(--rw-accent); }

/* ===== FAQ ===== */
.rw-faq { padding: var(--rw-section-padding); background: var(--rw-bg); }
.rw-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.rw-faq-list { display: flex; flex-direction: column; gap: 12px; }
.rw-faq-item {
  background: var(--rw-white);
  border-radius: var(--rw-radius);
  border: 1.5px solid var(--rw-border);
  overflow: hidden;
  transition: var(--rw-transition);
}
.rw-faq-item.open { border-color: rgba(255,107,0,0.3); }
.rw-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.93rem;
  gap: 12px;
  user-select: none;
}
.rw-faq-q:hover { background: var(--rw-bg); }
.rw-faq-toggle {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--rw-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--rw-transition);
  color: var(--rw-primary);
  font-weight: 700;
}
.rw-faq-item.open .rw-faq-toggle { background: var(--rw-primary); color: var(--rw-white); transform: rotate(45deg); }
.rw-faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: var(--rw-transition-slow);
  font-size: 0.88rem;
  color: var(--rw-text-muted);
  line-height: 1.8;
}
.rw-faq-item.open .rw-faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ===== CONTACT / BOOKING SECTION ===== */
.rw-contact { padding: var(--rw-section-padding); background: linear-gradient(145deg, var(--rw-secondary) 0%, #16213E 100%); position: relative; overflow: hidden; }
.rw-contact::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(255,107,0,0.08) 0%, transparent 65%);
}
.rw-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.rw-contact-info h2 { color: var(--rw-white); margin-bottom: 14px; }
.rw-contact-info > p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.rw-contact-items { display: flex; flex-direction: column; gap: 14px; }
.rw-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--rw-radius);
  transition: var(--rw-transition);
}
.rw-contact-item:hover { background: rgba(255,107,0,0.12); border-color: rgba(255,107,0,0.25); }
.rw-contact-item-icon { font-size: 1.3rem; width: 36px; text-align: center; flex-shrink: 0; }
.rw-contact-item-text strong { display: block; color: var(--rw-white); font-size: 0.82rem; margin-bottom: 2px; }
.rw-contact-item-text span, .rw-contact-item-text a { color: rgba(255,255,255,0.75); font-size: 0.93rem; }
.rw-contact-item-text a:hover { color: var(--rw-accent); }

/* Booking Form */
.rw-booking-form {
  background: var(--rw-white);
  border-radius: var(--rw-radius-xl);
  padding: 40px 36px;
  box-shadow: var(--rw-shadow-lg);
}
.rw-booking-form h3 { color: var(--rw-secondary); margin-bottom: 6px; }
.rw-booking-form > p { font-size: 0.88rem; color: var(--rw-text-muted); margin-bottom: 28px; }
.rw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rw-form-group { margin-bottom: 16px; }
.rw-form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--rw-text); margin-bottom: 6px; }
.rw-form-group input,
.rw-form-group select,
.rw-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--rw-border);
  border-radius: var(--rw-radius-sm);
  font-family: var(--rw-font-body);
  font-size: 0.93rem;
  color: var(--rw-text);
  background: var(--rw-white);
  transition: var(--rw-transition);
  outline: none;
  appearance: none;
}
.rw-form-group input:focus,
.rw-form-group select:focus,
.rw-form-group textarea:focus {
  border-color: var(--rw-primary);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.10);
}
.rw-form-group textarea { resize: vertical; min-height: 96px; }
.rw-form-msg { display: none; padding: 13px 18px; border-radius: var(--rw-radius-sm); margin-bottom: 16px; font-weight: 600; font-size: 0.9rem; }

/* ===== TEAM SECTION ===== */
.rw-team { padding: var(--rw-section-padding); }
.rw-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.rw-team-card {
  text-align: center;
  background: var(--rw-white);
  border-radius: var(--rw-radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--rw-border);
  transition: var(--rw-transition);
}
.rw-team-card:hover { box-shadow: var(--rw-shadow); transform: translateY(-5px); border-color: rgba(255,107,0,0.2); }
.rw-team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rw-primary), var(--rw-primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rw-font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--rw-white);
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}
.rw-team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.rw-team-role { font-size: 0.82rem; color: var(--rw-primary); font-weight: 600; margin-bottom: 12px; }
.rw-team-exp { font-size: 0.82rem; color: var(--rw-text-muted); }

/* ===== BLOG ===== */
.rw-blog { padding: var(--rw-section-padding); background: var(--rw-bg); }
.rw-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.rw-blog-card {
  background: var(--rw-white);
  border-radius: var(--rw-radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--rw-border);
  transition: var(--rw-transition);
}
.rw-blog-card:hover { box-shadow: var(--rw-shadow-md); transform: translateY(-5px); border-color: rgba(255,107,0,0.15); }
.rw-blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--rw-secondary), #0F3460);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.rw-blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--rw-primary);
  color: var(--rw-white);
  padding: 4px 12px;
  border-radius: var(--rw-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}
.rw-blog-body { padding: 24px; }
.rw-blog-meta { font-size: 0.78rem; color: var(--rw-text-muted); margin-bottom: 10px; }
.rw-blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.rw-blog-card h3 a:hover { color: var(--rw-primary); }
.rw-blog-card p { font-size: 0.85rem; margin-bottom: 16px; }
.rw-blog-read { font-size: 0.85rem; font-weight: 700; color: var(--rw-primary); display: flex; align-items: center; gap: 4px; }
.rw-blog-read:hover { gap: 8px; }

/* ===== CTA BANNER ===== */
.rw-cta-banner {
  background: linear-gradient(135deg, var(--rw-primary) 0%, var(--rw-primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rw-cta-banner::before {
  content: '🔧';
  position: absolute;
  left: 5%;
  top: 50%; transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.08;
}
.rw-cta-banner::after {
  content: '⚡';
  position: absolute;
  right: 5%;
  top: 50%; transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.08;
}
.rw-cta-banner h2 { color: var(--rw-white); font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.rw-cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; }
.rw-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.rw-footer {
  background: var(--rw-bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.rw-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.rw-footer h4 {
  color: var(--rw-white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--rw-font-heading);
  position: relative;
  padding-bottom: 10px;
}
.rw-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--rw-primary);
  border-radius: 2px;
}
.rw-footer-links { display: flex; flex-direction: column; gap: 10px; }
.rw-footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--rw-transition); }
.rw-footer-links a:hover { color: var(--rw-primary); padding-left: 5px; }
.rw-footer-about p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; margin-top: 16px; }
.rw-footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.rw-social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--rw-transition);
  color: rgba(255,255,255,0.6);
}
.rw-social-btn:hover { background: var(--rw-primary); color: var(--rw-white); transform: translateY(-2px); }
.rw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.rw-footer-bottom a { color: var(--rw-primary); }

/* ===== FLOATING BUTTONS ===== */
.rw-floating {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.rw-float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--rw-shadow-md);
  text-decoration: none;
  transition: var(--rw-transition);
}
.rw-float-btn:hover { transform: scale(1.12) translateY(-2px); box-shadow: var(--rw-shadow-lg); }
.rw-float-wa  { background: #25D366; }
.rw-float-call { background: var(--rw-primary); }

/* ===== PAGE HERO (Inner Pages) ===== */
.rw-page-hero {
  background: linear-gradient(135deg, var(--rw-secondary), #16213E);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rw-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.rw-page-hero h1 { color: var(--rw-white); margin-bottom: 12px; position: relative; }
.rw-breadcrumb { color: rgba(255,255,255,0.55); font-size: 0.88rem; position: relative; }
.rw-breadcrumb a { color: var(--rw-primary); }
.rw-breadcrumb a:hover { color: var(--rw-white); }

/* ===== SKIP LINK ===== */
.skip-link { position: absolute; top: -100%; left: 0; background: var(--rw-primary); color: var(--rw-white); padding: 8px 20px; z-index: 99999; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }

/* ===== ELEMENTOR OVERRIDES ===== */
.elementor-section .elementor-container { max-width: 1220px; }
.elementor h1,.elementor h2,.elementor h3,.elementor h4 { font-family: var(--rw-font-heading); }
.elementor p { font-family: var(--rw-font-body); }

/* Allow Elementor to control colors/fonts when needed */
.elementor-widget-heading .elementor-heading-title { font-family: var(--rw-font-heading); }
.elementor-widget-text-editor { font-family: var(--rw-font-body); }

/* Elementor Button Compatibility */
.elementor-button.rw-btn-primary { background: var(--rw-primary) !important; border-color: var(--rw-primary) !important; color: var(--rw-white) !important; border-radius: 999px !important; }
.elementor-button.rw-btn-primary:hover { background: var(--rw-primary-dark) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .rw-footer-grid { grid-template-columns: 1fr 1fr; }
  .rw-steps-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .rw-steps-grid::before { display: none; }
}
@media (max-width: 900px) {
  .rw-hero-grid { grid-template-columns: 1fr; }
  .rw-hero-card { display: none; }
  .rw-why-grid { grid-template-columns: 1fr; }
  .rw-contact-grid { grid-template-columns: 1fr; }
  .rw-faq-grid { grid-template-columns: 1fr; }
  :root { --rw-section-padding: 64px 0; }
}
@media (max-width: 768px) {
  .rw-nav { display: none; }
  .rw-hamburger { display: flex; }
  .rw-header-actions .rw-phone-btn { display: none; }
  .rw-topbar-right { display: none; }
  .rw-footer-grid { grid-template-columns: 1fr 1fr; }
  .rw-form-row { grid-template-columns: 1fr; }
  .rw-hero-btns { flex-direction: column; }
  .rw-hero-btns .rw-btn { justify-content: center; }
}
@media (max-width: 520px) {
  .rw-footer-grid { grid-template-columns: 1fr; }
  .rw-hero-trust { gap: 16px; }
  .rw-trust-num { font-size: 1.5rem; }
  .rw-booking-form { padding: 28px 22px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.rw-anim-up   { animation: fadeUp 0.6s ease both; }
.rw-anim-in   { animation: fadeIn 0.5s ease both; }
.rw-anim-d1   { animation-delay: 0.1s; }
.rw-anim-d2   { animation-delay: 0.2s; }
.rw-anim-d3   { animation-delay: 0.3s; }
.rw-anim-d4   { animation-delay: 0.4s; }

/* ===== WORDPRESS NATIVE ===== */
.wp-caption-text { font-size: 0.85rem; color: var(--rw-text-muted); text-align: center; margin-top: 6px; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
blockquote { border-left: 4px solid var(--rw-primary); padding: 16px 24px; background: var(--rw-bg); border-radius: 0 var(--rw-radius-sm) var(--rw-radius-sm) 0; margin: 24px 0; font-style: italic; }
code { background: var(--rw-bg); padding: 2px 8px; border-radius: 4px; font-size: 0.88em; color: var(--rw-primary); }
