/* ============================================================
   RYNAVEX - Main Stylesheet
   Prefix: rn-
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --rn-navy: #1a2742;
  --rn-navy-deep: #0f1826;
  --rn-slate: #4a5568;
  --rn-slate-light: #718096;
  --rn-teal: #2a7c8a;
  --rn-teal-light: #3a9db0;
  --rn-teal-pale: #e6f4f7;
  --rn-white: #ffffff;
  --rn-off-white: #f8f9fb;
  --rn-gray-100: #f1f3f6;
  --rn-gray-200: #e2e7ed;
  --rn-gray-300: #cbd5e0;
  --rn-text-main: #1a2742;
  --rn-text-body: #4a5568;
  --rn-text-muted: #718096;
  --rn-border: #e2e7ed;
  --rn-shadow-sm: 0 2px 8px rgba(26,39,66,0.06);
  --rn-shadow-md: 0 4px 20px rgba(26,39,66,0.1);
  --rn-shadow-lg: 0 8px 40px rgba(26,39,66,0.14);
  --rn-radius-sm: 6px;
  --rn-radius-md: 12px;
  --rn-radius-lg: 20px;
  --rn-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --rn-font-display: 'Playfair Display', Georgia, serif;
  --rn-font-body: 'DM Sans', -apple-system, sans-serif;
}

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--rn-font-body);
  color: var(--rn-text-body);
  background-color: var(--rn-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--rn-font-display);
  color: var(--rn-text-main);
  line-height: 1.25;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--rn-teal);
  text-decoration: none;
  transition: var(--rn-transition);
}

a:hover {
  color: var(--rn-teal-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Utility Classes --- */
.rn-section {
  padding: 80px 0;
}

.rn-section-sm {
  padding: 50px 0;
}

.rn-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--rn-navy);
}

.rn-section-subtitle {
  font-size: 1.05rem;
  color: var(--rn-text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.rn-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rn-teal);
  margin-bottom: 0.75rem;
  font-family: var(--rn-font-body);
}

.rn-bg-off-white { background-color: var(--rn-off-white); }
.rn-bg-navy { background-color: var(--rn-navy); }
.rn-bg-teal-pale { background-color: var(--rn-teal-pale); }
.rn-text-white { color: var(--rn-white) !important; }
.rn-text-muted-custom { color: var(--rn-text-muted); }

/* --- Buttons --- */
.rn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--rn-teal);
  color: var(--rn-white);
  padding: 0.8rem 1.8rem;
  border-radius: var(--rn-radius-sm);
  font-family: var(--rn-font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid var(--rn-teal);
  cursor: pointer;
  transition: var(--rn-transition);
  text-decoration: none;
  white-space: nowrap;
}

.rn-btn-primary:hover {
  background-color: var(--rn-teal-light);
  border-color: var(--rn-teal-light);
  color: var(--rn-white);
  transform: translateY(-1px);
  box-shadow: var(--rn-shadow-md);
}

.rn-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--rn-white);
  padding: 0.8rem 1.8rem;
  border-radius: var(--rn-radius-sm);
  font-family: var(--rn-font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--rn-transition);
  text-decoration: none;
  white-space: nowrap;
}

.rn-btn-outline:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--rn-white);
  color: var(--rn-white);
  transform: translateY(-1px);
}

.rn-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--rn-teal);
  padding: 0.8rem 1.8rem;
  border-radius: var(--rn-radius-sm);
  font-family: var(--rn-font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid var(--rn-teal);
  cursor: pointer;
  transition: var(--rn-transition);
  text-decoration: none;
}

.rn-btn-outline-dark:hover {
  background-color: var(--rn-teal);
  color: var(--rn-white);
  transform: translateY(-1px);
}

/* --- Navigation --- */
.rn-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--rn-transition);
  background-color: transparent;
}

.rn-navbar.rn-scrolled {
  background-color: var(--rn-white);
  box-shadow: var(--rn-shadow-md);
  padding: 0.6rem 0;
}

.rn-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rn-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.rn-logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--rn-teal), var(--rn-teal-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--rn-font-display);
}

.rn-logo-text {
  font-family: var(--rn-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rn-white);
  transition: var(--rn-transition);
}

.rn-navbar.rn-scrolled .rn-logo-text {
  color: var(--rn-navy);
}

