/* ============================================================
   DATABOLSTER — style.css
   Fonts  : Cabin (headings) · Lato (body)
   Primary: #4682b4  Accent: #d88c45
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Lato:wght@300;400;700&display=swap');

/* --- Variables --- */
:root {
  --primary:         #4682b4;
  --primary-dark:    #3e75a2;
  --primary-overlay: rgba(70, 130, 180, 0.90);
  --accent:          #d88c45;
  --white:           #ffffff;
  --light-bg:        #f6f6f6;
  --text-dark:       #1b1b1b;
  --text-mid:        #303030;
  --text-muted:      #5e5e5e;
  --text-gray:       #575757;
  --border-color:    #dadada;
  --border-accent:   #569dd8;
  --link-color:      #417bab;
  --nav-height:      72px;
  --font-heading:    'Cabin', arial, sans-serif;
  --font-body:       'Lato', arial, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 25px; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: var(--link-color); word-wrap: break-word; }
a:hover { opacity: 0.8; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 48px; width: auto; }

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 13px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
  display: block;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.15);
  opacity: 1;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--primary-dark);
  border-top: 3px solid var(--accent);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  z-index: 200;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: none;
  letter-spacing: 0;
}
.dropdown-menu li:last-child a { border-bottom: none; }

/* Hamburger */
.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(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--primary-dark);
  z-index: 999;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 13px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.1); opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  margin-top: var(--nav-height);
  width: 100%;
  min-height: 520px;
  background: url('public/hero.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 130, 180, 0.45);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 48px;
  background: rgba(70, 130, 180, 0.65);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ============================================================
   SHARED
   ============================================================ */
section { padding: 56px 24px; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c87533;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

/* ============================================================
   ABOUT / SERVICES
   ============================================================ */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-text p strong { color: var(--primary); font-weight: 700; }

.services-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.services-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.services-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
  top: 1px;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(70,130,180,0.15);
}

/* ============================================================
   RULEVISTA
   ============================================================ */
#rulevista {
  background: var(--light-bg);
  border-top: 1px solid var(--border-color);
}
.rulevista-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.rulevista-inner p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.rulevista-inner p strong { color: var(--primary); }

/* Button */
.btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70,130,180,0.3);
  opacity: 1;
  color: var(--white);
}

/* ============================================================
   VISION & MISSION
   ============================================================ */
#vision-mission { background: var(--white); }

.vm-header {
  text-align: center;
  margin-bottom: 48px;
}
.vm-header h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--light-bg);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.2s;
}
.vm-card:hover { box-shadow: 0 8px 28px rgba(70,130,180,0.12); }

.vm-card-img { height: 220px; overflow: hidden; }
.vm-card-img img { width: 100%; height: 100%; object-fit: cover; }

.vm-card-body { padding: 24px 24px 24px 16px; }
.vm-card-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vm-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-contact {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--white); opacity: 1; }
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-contact .contact-item i {
  margin-top: 4px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
}
.footer-right { text-align: right; }
.footer-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px;
}
.footer-link:hover { color: var(--white) !important; opacity: 1; }
.footer-copy {
  max-width: 1100px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
#contact-hero {
  margin-top: var(--nav-height);
  background: var(--primary);
  padding: 56px 24px;
  text-align: center;
}
#contact-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

#contact-section {
  padding: 56px 24px;
  background: var(--light-bg);
}
.contact-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.contact-info-item i { color: var(--primary); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-info-item a { color: var(--text-muted); }
.contact-info-item a:hover { color: var(--primary); opacity: 1; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 36px;
}
.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px rgba(86,157,216,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }
.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 14px;
  margin-top: 16px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--primary);
  padding: 18px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 13px; color: var(--text-muted); flex: 1; min-width: 200px; }
#cookie-banner .btn { flex-shrink: 0; padding: 8px 22px; font-size: 13px; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 32px; right: 24px;
  z-index: 800;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(70,130,180,0.4);
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { grid-template-columns: 1fr; }
  .vm-card-img { height: 200px; }
  .vm-card-body { padding: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-right ul { align-items: flex-start !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 26px; }
  #hero { min-height: 380px; }
  .services-list { grid-template-columns: 1fr; }
  .section-title { font-size: 22px; }
}

@media (max-width: 480px) {
  section { padding: 40px 16px; }
  .hero-content h1 { font-size: 22px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 24px 18px; }
  .nav-brand-name { font-size: 14px; }
}

/* ============================================================
   SERVICE PAGES — Add these at the bottom of style.css
   ============================================================ */

/* Service Page Hero */
.service-hero {
  margin-top: var(--nav-height);
  background: var(--primary);
  padding: 52px 24px;
  text-align: center;
}
.service-hero h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Service Content Area */
.service-content {
  padding: 56px 24px;
  background: var(--white);
}
.service-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Service Intro Text */
.service-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

/* Service Sub Section */
.service-sub {
  margin-bottom: 40px;
}
.service-sub h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-bg);
}
.service-sub h2 span {
  color: var(--primary);
}
.service-sub p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 7px;
}
.service-list li strong {
  color: var(--text-mid);
}

