/* ========== UTILITIES ========== */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-green { color: var(--green); }

.section-tag {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: #16a34a; color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #128C7E; color: #fff; }

/* ========== NAVBAR ========== */
.rw-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow 0.3s;
}
.rw-navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.navbar-logo img { height: 44px; width: auto; }
.navbar-logo .logo-text { display: none; }

.navbar-logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-logo-fallback .ln { font-family: var(--font-head); font-weight: 900; font-size: 22px; color: var(--navy); }
.navbar-logo-fallback .lt { font-size: 10px; color: var(--green); font-weight: 600; font-family: var(--font-body); }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.navbar-menu li a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.navbar-menu li a:hover,
.navbar-menu li.current-menu-item a { color: var(--primary); background: var(--light); }

.navbar-actions { display: flex; gap: 10px; align-items: center; }
.navbar-phone { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 13px; white-space: nowrap; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  border-bottom: 2px solid var(--light);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a { display: block; padding: 12px 16px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy); border-radius: 8px; }
.mobile-menu ul li a:hover { background: var(--light); }
.mobile-menu .mob-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu .mob-cta .btn { justify-content: center; }

/* ========== HERO ========== */
.rw-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1d4ed8 60%, #1E40AF 100%);
  padding: 152px 0 96px;
  position: relative;
  overflow: hidden;
}
.rw-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.rw-hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 400px; height: 400px;
  background: rgba(34,197,94,0.06);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  font-family: var(--font-body);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title .hl { color: var(--green); }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat .num { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--green); }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.60); font-weight: 500; }

/* Hero right card */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 24px;
}

.service-list { display: flex; flex-direction: column; gap: 14px; }

.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.2s;
}
.service-item:hover { background: rgba(255,255,255,0.14); }

.service-icon {
  width: 42px; height: 42px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.service-item h5 { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 2px; }
.service-item p { font-size: 12px; color: rgba(255,255,255,0.60); margin: 0; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
}
.trust-item .ti { color: var(--green); font-size: 16px; }

/* ========== SERVICES ========== */
.rw-services { background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.service-card:hover .sc-icon { background: var(--primary); }
.service-card:hover .sc-icon span { filter: brightness(10); }

.sc-icon {
  width: 64px; height: 64px;
  background: var(--light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: background 0.25s;
}

.service-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.service-card .sc-link { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.service-card .sc-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .sc-link::after { transform: translateX(4px); }

/* ========== ABOUT / WHY ========== */
.rw-why { background: var(--light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-left h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px,3vw,40px); color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.why-left p { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.75; }

.why-points { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.why-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wp-check {
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point h5 { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.why-point p { font-size: 14px; color: var(--muted); margin: 0; }

.stats-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.stats-box h3 { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--navy); margin-bottom: 28px; }

.stat-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.sr-num { font-family: var(--font-head); font-weight: 900; font-size: 36px; color: var(--primary); min-width: 90px; }
.sr-num span { font-size: 16px; }
.stat-row h6 { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 3px; }
.stat-row p { font-size: 12px; color: var(--muted); margin: 0; }

/* ========== PROCESS ========== */
.rw-process { background: var(--navy); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 13%; right: 13%;
  height: 2px;
  background: rgba(255,255,255,0.12);
}

.process-step { text-align: center; position: relative; }
.ps-num {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 20px; color: #fff;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.process-step h4 { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* ========== TESTIMONIALS ========== */
.rw-testimonials { background: #fff; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.testi-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 4px solid var(--primary);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-size: 80px;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: 10px; right: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 14px; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px; }

.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 16px;
  flex-shrink: 0;
}
.reviewer-name { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy); }
.reviewer-role { font-size: 12px; color: var(--muted); }

/* ========== CTA SECTION ========== */
.rw-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  padding: 88px 0;
  text-align: center;
}
.rw-cta h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px,4vw,48px); color: #fff; margin-bottom: 16px; line-height: 1.15; }
.rw-cta p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 38px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ========== FOOTER ========== */
.rw-footer { background: #06101F; padding: 64px 0 0; color: rgba(255,255,255,0.65); }

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

.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand .fb-fallback { font-family: var(--font-head); font-weight: 900; font-size: 24px; color: #fff; margin-bottom: 4px; }
.footer-brand .fb-tag { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }

.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--green); }

/* ========== FLOATING WHATSAPP ========== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { color: #fff; background: #128C7E; }
.wa-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ========== INNER PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  padding: 140px 0 64px;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px,4vw,48px); color: #fff; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.contact-info p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.cd-icon {
  width: 46px; height: 46px;
  background: var(--light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cd-label { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 3px; }
.cd-val { font-size: 14px; color: var(--muted); }

.rw-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.rw-form-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--navy); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fgroup { margin-bottom: 18px; }
.fgroup label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: #F8FAFC;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus { border-color: var(--primary); background: #fff; }
.fgroup textarea { resize: vertical; min-height: 110px; }

/* ========== 404 PAGE ========== */
.page-404 { text-align: center; padding: 160px 0 120px; }
.page-404 .err-code { font-family: var(--font-head); font-weight: 900; font-size: 120px; color: var(--primary); line-height: 1; opacity: 0.15; }
.page-404 h1 { font-family: var(--font-head); font-weight: 800; font-size: 36px; color: var(--navy); margin: -30px 0 16px; position: relative; }
.page-404 p { font-size: 17px; color: var(--muted); margin-bottom: 36px; }

/* ========== BLOG / ARCHIVE ========== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .pc-img { width: 100%; height: 200px; object-fit: cover; background: var(--light); }
.post-card .pc-body { padding: 22px; }
.post-card .pc-cat { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.post-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--primary); }
.post-card .pc-meta { font-size: 12px; color: var(--muted); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar-menu, .navbar-phone { display: none; }
  .hamburger { display: flex; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 20px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .rw-form-card { padding: 24px 18px; }
}