.rn-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.rn-nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--rn-radius-sm);
  transition: var(--rn-transition);
  text-decoration: none;
}

.rn-navbar.rn-scrolled .rn-nav-links a {
  color: var(--rn-text-body);
}

.rn-nav-links a:hover {
  background-color: rgba(255,255,255,0.15);
  color: var(--rn-white);
}

.rn-navbar.rn-scrolled .rn-nav-links a:hover {
  background-color: var(--rn-teal-pale);
  color: var(--rn-teal);
}

.rn-nav-cta {
  background-color: var(--rn-teal);
  color: var(--rn-white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--rn-radius-sm) !important;
}

.rn-nav-cta:hover {
  background-color: var(--rn-teal-light) !important;
  color: var(--rn-white) !important;
}

.rn-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.rn-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--rn-white);
  transition: var(--rn-transition);
}

.rn-navbar.rn-scrolled .rn-mobile-toggle span {
  background-color: var(--rn-navy);
}

/* --- Hero Section --- */
.rn-hero-main {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--rn-navy-deep);
}

.rn-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.rn-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,24,38,0.96) 0%, rgba(26,39,66,0.85) 50%, rgba(42,124,138,0.4) 100%);
}

.rn-hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.rn-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.rn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(42,124,138,0.2);
  border: 1px solid rgba(42,124,138,0.4);
  color: var(--rn-teal-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.rn-hero-title {
  font-family: var(--rn-font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--rn-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.rn-hero-title em {
  font-style: normal;
  color: var(--rn-teal-light);
}

.rn-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.rn-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.rn-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.rn-hero-stat-item {
  text-align: left;
}

.rn-hero-stat-num {
  font-family: var(--rn-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rn-white);
  line-height: 1;
}

.rn-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.rn-hero-image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rn-hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.rn-hero-img-main {
  width: 100%;
  border-radius: var(--rn-radius-lg);
  object-fit: cover;
  height: 500px;
  box-shadow: var(--rn-shadow-lg);
}

.rn-hero-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--rn-white);
  border-radius: var(--rn-radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--rn-shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
}

.rn-hero-img-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--rn-teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rn-teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.rn-hero-img-badge-text strong {
  display: block;
  font-family: var(--rn-font-display);
  font-size: 0.9rem;
  color: var(--rn-navy);
}

.rn-hero-img-badge-text span {
  font-size: 0.75rem;
  color: var(--rn-text-muted);
}

/* --- SVG Dividers --- */
.rn-divider-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.rn-divider-wave svg {
  display: block;
  width: 100%;
}

/* --- Service Cards --- */
.rn-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.rn-service-card {
  background: var(--rn-white);
  border-radius: var(--rn-radius-md);
  overflow: hidden;
  border: 1px solid var(--rn-border);
  transition: var(--rn-transition);
  position: relative;
}

.rn-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rn-shadow-lg);
  border-color: var(--rn-teal-pale);
}

.rn-service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.rn-service-card-body {
  padding: 1.5rem;
}

.rn-service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--rn-teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rn-teal);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.rn-service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--rn-navy);
}

.rn-service-card p {
  font-size: 0.9rem;
  color: var(--rn-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.rn-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rn-teal);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 1rem;
  text-decoration: none;
  transition: var(--rn-transition);
}

.rn-service-card-link:hover {
  gap: 0.7rem;
  color: var(--rn-teal-light);
}

/* --- Cost Estimator --- */
.rn-quote-calculator {
  background: var(--rn-white);
  border-radius: var(--rn-radius-lg);
  box-shadow: var(--rn-shadow-lg);
  padding: 2.5rem;
  border: 1px solid var(--rn-border);
}

.rn-estimator-label {
  font-weight: 600;
  color: var(--rn-navy);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.rn-estimator-row {
  margin-bottom: 1.5rem;
}

.rn-room-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rn-room-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--rn-teal);
  background: transparent;
  color: var(--rn-teal);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--rn-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rn-room-btn:hover {
  background: var(--rn-teal);
  color: white;
}

.rn-room-count {
  font-family: var(--rn-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rn-navy);
  min-width: 2rem;
  text-align: center;
}

.rn-freq-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rn-freq-option {
  padding: 0.5rem 1rem;
  border: 2px solid var(--rn-border);
  border-radius: var(--rn-radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--rn-transition);
  background: transparent;
  color: var(--rn-text-body);
  font-family: var(--rn-font-body);
}

