/* ============================================================
   Rovexaro - Main Stylesheet
   https://rovexaro.com
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
  --rov-graphite: #1c1c1e;
  --rov-graphite-soft: #2d2d30;
  --rov-graphite-mid: #3d3d40;
  --rov-beige: #f5f0e8;
  --rov-beige-mid: #ede6d8;
  --rov-orange: #e07b39;
  --rov-orange-dark: #c4622a;
  --rov-orange-light: #f0975a;
  --rov-white: #ffffff;
  --rov-text-dark: #1c1c1e;
  --rov-text-mid: #4a4a4d;
  --rov-text-light: #7a7a7e;
  --rov-border: #e0ddd6;
  --rov-shadow: 0 4px 24px rgba(28, 28, 30, 0.12);
  --rov-shadow-lg: 0 12px 48px rgba(28, 28, 30, 0.18);
  --rov-radius: 8px;
  --rov-radius-lg: 16px;
  --rov-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --rov-font-head: 'Poppins', sans-serif;
  --rov-font-body: 'Open Sans', sans-serif;
}

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

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

body {
  font-family: var(--rov-font-body);
  color: var(--rov-text-dark);
  background: var(--rov-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--rov-orange); text-decoration: none; transition: color var(--rov-transition); }
a:hover { color: var(--rov-orange-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--rov-font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--rov-text-dark);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ----- Utility Classes ----- */
.rov-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.rov-container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.rov-section { padding: 96px 0; }
.rov-section-sm { padding: 64px 0; }
.rov-section-lg { padding: 128px 0; }

.rov-bg-dark { background: var(--rov-graphite); color: var(--rov-white); }
.rov-bg-dark h1, .rov-bg-dark h2, .rov-bg-dark h3, .rov-bg-dark h4 { color: var(--rov-white); }
.rov-bg-dark p, .rov-bg-dark li { color: rgba(255,255,255,0.8); }

.rov-bg-beige { background: var(--rov-beige); }
.rov-bg-beige-mid { background: var(--rov-beige-mid); }
.rov-bg-white { background: var(--rov-white); }

.rov-text-orange { color: var(--rov-orange) !important; }
.rov-text-center { text-align: center; }
.rov-text-light { color: var(--rov-text-light); }
.rov-text-muted { color: var(--rov-text-mid); }

.rov-fw-600 { font-weight: 600; }
.rov-fw-700 { font-weight: 700; }

.rov-mb-0 { margin-bottom: 0; }
.rov-mt-8 { margin-top: 2rem; }
.rov-mb-8 { margin-bottom: 2rem; }

/* ----- Typography ----- */
.rov-display-title {
  font-family: var(--rov-font-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rov-section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.rov-section-subtitle {
  font-size: 1.05rem;
  color: var(--rov-text-mid);
  max-width: 620px;
  line-height: 1.7;
}

.rov-label {
  font-family: var(--rov-font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rov-orange);
  display: block;
  margin-bottom: 0.75rem;
}

.rov-lead {
  font-size: 1.15rem;
  color: var(--rov-text-mid);
  line-height: 1.8;
}

/* ----- Buttons ----- */
.rov-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--rov-radius);
  font-family: var(--rov-font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--rov-transition);
  text-decoration: none;
  white-space: nowrap;
}

.rov-btn-primary {
  background: var(--rov-orange);
  color: var(--rov-white);
  border-color: var(--rov-orange);
}
.rov-btn-primary:hover {
  background: var(--rov-orange-dark);
  border-color: var(--rov-orange-dark);
  color: var(--rov-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 123, 57, 0.35);
}

.rov-btn-secondary {
  background: transparent;
  color: var(--rov-white);
  border-color: rgba(255,255,255,0.6);
}
.rov-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--rov-white);
  color: var(--rov-white);
}

.rov-btn-outline {
  background: transparent;
  color: var(--rov-orange);
  border-color: var(--rov-orange);
}
.rov-btn-outline:hover {
  background: var(--rov-orange);
  color: var(--rov-white);
}

.rov-btn-dark {
  background: var(--rov-graphite);
  color: var(--rov-white);
  border-color: var(--rov-graphite);
}
.rov-btn-dark:hover {
  background: var(--rov-graphite-soft);
  color: var(--rov-white);
  transform: translateY(-2px);
}

