/* ============================================================
   RF ENERGIES — MAIN STYLESHEET
   Corporate energy website with modern animations
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Variables ---- */
:root {
  --navy: #1a2744;
  --navy-dark: #111c33;
  --navy-light: #2a3d5e;
  --orange: #e07a28;
  --orange-dark: #c46a1e;
  --orange-light: #f0a050;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #f0f1f3;
  --gray-200: #e2e4e8;
  --gray-300: #c8ccd3;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #1f2937;
  --text: #2d3748;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2.1rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   ANIMATIONS — Scroll reveal system
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar__info {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.top-bar__info a,
.top-bar__info span {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar__info a:hover { color: var(--orange); }

.top-bar__info svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar__social {
  display: flex;
  gap: 10px;
}

.top-bar__social a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), transform var(--transition);
  display: flex;
}

.top-bar__social a:hover {
  color: var(--orange);
  transform: scale(1.15);
}

.top-bar__social svg { width: 16px; height: 16px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  transition: transform var(--transition);
}

.navbar__logo:hover { transform: scale(1.03); }

.navbar__logo img {
  height: 68px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar__links a {
  display: block;
  padding: 22px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  position: relative;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: rgba(224,122,40,0.04);
}

.navbar__cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 10px 22px !important;
  border-bottom: none !important;
  margin-left: 10px;
  margin-bottom: 0 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.navbar__cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(224,122,40,0.35) !important;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .navbar__toggle { display: flex; }
  .navbar__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    box-shadow: var(--shadow-lg);
  }
  .navbar__links.open { display: flex; }
  .navbar__links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0;
  }
  .navbar__cta { margin: 12px 24px; text-align: center; }
  .top-bar__info { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,28,51,0.92) 0%, rgba(26,39,68,0.65) 60%, rgba(224,122,40,0.2) 100%);
}

/* Floating particles / decorative elements */
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,40,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: float-glow 8s ease-in-out infinite alternate;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 30px) scale(1.15); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 0;
}

.hero__content h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero__content h1 span {
  color: var(--orange);
}

.hero__content p {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.88);
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__badge {
  text-align: center;
}

.hero__badge strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero__badge span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(224,122,40,0.25);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,122,40,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
}

.section--gray { background: var(--off-white); }

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--white); }

.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 { color: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: 52px;
}

.section__header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--gray-500);
  font-size: 1.05rem;
}

.section__header .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 10px;
}

/* Label: orange bar style */
.label-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 14px;
}

.label-bar::before {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--orange-light);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(224,122,40,0.12) 0%, rgba(224,122,40,0.04) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--orange);
  transform: scale(1.05);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
  transition: color var(--transition);
}

.service-card:hover .service-card__icon svg { color: var(--white); }

.service-card h3 { font-size: 1.15rem; }

.service-card p {
  color: var(--gray-500);
  font-size: 0.93rem;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.service-card__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 4px 10px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-card__tags span {
  background: rgba(224,122,40,0.1);
  color: var(--orange-dark);
}

/* ============================================================
   CONTENT ROWS (about / 2-col)
   ============================================================ */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-row--reverse { direction: rtl; }
.content-row--reverse > * { direction: ltr; }

.content-row__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.content-row__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,39,68,0.15) 100%);
  pointer-events: none;
}

.content-row__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.content-row__image:hover img {
  transform: scale(1.04);
}

.content-row__text h2 { margin-bottom: 16px; }

.content-row__text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 14px;
}

.content-row__text ul li {
  margin-bottom: 10px;
  color: var(--gray-700);
  padding-left: 22px;
  position: relative;
}

.content-row__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .content-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .content-row--reverse { direction: ltr; }
}

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--orange);
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}

.stat-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item::before { display: none; }
}

/* ============================================================
   TEAM / LEADERSHIP
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.team-card__photo-wrap {
  position: relative;
  overflow: hidden;
}

.team-card__photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card__photo { transform: scale(1.05); }

.team-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 16px;
  background: linear-gradient(to top, rgba(17,28,51,0.85) 0%, transparent 100%);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.team-card__overlay a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}

.team-card__overlay a:hover {
  background: var(--orange);
  transform: scale(1.1);
}

.team-card__overlay svg { width: 16px; height: 16px; }

.team-card__info {
  padding: 22px 26px 26px;
}

.team-card__info h3 { margin-bottom: 2px; }

.team-card__role {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.team-card__info p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ============================================================
   VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.value-item {
  text-align: center;
  padding: 32px 22px;
  border-radius: var(--radius-lg);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.value-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-item__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(224,122,40,0.15) 0%, rgba(224,122,40,0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--transition), transform var(--transition);
}

.value-item:hover .value-item__icon {
  background: var(--orange);
  transform: rotateZ(5deg) scale(1.05);
}

.value-item__icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
  transition: color var(--transition);
}

.value-item:hover .value-item__icon svg { color: var(--white); }

.value-item h4 { margin-bottom: 8px; }

.value-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ============================================================
   PARTNER MARQUEE (infinite scroll)
   ============================================================ */