.rn-freq-option:hover,
.rn-freq-option.rn-active {
  border-color: var(--rn-teal);
  background: var(--rn-teal-pale);
  color: var(--rn-teal);
}

.rn-addon-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rn-addon-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--rn-border);
  border-radius: var(--rn-radius-sm);
  cursor: pointer;
  transition: var(--rn-transition);
}

.rn-addon-item:hover {
  border-color: var(--rn-teal);
  background: var(--rn-teal-pale);
}

.rn-addon-item input[type="checkbox"] {
  accent-color: var(--rn-teal);
  width: 16px;
  height: 16px;
}

.rn-addon-item label {
  cursor: pointer;
  font-size: 0.9rem;
  flex: 1;
}

.rn-addon-price {
  font-size: 0.8rem;
  color: var(--rn-teal);
  font-weight: 600;
}

.rn-estimate-result {
  background: linear-gradient(135deg, var(--rn-navy) 0%, var(--rn-teal) 100%);
  border-radius: var(--rn-radius-md);
  padding: 1.5rem;
  text-align: center;
  color: white;
  margin-top: 1.5rem;
}

.rn-estimate-result .rn-price-range {
  font-family: var(--rn-font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.rn-estimate-disclaimer {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 0.5rem;
}

/* --- Before/After Slider --- */
.rn-before-after-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--rn-radius-md);
  cursor: col-resize;
  user-select: none;
  box-shadow: var(--rn-shadow-lg);
}

.rn-ba-img-container {
  position: relative;
  width: 100%;
  height: 420px;
}

.rn-ba-before,
.rn-ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.rn-ba-before img,
.rn-ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rn-ba-before {
  clip-path: inset(0 50% 0 0);
}

.rn-ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  z-index: 10;
}

.rn-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--rn-shadow-md);
  z-index: 11;
  color: var(--rn-teal);
  font-size: 0.9rem;
}

.rn-ba-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rn-ba-label-before {
  left: 1rem;
  background: rgba(0,0,0,0.5);
  color: white;
}

.rn-ba-label-after {
  right: 1rem;
  background: rgba(42,124,138,0.85);
  color: white;
}

/* --- Why Us Timeline --- */
.rn-why-timeline {
  position: relative;
  padding-left: 2rem;
}

.rn-why-timeline::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rn-teal), var(--rn-navy));
}

.rn-timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.rn-timeline-item:last-child {
  padding-bottom: 0;
}

.rn-timeline-dot {
  position: absolute;
  left: -2.55rem;
  top: 0.2rem;
  width: 14px;
  height: 14px;
  background: var(--rn-teal);
  border-radius: 50%;
  border: 3px solid var(--rn-white);
  box-shadow: 0 0 0 2px var(--rn-teal);
}

.rn-timeline-item h4 {
  font-size: 1.05rem;
  color: var(--rn-navy);
  margin-bottom: 0.4rem;
}

.rn-timeline-item p {
  font-size: 0.9rem;
  color: var(--rn-text-muted);
  margin: 0;
}

/* --- Team Section --- */
.rn-team-section {
  padding: 80px 0;
}

.rn-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.rn-team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--rn-radius-md);
  border: 1px solid var(--rn-border);
  background: var(--rn-white);
  transition: var(--rn-transition);
}

.rn-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rn-shadow-lg);
}

.rn-team-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rn-teal-pale);
  margin: 0 auto 1rem;
  display: block;
}

.rn-team-name {
  font-size: 1.05rem;
  color: var(--rn-navy);
  margin-bottom: 0.25rem;
}

.rn-team-role {
  font-size: 0.8rem;
  color: var(--rn-teal);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.rn-team-bio {
  font-size: 0.85rem;
  color: var(--rn-text-muted);
  line-height: 1.7;
}

/* --- Testimonial Slider --- */
.rn-testimonial-slider {
  position: relative;
  overflow: hidden;
}

.rn-testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rn-testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.rn-testimonial-card {
  background: var(--rn-white);
  border-radius: var(--rn-radius-md);
  padding: 2rem;
  border: 1px solid var(--rn-border);
  position: relative;
}

.rn-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--rn-font-display);
  font-size: 4rem;
  color: var(--rn-teal-pale);
  line-height: 1;
}