.rov-btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.rov-btn-lg { padding: 18px 42px; font-size: 1rem; }

/* ----- Navigation ----- */
.rov-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--rov-transition);
}

.rov-navbar.rov-navbar-scrolled {
  padding: 12px 0;
  background: rgba(28, 28, 30, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.rov-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.rov-navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.rov-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--rov-orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rov-font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--rov-white);
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.rov-logo-text {
  font-family: var(--rov-font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--rov-white);
  letter-spacing: -0.02em;
}

.rov-navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.rov-nav-item { position: relative; }

.rov-nav-link {
  font-family: var(--rov-font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--rov-transition);
  display: block;
  white-space: nowrap;
}

.rov-nav-link:hover, .rov-nav-link.active {
  color: var(--rov-white);
  background: rgba(255,255,255,0.1);
}

.rov-navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.rov-navbar-phone {
  font-family: var(--rov-font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rov-orange-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rov-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.rov-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rov-white);
  border-radius: 2px;
  transition: all var(--rov-transition);
}

.rov-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--rov-graphite);
  z-index: 999;
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 8px;
}

.rov-mobile-menu.open { display: flex; }

.rov-mobile-nav-link {
  font-family: var(--rov-font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--rov-white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}

.rov-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--rov-white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

/* ----- Hero ----- */
.rov-hero-renovation {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.rov-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rov-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28, 28, 30, 0.88) 0%,
    rgba(28, 28, 30, 0.55) 55%,
    rgba(28, 28, 30, 0.25) 100%
  );
}

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

.rov-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 123, 57, 0.2);
  border: 1px solid rgba(224, 123, 57, 0.4);
  color: var(--rov-orange-light);
  font-family: var(--rov-font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.rov-hero-title {
  font-family: var(--rov-font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--rov-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.rov-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}

.rov-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.rov-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.rov-hero-stat-item {}

.rov-hero-stat-number {
  font-family: var(--rov-font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--rov-white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.rov-hero-stat-number span {
  color: var(--rov-orange-light);
}

.rov-hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ----- Section Headers ----- */
.rov-section-header {
  margin-bottom: 56px;
}

.rov-section-header-center {
  text-align: center;
  margin-bottom: 56px;
}

.rov-section-header-center .rov-section-subtitle {
  margin: 0 auto;
}

.rov-divider-orange {
  width: 48px;
  height: 4px;
  background: var(--rov-orange);
  border-radius: 2px;
  margin-top: 20px;
}

.rov-divider-orange-center {
  width: 48px;
  height: 4px;
  background: var(--rov-orange);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ----- Service Cards ----- */
.rov-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.rov-service-card {
  background: var(--rov-white);
  border-radius: var(--rov-radius-lg);
  overflow: hidden;
  box-shadow: var(--rov-shadow);
  transition: all var(--rov-transition);
  border: 1px solid var(--rov-border);
}

.rov-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rov-shadow-lg);
}

.rov-service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.rov-service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rov-service-card:hover .rov-service-card-image img {
  transform: scale(1.05);
}

.rov-service-card-body {
  padding: 28px;
}

.rov-service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(224, 123, 57, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rov-orange);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.rov-service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.rov-service-card-desc {
  font-size: 0.92rem;
  color: var(--rov-text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.rov-service-card-link {
  font-family: var(--rov-font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rov-orange);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rov-service-card-link:hover { gap: 10px; }

/* ----- Project Cards ----- */
.rov-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.rov-project-card {
  border-radius: var(--rov-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.rov-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.rov-project-card:hover img { transform: scale(1.06); }

.rov-project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,30,0.9) 0%, rgba(28,28,30,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0.9;
  transition: opacity var(--rov-transition);
}

.rov-project-card:hover .rov-project-card-overlay { opacity: 1; }

.rov-project-card-cat {
  font-family: var(--rov-font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rov-orange-light);
  margin-bottom: 8px;
}

.rov-project-card-title {
  font-family: var(--rov-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rov-white);
  margin-bottom: 4px;
}

.rov-project-card-loc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
}

/* ----- Team Cards ----- */
.rov-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.rov-team-member-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--rov-radius-lg);
  background: var(--rov-white);
  border: 1px solid var(--rov-border);
  transition: all var(--rov-transition);
  box-shadow: 0 2px 12px rgba(28,28,30,0.06);
}

.rov-team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rov-shadow);
}

.rov-team-member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--rov-beige-mid);
}