/* Service Cards Grid */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--primary);
  border-radius: 6px;
  padding: 22px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 20px rgba(70,130,180,0.12);
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Divider between dual sections */
.service-divider {
  border: none;
  border-top: 2px solid var(--light-bg);
  margin: 48px 0;
}

/* CTA Banner */
.service-cta {
  background: var(--primary);
  border-radius: 8px;
  padding: 36px 32px;
  text-align: center;
  margin-top: 48px;
}
.service-cta h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 20px;
}
.service-cta .btn {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.service-cta .btn:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: none;
}

/* Steps List */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.steps-list li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.steps-list li::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.steps-list li strong {
  color: var(--text-mid);
}

@media (max-width: 600px) {
  .service-hero h1 { font-size: 26px; }
  .service-cards { grid-template-columns: 1fr; }
  .service-cta { padding: 24px 18px; }
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary);
  border-radius: 6px;
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.industry-card:hover {
  box-shadow: 0 8px 24px rgba(70,130,180,0.14);
  transform: translateY(-3px);
}

.industry-card .industry-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 14px;
}

.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ============================================================
   RULEVISTA PAGE
   ============================================================ */
.rv-hero {
  margin-top: var(--nav-height);
  background: var(--primary);
  padding: 64px 24px;
  text-align: center;
}

.rv-hero .rv-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.rv-hero h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.rv-hero h1 span {
  color: var(--accent);
}

.rv-hero .rv-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-weight: 400;
}

.rv-hero .rv-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

.rv-intro {
  padding: 56px 24px;
  background: var(--light-bg);
}

.rv-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.rv-intro-inner p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.rv-intro-inner p strong { color: var(--primary); }

.rv-define {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.rv-features {
  padding: 56px 24px;
  background: var(--white);
}

.rv-features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rv-features-header {
  text-align: center;
  margin-bottom: 40px;
}

.rv-features-header h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}

.rv-features-header h2 span { color: var(--primary); }

.rv-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.rv-feature-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 24px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.rv-feature-card:hover {
  box-shadow: 0 6px 20px rgba(70,130,180,0.12);
  transform: translateY(-2px);
}

.rv-feature-card .rv-feature-icon {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 12px;
}

.rv-feature-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.rv-feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.rv-cta-section {
  padding: 56px 24px;
  background: var(--light-bg);
  text-align: center;
}

.rv-cta-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--primary);
  border-radius: 10px;
  padding: 44px 36px;
}

.rv-cta-box h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.rv-cta-box p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.rv-cta-box .btn {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  margin: 6px;
}

.rv-cta-box .btn:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: none;
}

.rv-cta-box .btn-wa {
  background: #25d366;
  color: var(--white);
}

.rv-cta-box .btn-wa:hover {
  background: #1ebe5d;
  color: var(--white);
}

@media (max-width: 600px) {
  .rv-hero h1 { font-size: 26px; }
  .rv-cta-box { padding: 28px 20px; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .industries-grid { grid-template-columns: 1fr; }
}

/* SERVICE PAGE — INLINE CONTENT IMAGE */
.service-img-wrap {
  margin: 28px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(70,130,180,0.15);
}

.service-img-wrap img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

/* RULEVISTA — logo image */
.rv-logo-img {
  display: block;
  max-width: 280px;
  margin: 0 auto 20px auto;
}

@media (max-width: 600px) {
  .service-hero-img { height: 240px; }
  .service-hero-img .hero-img-content h1 { font-size: 24px; }
}

/* ============================================================
   SERVICE PAGES — PLAIN TITLE HEADER (no image bg)
   ============================================================ */
.service-page-title {
  margin-top: var(--nav-height);
  padding: 40px 24px 20px;
  text-align: center;
  background: var(--white);
}

.service-page-title h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-page-title .title-divider {
  width: 60px;
  height: 2px;
  background: var(--border-color);
  margin: 0 auto;
}

/* ============================================================
   SERVICE PAGES — TEXT LEFT + IMAGE RIGHT LAYOUT
   ============================================================ */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}

.service-intro-grid .service-intro-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-intro-grid .service-intro-text p strong {
  color: var(--text-mid);
  font-weight: 700;
}

.service-intro-grid .service-intro-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(70,130,180,0.15);
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-intro-grid {
    grid-template-columns: 1fr;
  }
  .service-intro-grid .service-intro-img {
    order: -1;
  }
  .service-page-title h1 {
    font-size: 24px;
  }
}

/* ============================================================
   GLOBAL FONT SIZE INCREASE
   ============================================================ */
body {
  font-size: 17px;
}

.about-text p,
.service-intro-text p,
.service-sub p,
.service-list li,
.steps-list li,
.rulevista-inner p,
.vm-card-body p {
  font-size: 16px;
  line-height: 1.85;
}

.services-label {
  color: #c87533;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

/* ============================================================
   VISION MISSION — NEW ROUND IMAGE STYLE
   ============================================================ */
.vm-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-card-new {
  text-align: center;
  padding: 20px;
}

.vm-round-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px auto;
  border: 4px solid var(--border-color);
}

.vm-round-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-card-new h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.vm-card-new p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .vm-grid-new { grid-template-columns: 1fr; }
  .vm-round-img { width: 200px; height: 200px; }
}