.rn-testimonial-text {
  font-size: 0.95rem;
  color: var(--rn-text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.rn-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rn-testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rn-teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rn-teal);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--rn-font-display);
  flex-shrink: 0;
}

.rn-testimonial-name {
  font-weight: 600;
  color: var(--rn-navy);
  font-size: 0.9rem;
}

.rn-testimonial-loc {
  font-size: 0.78rem;
  color: var(--rn-text-muted);
}

.rn-testimonial-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.rn-slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.rn-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rn-gray-300);
  border: none;
  cursor: pointer;
  transition: var(--rn-transition);
  padding: 0;
}

.rn-slider-dot.rn-active {
  background: var(--rn-teal);
  width: 24px;
  border-radius: 4px;
}

.rn-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rn-white);
  border: 1px solid var(--rn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--rn-teal);
  transition: var(--rn-transition);
  box-shadow: var(--rn-shadow-sm);
}

.rn-slider-nav:hover {
  background: var(--rn-teal);
  color: white;
  border-color: var(--rn-teal);
}

.rn-slider-prev { left: -1rem; }
.rn-slider-next { right: -1rem; }

/* --- Interactive Checklist --- */
.rn-interactive-checklist {
  border-radius: var(--rn-radius-md);
  overflow: hidden;
  border: 1px solid var(--rn-border);
}

.rn-checklist-category {
  border-bottom: 1px solid var(--rn-border);
}

.rn-checklist-category:last-child {
  border-bottom: none;
}

.rn-checklist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: var(--rn-off-white);
  transition: var(--rn-transition);
  border: none;
  width: 100%;
  text-align: left;
}

.rn-checklist-header:hover {
  background: var(--rn-teal-pale);
}

.rn-checklist-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rn-checklist-header-icon {
  color: var(--rn-teal);
  font-size: 1rem;
}

.rn-checklist-header h4 {
  font-size: 0.95rem;
  margin: 0;
  color: var(--rn-navy);
}

.rn-checklist-chevron {
  color: var(--rn-text-muted);
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.rn-checklist-category.rn-open .rn-checklist-chevron {
  transform: rotate(180deg);
}

.rn-checklist-body {
  display: none;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--rn-white);
}

.rn-checklist-category.rn-open .rn-checklist-body {
  display: block;
}

.rn-checklist-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rn-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--rn-text-body);
  cursor: pointer;
  padding: 0.3rem 0;
  transition: var(--rn-transition);
}

.rn-checklist-item input[type="checkbox"] {
  accent-color: var(--rn-teal);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.rn-checklist-item.rn-checked {
  color: var(--rn-teal);
  text-decoration: line-through;
  opacity: 0.7;
}

/* --- Articles Preview --- */
.rn-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.rn-article-card {
  border-radius: var(--rn-radius-md);
  overflow: hidden;
  border: 1px solid var(--rn-border);
  background: var(--rn-white);
  transition: var(--rn-transition);
}

.rn-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rn-shadow-lg);
}

.rn-article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.rn-article-card-body {
  padding: 1.5rem;
}

.rn-article-tag {
  display: inline-block;
  background: var(--rn-teal-pale);
  color: var(--rn-teal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.rn-article-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--rn-navy);
  line-height: 1.4;
}

.rn-article-card p {
  font-size: 0.875rem;
  color: var(--rn-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.rn-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--rn-text-muted);
}

/* --- Footer --- */
.rn-footer {
  background-color: var(--rn-navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.rn-footer-brand {
  margin-bottom: 1.5rem;
}

.rn-footer-brand .rn-logo-text {
  font-size: 1.5rem;
  color: var(--rn-white);
}

.rn-footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}

.rn-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
}

.rn-footer-contact-item i {
  color: var(--rn-teal-light);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.rn-footer-heading {
  color: var(--rn-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--rn-font-body);
}

.rn-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rn-footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--rn-transition);
}

.rn-footer-links a:hover {
  color: var(--rn-teal-light);
  padding-left: 4px;
}

.rn-footer-hours {
  font-size: 0.875rem;
  line-height: 2;
}

.rn-footer-hours strong {
  color: rgba(255,255,255,0.8);
}

.rn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.rn-social-links {
  display: flex;
  gap: 0.6rem;
}