.rov-team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rov-team-member-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.rov-team-member-role {
  font-size: 0.8rem;
  color: var(--rov-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.rov-team-member-bio {
  font-size: 0.85rem;
  color: var(--rov-text-mid);
  line-height: 1.65;
}

/* ----- Testimonials ----- */
.rov-testimonial-carousel {
  position: relative;
  overflow: hidden;
}

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

.rov-testimonial-card {
  flex: 0 0 100%;
  padding: 0 20px;
}

.rov-testimonial-inner {
  background: var(--rov-white);
  border-radius: var(--rov-radius-lg);
  padding: 40px;
  box-shadow: var(--rov-shadow);
  max-width: 780px;
  margin: 0 auto;
}

.rov-testimonial-stars {
  color: var(--rov-orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.rov-testimonial-text {
  font-size: 1.08rem;
  color: var(--rov-text-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.rov-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rov-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--rov-beige-mid);
}

.rov-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.rov-testimonial-name {
  font-family: var(--rov-font-head);
  font-size: 0.95rem;
  font-weight: 700;
}

.rov-testimonial-meta {
  font-size: 0.82rem;
  color: var(--rov-text-light);
}

.rov-carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.rov-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--rov-border);
  background: var(--rov-white);
  color: var(--rov-graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--rov-transition);
  font-size: 0.9rem;
}

.rov-carousel-btn:hover {
  background: var(--rov-orange);
  border-color: var(--rov-orange);
  color: var(--rov-white);
}

.rov-carousel-dots {
  display: flex;
  gap: 8px;
}

.rov-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rov-border);
  cursor: pointer;
  transition: all var(--rov-transition);
  border: none;
  padding: 0;
}

.rov-carousel-dot.active {
  background: var(--rov-orange);
  width: 24px;
  border-radius: 4px;
}

/* ----- Process Timeline ----- */
.rov-process-timeline {
  position: relative;
  padding: 20px 0;
}

.rov-timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rov-orange), var(--rov-graphite-mid));
}

.rov-timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-left: 80px;
}

.rov-timeline-step {
  position: relative;
}

.rov-timeline-step::before {
  content: '';
  position: absolute;
  left: -56px;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rov-orange);
  border: 3px solid var(--rov-white);
  box-shadow: 0 0 0 3px var(--rov-orange);
}

.rov-timeline-num {
  font-family: var(--rov-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rov-orange);
  margin-bottom: 6px;
}

.rov-timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.rov-timeline-desc {
  font-size: 0.9rem;
  color: var(--rov-text-mid);
  line-height: 1.65;
  max-width: 440px;
}

/* ----- Gallery ----- */
.rov-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.rov-gallery-item {
  overflow: hidden;
  border-radius: var(--rov-radius);
  cursor: pointer;
  position: relative;
}

.rov-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.rov-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.rov-gallery-item:hover img { transform: scale(1.06); }

.rov-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,30,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--rov-transition);
  color: var(--rov-white);
  font-size: 1.5rem;
}

.rov-gallery-item:hover .rov-gallery-item-overlay { opacity: 1; }

/* Before/After Slider */
.rov-before-after-slider {
  position: relative;
  border-radius: var(--rov-radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 16/9;
}

.rov-ba-before, .rov-ba-after {
  position: absolute;
  inset: 0;
}

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

.rov-ba-after {
  clip-path: inset(0 50% 0 0);
  transition: none;
}

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

.rov-ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rov-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rov-ba-labels {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 5;
}

.rov-ba-label {
  background: rgba(28,28,30,0.75);
  color: var(--rov-white);
  font-family: var(--rov-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ----- Quiz ----- */
.rov-interactive-quiz {
  background: var(--rov-white);
  border-radius: var(--rov-radius-lg);
  padding: 48px;
  box-shadow: var(--rov-shadow-lg);
  max-width: 720px;
  margin: 0 auto;
}

.rov-quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}

.rov-quiz-progress-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--rov-border);
  transition: background var(--rov-transition);
}