.partner-strip {
  padding: 50px 0;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.partner-strip__label {
  text-align: center;
  margin-bottom: 28px;
}

.partner-strip__label p {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
}

.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-shrink: 0;
  padding-right: 60px;
  animation: marquee-scroll var(--marquee-duration, 20s) linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  height: 44px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition);
  border-radius: 6px;
}

.marquee__item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Gradient fade on edges */
.partner-strip::before,
.partner-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partner-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.partner-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
  overflow: visible;
}

.testimonials > .container {
  overflow: hidden;
}

.testimonials__slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.testimonials__slider.dragging {
  cursor: grabbing;
  transition: none;
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .testimonial-card { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 1024px) {
  .testimonial-card { flex: 0 0 33.333%; max-width: 33.333%; }
}

.testimonial-card__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--gray-200);
}

.testimonial-card__inner:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-size: 2rem;
  color: var(--orange);
  font-family: 'Plus Jakarta Sans', Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-card__text {
  font-style: italic;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-card__stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-card__meta h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.testimonial-card__meta span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--navy);
  flex-shrink: 0;
}

.testimonials__arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.testimonials__arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
  padding: 0;
}

.testimonials__dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* ============================================================
   PROCESS / HOW WE WORK
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-light), var(--orange), var(--orange-light), transparent);
  z-index: 1;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.process-step__number {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--orange);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  box-shadow: 0 4px 12px rgba(224,122,40,0.15);
}

.process-step:hover .process-step__number {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-grid::before { display: none; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(224,122,40,0.12) 0%, rgba(224,122,40,0.04) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.contact-info__item h4 { margin-bottom: 2px; }

.contact-info__item p {
  color: var(--gray-500);
  font-size: 0.93rem;
  margin: 0;
}

.contact-info__item a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-info__item a:hover { color: var(--orange); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,122,40,0.12);
  background: var(--white);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

/* Email Channels */
.email-channels { margin-top: 30px; }

.email-channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.email-channel:first-child { border-top: 1px solid var(--gray-200); }

.email-channel__purpose {
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  min-width: 130px;
}

.email-channel__address a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}

.email-channel__address a:hover { color: var(--orange); }

/* ============================================================
   MAP
   ============================================================ */
.map-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.8) contrast(1.05);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 65px 0 55px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,40,0.08), transparent 70%);
  top: -80px;
  right: -60px;
}

.page-hero h1 { color: var(--white); font-size: 2.5rem; }

.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand img {
  height: 55px;
  margin-bottom: 16px;
  background: var(--white);
  padding: 5px 10px;
  border-radius: 6px;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer__links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 11px;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__links a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer__bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__bottom a:hover { color: var(--orange); }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer__social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social svg { width: 18px; height: 18px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 40%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,40,0.12), transparent);
  bottom: -150px;
  right: -100px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,40,0.06), transparent);
  top: -100px;
  left: -80px;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ============================================================
   PROSE
   ============================================================ */
.prose h2 { margin-top: 2rem; }
.prose ul, .prose ol { list-style: disc; padding-left: 24px; margin-bottom: 1rem; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--orange); text-decoration: underline; }

/* ============================================================
   RESPONSIVE TYPOGRAPHY
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero__content h1 { font-size: 2.4rem; }
  .hero { min-height: 480px; }
  .section { padding: 55px 0; }
  .stat-item h3 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .hero__content h1 { font-size: 2rem; }
}

/* ============================================================
   FLOATING ACTION BUTTONS — WhatsApp + Scroll-to-Top
   ============================================================ */

/* WhatsApp FAB */
.fab-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.fab-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  background: #1ebe5d;
}

.fab-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
  flex-shrink: 0;
}

/* Pulsating ring */
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.5);
  animation: whatsapp-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Tooltip label */
.fab-whatsapp__label {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.fab-whatsapp__label::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent var(--navy);
}

.fab-whatsapp:hover .fab-whatsapp__label {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll-to-Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 102px;
  right: 34px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 39, 68, 0.35);
  cursor: pointer;
  z-index: 999;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease,
              background 0.3s ease, box-shadow 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--orange);
  box-shadow: 0 6px 22px rgba(224, 122, 40, 0.4);
  transform: translateY(-3px);
}

.scroll-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .fab-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .fab-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .fab-whatsapp__label {
    display: none;
  }

  .scroll-to-top {
    bottom: 86px;
    right: 24px;
    width: 42px;
    height: 42px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}