.rn-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--rn-transition);
  text-decoration: none;
}

.rn-social-link:hover {
  background: var(--rn-teal);
  color: white;
}

/* --- Mini Contact Form (footer) --- */
.rn-footer-form-input {
  width: 100%;
  padding: 0.6rem 0.875rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--rn-radius-sm);
  color: white;
  font-size: 0.875rem;
  font-family: var(--rn-font-body);
  margin-bottom: 0.6rem;
  transition: var(--rn-transition);
}

.rn-footer-form-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.rn-footer-form-input:focus {
  outline: none;
  border-color: var(--rn-teal-light);
  background: rgba(255,255,255,0.12);
}

/* --- Page Header Banner --- */
.rn-page-header {
  background: linear-gradient(135deg, var(--rn-navy-deep) 0%, var(--rn-navy) 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.rn-page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1400&auto=format&fit=crop&q=70');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.rn-page-header-content {
  position: relative;
  z-index: 1;
}

.rn-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rn-white);
  margin-bottom: 0.75rem;
}

.rn-page-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 0;
}

.rn-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.rn-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.rn-breadcrumb a:hover {
  color: var(--rn-teal-light);
}

.rn-breadcrumb .rn-bc-sep {
  color: rgba(255,255,255,0.3);
}

/* --- Contact Form --- */
.rn-contact-form {
  background: var(--rn-white);
  border-radius: var(--rn-radius-md);
  padding: 2.5rem;
  box-shadow: var(--rn-shadow-md);
  border: 1px solid var(--rn-border);
}

.rn-form-group {
  margin-bottom: 1.25rem;
}

.rn-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rn-navy);
  margin-bottom: 0.4rem;
}

.rn-form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--rn-border);
  border-radius: var(--rn-radius-sm);
  font-family: var(--rn-font-body);
  font-size: 0.9rem;
  color: var(--rn-text-body);
  background: var(--rn-white);
  transition: var(--rn-transition);
}

.rn-form-control:focus {
  outline: none;
  border-color: var(--rn-teal);
  box-shadow: 0 0 0 3px rgba(42,124,138,0.1);
}

.rn-form-control.rn-error {
  border-color: #e53e3e;
}

.rn-form-error-msg {
  color: #e53e3e;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: none;
}

.rn-form-error-msg.rn-visible {
  display: block;
}

.rn-captcha-box {
  background: var(--rn-off-white);
  border: 1px solid var(--rn-border);
  border-radius: var(--rn-radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.rn-captcha-question {
  font-size: 0.9rem;
  color: var(--rn-navy);
  font-weight: 500;
}

.rn-captcha-input {
  width: 60px;
  padding: 0.4rem 0.6rem;
  border: 1.5px solid var(--rn-border);
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}

.rn-captcha-input:focus {
  outline: none;
  border-color: var(--rn-teal);
}

/* --- Map Box --- */
.rn-map-wrapper {
  border-radius: var(--rn-radius-md);
  overflow: hidden;
  box-shadow: var(--rn-shadow-md);
  border: 1px solid var(--rn-border);
}

.rn-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

/* --- Business Hours --- */
.rn-hours-table {
  width: 100%;
}

.rn-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rn-border);
  font-size: 0.875rem;
}

.rn-hours-row:last-child {
  border-bottom: none;
}

.rn-hours-day {
  color: var(--rn-text-body);
}

.rn-hours-time {
  color: var(--rn-teal);
  font-weight: 600;
}

.rn-hours-time.rn-closed {
  color: var(--rn-text-muted);
  font-weight: 400;
}

/* --- Info Cards --- */
.rn-info-card {
  background: var(--rn-white);
  border: 1px solid var(--rn-border);
  border-radius: var(--rn-radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rn-info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--rn-teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rn-teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rn-info-card-body h5 {
  font-size: 0.95rem;
  color: var(--rn-navy);
  margin-bottom: 0.25rem;
}

.rn-info-card-body p {
  font-size: 0.85rem;
  color: var(--rn-text-muted);
  margin: 0;
}

/* --- Legal Pages --- */
.rn-legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.rn-legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--rn-navy);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rn-teal-pale);
}

.rn-legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--rn-navy);
}

.rn-legal-content p,
.rn-legal-content li {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--rn-text-body);
}