.rov-quiz-progress-step.done { background: var(--rov-orange); }

.rov-quiz-question {
  font-family: var(--rov-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.4;
}

.rov-quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.rov-quiz-option {
  padding: 16px 20px;
  border: 2px solid var(--rov-border);
  border-radius: var(--rov-radius);
  cursor: pointer;
  transition: all var(--rov-transition);
  font-size: 0.92rem;
  font-weight: 500;
  background: var(--rov-white);
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rov-quiz-option:hover {
  border-color: var(--rov-orange);
  background: rgba(224, 123, 57, 0.06);
}

.rov-quiz-option.selected {
  border-color: var(--rov-orange);
  background: rgba(224, 123, 57, 0.1);
  color: var(--rov-orange-dark);
  font-weight: 600;
}

.rov-quiz-option-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.rov-quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rov-quiz-counter {
  font-family: var(--rov-font-head);
  font-size: 0.8rem;
  color: var(--rov-text-light);
  font-weight: 600;
}

.rov-quiz-result {
  text-align: center;
  display: none;
}

.rov-quiz-result.show { display: block; }

.rov-quiz-result-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.rov-quiz-result-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.rov-quiz-result-desc {
  color: var(--rov-text-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ----- Calculator ----- */
.rov-renovation-calculator {
  background: var(--rov-graphite);
  border-radius: var(--rov-radius-lg);
  padding: 48px;
  color: var(--rov-white);
}

.rov-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.rov-calc-field {
  margin-bottom: 20px;
}

.rov-calc-label {
  font-family: var(--rov-font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.04em;
}

.rov-calc-input, .rov-calc-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--rov-radius);
  color: var(--rov-white);
  font-family: var(--rov-font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--rov-transition);
}

.rov-calc-input:focus, .rov-calc-select:focus {
  border-color: var(--rov-orange);
  background: rgba(255,255,255,0.12);
}

.rov-calc-select option { background: var(--rov-graphite); }

.rov-calc-result {
  background: rgba(224, 123, 57, 0.15);
  border: 1px solid rgba(224, 123, 57, 0.35);
  border-radius: var(--rov-radius);
  padding: 28px;
}

.rov-calc-result-label {
  font-family: var(--rov-font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rov-orange-light);
  margin-bottom: 12px;
}

.rov-calc-result-value {
  font-family: var(--rov-font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--rov-white);
  line-height: 1;
  margin-bottom: 8px;
}

.rov-calc-result-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ----- FAQ ----- */
.rov-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--rov-radius-lg);
  overflow: hidden;
  border: 1px solid var(--rov-border);
}

.rov-faq-item {
  border-bottom: 1px solid var(--rov-border);
}

.rov-faq-item:last-child { border-bottom: none; }

.rov-faq-question {
  width: 100%;
  padding: 22px 28px;
  background: var(--rov-white);
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: background var(--rov-transition);
  font-family: var(--rov-font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--rov-text-dark);
}

.rov-faq-question:hover { background: var(--rov-beige); }

.rov-faq-question.active {
  background: var(--rov-beige);
  color: var(--rov-orange-dark);
}

.rov-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rov-beige-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all var(--rov-transition);
  color: var(--rov-text-mid);
}

.rov-faq-question.active .rov-faq-icon {
  background: var(--rov-orange);
  color: var(--rov-white);
  transform: rotate(45deg);
}

.rov-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.rov-faq-answer.open {
  max-height: 400px;
}

.rov-faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  color: var(--rov-text-mid);
  line-height: 1.75;
  background: var(--rov-beige);
}

/* ----- Contact Form ----- */
.rov-contact-form {
  background: var(--rov-white);
  border-radius: var(--rov-radius-lg);
  padding: 48px;
  box-shadow: var(--rov-shadow);
  border: 1px solid var(--rov-border);
}

.rov-form-group {
  margin-bottom: 22px;
}

.rov-form-label {
  display: block;
  font-family: var(--rov-font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rov-text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.rov-form-label span { color: var(--rov-orange); }

.rov-form-input, .rov-form-textarea, .rov-form-select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--rov-border);
  border-radius: var(--rov-radius);
  font-family: var(--rov-font-body);
  font-size: 0.94rem;
  color: var(--rov-text-dark);
  background: var(--rov-white);
  outline: none;
  transition: border-color var(--rov-transition);
}

.rov-form-input:focus, .rov-form-textarea:focus, .rov-form-select:focus {
  border-color: var(--rov-orange);
}

.rov-form-input.error, .rov-form-textarea.error {
  border-color: #e05252;
}

.rov-form-error {
  font-size: 0.78rem;
  color: #e05252;
  margin-top: 5px;
  display: none;
  font-weight: 500;
}

.rov-form-error.show { display: block; }

.rov-form-textarea { min-height: 130px; resize: vertical; }

.rov-captcha-box {
  border: 2px solid var(--rov-border);
  border-radius: var(--rov-radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.rov-captcha-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--rov-orange);
}

.rov-captcha-label {
  font-size: 0.9rem;
  color: var(--rov-text-mid);
}

/* ----- Info Boxes ----- */
.rov-info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--rov-radius);
  background: var(--rov-beige);
}

.rov-info-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--rov-orange);
  color: var(--rov-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.rov-info-box-label {
  font-family: var(--rov-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rov-text-light);
  margin-bottom: 4px;
}

.rov-info-box-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rov-text-dark);
}

/* ----- Tips & Articles ----- */
.rov-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.rov-tip-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--rov-white);
  border-radius: var(--rov-radius);
  border: 1px solid var(--rov-border);
}

.rov-tip-icon {
  width: 40px;
  height: 40px;
  background: rgba(224, 123, 57, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rov-orange);
  flex-shrink: 0;
}

.rov-tip-content h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 5px; }
.rov-tip-content p { font-size: 0.83rem; color: var(--rov-text-mid); margin: 0; line-height: 1.5; }

/* ----- Article Cards ----- */
.rov-article-card {
  background: var(--rov-white);
  border-radius: var(--rov-radius-lg);
  overflow: hidden;
  border: 1px solid var(--rov-border);
  transition: all var(--rov-transition);
}

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

.rov-article-card-img {
  height: 200px;
  overflow: hidden;
}

.rov-article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.rov-article-card:hover .rov-article-card-img img { transform: scale(1.04); }

.rov-article-card-body { padding: 24px; }

.rov-article-card-cat {
  font-family: var(--rov-font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rov-orange);
  margin-bottom: 10px;
}

.rov-article-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.rov-article-card-excerpt {
  font-size: 0.85rem;
  color: var(--rov-text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.rov-article-card-meta {
  font-size: 0.78rem;
  color: var(--rov-text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ----- CTA Section ----- */
.rov-cta-section {
  background: var(--rov-orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.rov-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.rov-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

/* ----- Footer ----- */
.rov-footer {
  background: var(--rov-graphite);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.rov-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.rov-footer-brand {
  max-width: 320px;
}

.rov-footer-tagline {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  margin-bottom: 24px;
}

.rov-footer-socials {
  display: flex;
  gap: 10px;
}

.rov-footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--rov-transition);
}

.rov-footer-social-link:hover {
  background: var(--rov-orange);
  color: var(--rov-white);
}

.rov-footer-heading {
  font-family: var(--rov-font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rov-white);
  margin-bottom: 20px;
}

.rov-footer-links {
  list-style: none;
  padding: 0;
}

.rov-footer-links li { margin-bottom: 10px; }

.rov-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--rov-transition);
}

.rov-footer-links a:hover { color: var(--rov-orange-light); }

.rov-footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}

.rov-footer-contact-icon {
  color: var(--rov-orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.rov-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.rov-footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.rov-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.rov-footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.rov-footer-legal a:hover { color: var(--rov-orange-light); }

/* ----- Cookie Banner ----- */
.rov-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--rov-graphite);
  border-radius: var(--rov-radius-lg);
  padding: 24px 28px;
  box-shadow: var(--rov-shadow-lg);
  z-index: 10000;
  border: 1px solid rgba(255,255,255,0.1);
  display: none;
}

.rov-cookie-banner.show { display: block; }

.rov-cookie-text {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.6;
}

.rov-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ----- Page Header ----- */
.rov-page-header {
  background: var(--rov-graphite);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}

.rov-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(224,123,57,0.06) 100%);
}