.rn-legal-content ul,
.rn-legal-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.rn-legal-content li {
  margin-bottom: 0.3rem;
}

.rn-legal-meta {
  background: var(--rn-teal-pale);
  border-radius: var(--rn-radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--rn-teal);
  margin-bottom: 2rem;
}

/* --- Article / Blog --- */
.rn-article-content {
  max-width: 780px;
  margin: 0 auto;
}

.rn-article-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--rn-navy);
}

.rn-article-content h3 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--rn-navy);
}

.rn-article-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--rn-text-body);
  margin-bottom: 1.25rem;
}

.rn-article-content ul,
.rn-article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.rn-article-content li {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--rn-text-body);
  margin-bottom: 0.3rem;
}

.rn-article-header-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--rn-radius-md);
  margin-bottom: 2.5rem;
  box-shadow: var(--rn-shadow-md);
}

.rn-article-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--rn-text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.rn-article-callout {
  background: var(--rn-teal-pale);
  border-left: 4px solid var(--rn-teal);
  border-radius: 0 var(--rn-radius-sm) var(--rn-radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-size: 0.95rem;
  color: var(--rn-navy);
  line-height: 1.8;
}

/* --- About Page Specifics --- */
.rn-value-card {
  background: var(--rn-white);
  border: 1px solid var(--rn-border);
  border-radius: var(--rn-radius-md);
  padding: 1.75rem;
  transition: var(--rn-transition);
}

.rn-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--rn-shadow-md);
  border-color: var(--rn-teal-pale);
}

.rn-value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--rn-teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rn-teal);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.rn-value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--rn-navy);
}

.rn-value-card p {
  font-size: 0.875rem;
  color: var(--rn-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* --- Thank You Page --- */
.rn-thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.rn-thankyou-card {
  max-width: 540px;
  width: 100%;
  text-align: center;
  padding: 3rem;
  background: var(--rn-white);
  border-radius: var(--rn-radius-lg);
  box-shadow: var(--rn-shadow-lg);
  border: 1px solid var(--rn-border);
}

.rn-thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--rn-teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--rn-teal);
  font-size: 2rem;
}

/* --- Cookie Consent Banner --- */
.rn-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--rn-navy-deep);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 0;
  z-index: 9999;
  border-top: 2px solid var(--rn-teal);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rn-cookie-banner.rn-visible {
  transform: translateY(0);
}

.rn-cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rn-cookie-text {
  flex: 1;
  font-size: 0.85rem;
  min-width: 200px;
}

.rn-cookie-text a {
  color: var(--rn-teal-light);
}

.rn-cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.rn-cookie-accept {
  padding: 0.5rem 1.2rem;
  background: var(--rn-teal);
  color: white;
  border: none;
  border-radius: var(--rn-radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--rn-font-body);
  font-weight: 500;
  transition: var(--rn-transition);
}

.rn-cookie-accept:hover {
  background: var(--rn-teal-light);
}

.rn-cookie-manage {
  padding: 0.5rem 1.2rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--rn-radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--rn-font-body);
  transition: var(--rn-transition);
}

.rn-cookie-manage:hover {
  border-color: rgba(255,255,255,0.6);
  color: white;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .rn-mobile-toggle { display: flex; }
  
  .rn-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--rn-white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 999;
    align-items: flex-start;
    gap: 0;
  }

  .rn-nav-links.rn-open {
    right: 0;
  }

  .rn-nav-links a {
    color: var(--rn-text-body) !important;
    font-size: 1rem;
    padding: 0.75rem 0;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid var(--rn-border);
  }

  .rn-nav-links a:hover {
    background: transparent !important;
    color: var(--rn-teal) !important;
  }

  .rn-hero-img-frame { display: none; }
  
  .rn-ba-img-container { height: 260px; }
  
  .rn-slider-prev, .rn-slider-next { display: none; }
}

@media (max-width: 768px) {
  .rn-section { padding: 60px 0; }
  
  .rn-hero-main { min-height: auto; padding: 140px 0 80px; }
  
  .rn-hero-stats { gap: 1.5rem; }
  
  .rn-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .rn-quote-calculator { padding: 1.5rem; }
  
  .rn-contact-form { padding: 1.5rem; }
}

.rn-logo img{
  max-width: 150px;
}