.rov-page-header-label {
  font-family: var(--rov-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rov-orange);
  margin-bottom: 12px;
}

.rov-page-header-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--rov-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.rov-page-header-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
}

.rov-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
}

.rov-breadcrumb a {
  color: rgba(255,255,255,0.45);
}

.rov-breadcrumb a:hover { color: var(--rov-orange-light); }

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

/* ----- Article Content ----- */
.rov-article-header {
  margin-bottom: 40px;
}

.rov-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: var(--rov-text-light);
  margin-bottom: 24px;
}

.rov-article-hero-img {
  width: 100%;
  border-radius: var(--rov-radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.rov-article-hero-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.rov-article-content {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--rov-text-dark);
}

.rov-article-content h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.rov-article-content h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.rov-article-content p { margin-bottom: 1.25rem; }

.rov-article-content ul, .rov-article-content ol {
  margin-bottom: 1.25rem;
}

.rov-article-content li { margin-bottom: 6px; }

.rov-article-content img {
  width: 100%;
  border-radius: var(--rov-radius);
  margin: 32px 0;
}

.rov-article-content blockquote {
  border-left: 4px solid var(--rov-orange);
  padding: 20px 24px;
  background: var(--rov-beige);
  border-radius: 0 var(--rov-radius) var(--rov-radius) 0;
  margin: 32px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--rov-text-mid);
}

/* ----- Legal Pages ----- */
.rov-legal-content {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--rov-text-dark);
}

.rov-legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--rov-text-dark);
}

.rov-legal-content h3 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.rov-legal-content p { margin-bottom: 1rem; }

.rov-legal-content ul { margin-bottom: 1rem; }

.rov-legal-intro {
  background: var(--rov-beige);
  border-radius: var(--rov-radius);
  padding: 24px;
  margin-bottom: 32px;
  font-size: 0.92rem;
  color: var(--rov-text-mid);
}

/* ----- Map Container ----- */
.rov-map-container {
  border-radius: var(--rov-radius-lg);
  overflow: hidden;
  height: 400px;
  background: var(--rov-beige-mid);
}

.rov-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----- Thank You Page ----- */
.rov-thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--rov-beige);
}

.rov-thankyou-box {
  background: var(--rov-white);
  border-radius: var(--rov-radius-lg);
  padding: 64px 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--rov-shadow-lg);
}

.rov-thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(224, 123, 57, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  color: var(--rov-orange);
}

/* ----- Highlight Strip ----- */
.rov-highlight-strip {
  background: var(--rov-orange);
  padding: 20px 0;
  overflow: hidden;
}

.rov-strip-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--rov-font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: rov-marquee 30s linear infinite;
}

.rov-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@keyframes rov-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .rov-footer-grid { grid-template-columns: 1fr 1fr; }
  .rov-gallery-grid { grid-template-columns: 1fr 1fr; }
  .rov-gallery-item:first-child { grid-column: span 2; }
  .rov-calc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .rov-navbar-nav { display: none; }
  .rov-navbar-actions .rov-btn { display: none; }
  .rov-hamburger { display: flex; }
  .rov-hero-actions { flex-direction: column; align-items: flex-start; }
  .rov-hero-stats { gap: 24px; }
  .rov-services-grid { grid-template-columns: 1fr; }
  .rov-projects-grid { grid-template-columns: 1fr; }
  .rov-team-grid { grid-template-columns: repeat(2, 1fr); }
  .rov-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .rov-footer-brand { max-width: 100%; }
  .rov-interactive-quiz { padding: 28px 24px; }
  .rov-quiz-options { grid-template-columns: 1fr; }
  .rov-contact-form { padding: 28px 24px; }
  .rov-renovation-calculator { padding: 28px 24px; }
  .rov-gallery-grid { grid-template-columns: 1fr; }
  .rov-gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .rov-timeline-line { display: none; }
  .rov-timeline-steps { padding-left: 0; }
  .rov-timeline-step::before { display: none; }
}

@media (max-width: 480px) {
  .rov-section { padding: 64px 0; }
  .rov-team-grid { grid-template-columns: 1fr; }
  .rov-footer-bottom { flex-direction: column; align-items: flex-start; }
}


.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}