/*
Theme Name: Orviom
Theme URI: https://orviom.com
Author: Orviom
Description: Custom WordPress theme for Orviom — Innovative Software Solutions. Fully editable via WordPress Customizer, Menus, and Widgets.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: orviom
*/

/* ========================================
   VARIABLES
======================================== */
:root{
  --orv-blue: #2563EB;
  --orv-blue-dark: #1D4ED8;
  --orv-purple: #7C3AED;
  --orv-navy: #0F172A;
  --orv-gray: #64748B;
  --orv-gray-light: #F1F5F9;
  --orv-border: #E2E8F0;
  --orv-yellow: #FBBF24;
  --orv-green: #16A34A;
  --orv-orange: #F97316;
  --orv-red: #DC2626;
  --orv-gradient: linear-gradient(135deg, var(--orv-blue) 0%, var(--orv-purple) 100%);
  --orv-radius: 14px;
  --orv-max-width: 1200px;

  /* surface colors — flipped in dark mode below */
  --orv-bg: #ffffff;
  --orv-bg-alt: #F1F5F9;
  --orv-text: #0F172A;
  --orv-text-muted: #64748B;
  --orv-card-bg: #ffffff;
  --orv-card-border: #E2E8F0;
}

/* ---- Dark mode (toggled via [data-theme="dark"] on <html>) ---- */
html[data-theme="dark"]{
  --orv-bg: #0B0F19;
  --orv-bg-alt: #131826;
  --orv-text: #E5E7EB;
  --orv-text-muted: #94A3B8;
  --orv-card-bg: #131826;
  --orv-card-border: #232A3B;
  --orv-border: #232A3B;
  --orv-gray-light: #131826;
  --orv-navy: #E5E7EB;
}
html[data-theme="dark"] body{background:var(--orv-bg);color:var(--orv-text);}
html[data-theme="dark"] .orv-header{background:rgba(11,15,25,.9);border-bottom-color:var(--orv-border);}
html[data-theme="dark"] .orv-mobile-nav{background:var(--orv-bg);}
html[data-theme="dark"] .orv-hero{background:linear-gradient(180deg,#131826 0%,#0B0F19 100%);}
html[data-theme="dark"] .orv-belief-card,
html[data-theme="dark"] .orv-product-card,
html[data-theme="dark"] .orv-testimonial-card,
html[data-theme="dark"] .orv-faq-item,
html[data-theme="dark"] .orv-role-card,
html[data-theme="dark"] .orv-career-card,
html[data-theme="dark"] .orv-feature-card{
  background:var(--orv-card-bg);
  border-color:var(--orv-card-border);
}
html[data-theme="dark"] .orv-stats,
html[data-theme="dark"] .orv-footer,
html[data-theme="dark"] .orv-about{background:var(--orv-bg-alt);}
html[data-theme="dark"] .btn-outline{color:var(--orv-text);border-color:var(--orv-border);}
html[data-theme="dark"] p{color:var(--orv-text-muted);}
html[data-theme="dark"] h1,html[data-theme="dark"] h2,html[data-theme="dark"] h3,html[data-theme="dark"] h4{color:var(--orv-text);}
html[data-theme="dark"] .orv-hero h1{background:linear-gradient(135deg,#fff 20%,#818CF8 100%);-webkit-background-clip:text;background-clip:text;color:transparent;}
html[data-theme="dark"] .orv-logo{color:#818CF8;}
html[data-theme="dark"] input,html[data-theme="dark"] textarea,html[data-theme="dark"] select{
  background:var(--orv-bg-alt);color:var(--orv-text);border-color:var(--orv-border);
}

/* Theme toggle button */
.orv-theme-toggle{
  background:var(--orv-bg-alt);
  border:1px solid var(--orv-border);
  border-radius:999px;
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  font-size:16px;
}
.orv-theme-icon-dark{display:none;}
html[data-theme="dark"] .orv-theme-icon-light{display:none;}
html[data-theme="dark"] .orv-theme-icon-dark{display:inline;}

/* ========================================
   RESET / BASE
======================================== */
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
  color:var(--orv-text);
  background:var(--orv-bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  transition:background .2s ease, color .2s ease;
}
img{max-width:100%;height:auto;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{font-weight:800;line-height:1.15;margin:0 0 16px;}
p{margin:0 0 16px;color:var(--orv-gray);}
.container{max-width:var(--orv-max-width);margin:0 auto;padding:0 24px;}
.section{padding:80px 0;}
@media(max-width:768px){.section{padding:56px 0;}}

/* Badge / pill labels used above section headings */
.orv-badge{
  display:inline-block;
  padding:8px 20px;
  border-radius:999px;
  background:#EEF2FF;
  color:var(--orv-blue);
  font-weight:600;
  font-size:14px;
  margin-bottom:18px;
}
.orv-badge.yellow{background:#FEF3C7;color:#B45309;}
.orv-badge.red{background:#FEE2E2;color:#B91C1C;}
.orv-badge.purple{background:#F3E8FF;color:#7C3AED;}

.orv-center{text-align:center;}
.orv-eyebrow-wrap{max-width:700px;margin:0 auto 48px;}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 32px;
  border-radius:10px;
  font-weight:600;
  font-size:16px;
  border:2px solid transparent;
  cursor:pointer;
  transition:all .2s ease;
}
.btn-primary{
  background:var(--orv-gradient);
  color:#fff;
  box-shadow:0 8px 20px rgba(79,70,229,.35);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(79,70,229,.45);}
.btn-outline{
  background:transparent;
  border-color:var(--orv-border);
  color:var(--orv-navy);
}
.btn-outline:hover{border-color:var(--orv-navy);}
.btn-white{background:#fff;color:var(--orv-blue);}
.btn-white:hover{transform:translateY(-2px);}
.btn-outline-white{background:transparent;border-color:rgba(255,255,255,.6);color:#fff;}
.btn-outline-white:hover{border-color:#fff;}

/* ========================================
   HEADER
======================================== */
.orv-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--orv-border);
}
.orv-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 24px;
  max-width:var(--orv-max-width);
  margin:0 auto;
}
.orv-logo{
  font-size:26px;
  font-weight:800;
  color:var(--orv-blue);
}
.orv-desktop-nav{display:flex;align-items:center;gap:36px;}
.orv-desktop-nav ul{display:flex;gap:32px;}
.orv-desktop-nav a{font-weight:500;color:var(--orv-navy);}
.orv-desktop-nav a:hover{color:var(--orv-blue);}
.orv-header-actions{display:flex;align-items:center;gap:14px;}
.orv-menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.orv-menu-toggle span{
  display:block;
  width:26px;
  height:3px;
  background:var(--orv-navy);
  margin:5px 0;
  border-radius:2px;
}

/* Mobile nav overlay */
.orv-mobile-nav{
  display:none;
  position:fixed;
  inset:0;
  background:#fff;
  z-index:2000;
  overflow-y:auto;
}
.orv-mobile-nav.active{display:block;}
.orv-mobile-nav-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 24px;
  border-bottom:1px solid var(--orv-border);
}
.orv-mobile-nav-close{background:none;border:none;font-size:28px;cursor:pointer;}
.orv-mobile-nav-links{padding:16px;}
.orv-mobile-nav-links li a{
  display:block;
  padding:16px 18px;
  border-radius:10px;
  font-size:18px;
  font-weight:500;
  color:var(--orv-navy);
}
.orv-mobile-nav-links li:first-child a{background:#EEF2FF;color:var(--orv-blue);}
.orv-mobile-nav-actions{padding:8px 16px 24px;display:flex;flex-direction:column;gap:12px;}
.orv-mobile-nav-actions .btn{width:100%;justify-content:center;}
.orv-mobile-nav-footer{
  padding:24px;
  background:var(--orv-gray-light);
  font-size:14px;
  color:var(--orv-gray);
}
.orv-mobile-nav-footer p{margin:0 0 10px;display:flex;align-items:center;gap:8px;}
.orv-mobile-nav-footer .copyright{text-align:center;margin-top:18px;border-top:1px solid var(--orv-border);padding-top:18px;}

@media(max-width:900px){
  .orv-desktop-nav{display:none;}
  .orv-menu-toggle{display:block;}
  #orv-login-desktop,
  .orv-header-actions > .btn-primary{display:none;}
}

/* ========================================
   HERO
======================================== */
.orv-hero{
  background:linear-gradient(180deg,#F5F6FF 0%,#ffffff 100%);
  padding:90px 0 70px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.orv-hero .container{position:relative;z-index:2;max-width:900px;}
.orv-hero h1{
  font-size:56px;
  background:linear-gradient(135deg,var(--orv-navy) 20%,var(--orv-blue) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.orv-hero p.lead{font-size:19px;max-width:640px;margin:0 auto 36px;}
.orv-hero-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
@media(max-width:768px){
  .orv-hero h1{font-size:38px;}
  .orv-hero-actions{flex-direction:column;align-items:stretch;}
  .orv-hero-actions .btn{width:100%;justify-content:center;}
}

/* ========================================
   STATS BAR
======================================== */
.orv-stats{
  background:#fff;
  padding:56px 0;
}
.orv-stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  text-align:center;
}
.orv-stat-number{
  font-size:40px;
  font-weight:800;
  color:var(--orv-blue);
}
.orv-stat-label{color:var(--orv-gray);font-weight:500;}
@media(max-width:768px){
  .orv-stats-grid{grid-template-columns:repeat(2,1fr);}
  .orv-stat-number{font-size:32px;}
}

/* Marquee / trust strip */
.orv-marquee{
  background:linear-gradient(90deg,#EEF2FF,#F3E8FF);
  padding:28px 0;
  overflow:hidden;
}
.orv-marquee-track{
  display:flex;
  gap:64px;
  white-space:nowrap;
  animation:orv-scroll 22s linear infinite;
  font-size:20px;
  font-weight:600;
  color:var(--orv-gray);
}
@keyframes orv-scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* ========================================
   PHILOSOPHY / WHAT WE BELIEVE
======================================== */
.orv-philosophy-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.orv-belief-card{
  border:1px solid var(--orv-border);
  border-radius:var(--orv-radius);
  padding:36px;
  background:#fff;
  transition:box-shadow .2s ease, transform .2s ease;
}
.orv-belief-card:hover{box-shadow:0 12px 30px rgba(15,23,42,.08);transform:translateY(-4px);}
.orv-belief-number{
  font-size:44px;
  font-weight:800;
  color:#C7D2FE;
  margin-bottom:8px;
}
.orv-belief-card h3{font-size:22px;margin-bottom:12px;}
@media(max-width:768px){.orv-philosophy-grid{grid-template-columns:1fr;}}

/* ========================================
   ABOUT
======================================== */
.orv-about{background:var(--orv-gray-light);}
.orv-about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
}
.orv-about h2{font-size:38px;}
.orv-about-image img{border-radius:var(--orv-radius);box-shadow:0 20px 40px rgba(15,23,42,.15);}
@media(max-width:900px){
  .orv-about-grid{grid-template-columns:1fr;}
  .orv-about h2{font-size:30px;}
}

/* ========================================
   PRODUCTS
======================================== */
.orv-products-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
  margin-top:40px;
}
.orv-product-card{
  border:1px solid var(--orv-border);
  border-radius:var(--orv-radius);
  overflow:hidden;
  background:#fff;
  transition:box-shadow .2s ease, transform .2s ease;
}
.orv-product-card:hover{box-shadow:0 16px 34px rgba(15,23,42,.1);transform:translateY(-4px);}
.orv-product-media{position:relative;}
.orv-product-badge{
  position:absolute;
  top:16px;right:16px;
  background:#22C55E;
  color:#fff;
  font-size:13px;
  font-weight:600;
  padding:6px 14px;
  border-radius:999px;
}
.orv-product-body{padding:26px;}
.orv-product-body h3{font-size:22px;margin-bottom:10px;}
@media(max-width:768px){.orv-products-grid{grid-template-columns:1fr;}}

/* ========================================
   TESTIMONIALS
======================================== */
.orv-testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:40px;
}
.orv-testimonial-card{
  background:#fff;
  border:1px solid var(--orv-border);
  border-radius:var(--orv-radius);
  padding:30px;
}
.orv-stars{color:var(--orv-yellow);font-size:18px;margin-bottom:16px;letter-spacing:2px;}
.orv-testimonial-card p.quote{font-style:italic;color:var(--orv-navy);}
.orv-testimonial-author{display:flex;align-items:center;gap:12px;margin-top:18px;}
.orv-testimonial-author img{width:48px;height:48px;border-radius:50%;object-fit:cover;}
.orv-testimonial-author strong{display:block;font-size:15px;}
.orv-testimonial-author span{font-size:13px;color:var(--orv-gray);}
@media(max-width:900px){.orv-testimonials-grid{grid-template-columns:1fr;}}

/* ========================================
   FAQ
======================================== */
.orv-faq-list{max-width:800px;margin:40px auto 0;}
.orv-faq-item{
  border:1px solid var(--orv-border);
  border-radius:12px;
  margin-bottom:14px;
  overflow:hidden;
}
.orv-faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:20px 22px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  color:var(--orv-navy);
}
.orv-faq-question .chevron{transition:transform .2s ease;flex-shrink:0;margin-left:12px;}
.orv-faq-item.open .chevron{transform:rotate(180deg);}
.orv-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
  padding:0 22px;
}
.orv-faq-item.open .orv-faq-answer{padding-bottom:20px;}
.orv-faq-answer p{margin:0;color:var(--orv-gray);}

/* ========================================
   CTA
======================================== */
.orv-cta{
  background:var(--orv-gradient);
  text-align:center;
  padding:80px 0;
}
.orv-cta h2{color:#fff;font-size:38px;}
.orv-cta p{color:rgba(255,255,255,.9);max-width:560px;margin:0 auto 32px;font-size:17px;}
.orv-cta-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
@media(max-width:768px){
  .orv-cta h2{font-size:28px;}
  .orv-cta-actions{flex-direction:column;align-items:stretch;}
  .orv-cta-actions .btn{width:100%;justify-content:center;}
}

/* ========================================
   FOOTER
======================================== */
.orv-footer{background:var(--orv-gray-light);padding:64px 0 32px;}
.orv-footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  margin-bottom:40px;
}
.orv-footer-col h4{font-size:16px;margin-bottom:18px;}
.orv-footer-col ul li{margin-bottom:12px;}
.orv-footer-col ul li a{color:var(--orv-gray);}
.orv-footer-col ul li a:hover{color:var(--orv-blue);}
.orv-footer-contact{
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  padding-top:28px;
  border-top:1px solid var(--orv-border);
  color:var(--orv-gray);
  font-size:15px;
}
.orv-footer-contact span{display:flex;align-items:center;gap:8px;}
.orv-footer-bottom{
  text-align:center;
  padding-top:28px;
  margin-top:28px;
  border-top:1px solid var(--orv-border);
  color:var(--orv-gray);
  font-size:14px;
}
@media(max-width:900px){
  .orv-footer-grid{grid-template-columns:repeat(2,1fr);}
}

/* ========================================
   SCROLL-REVEAL ANIMATION
======================================== */
.orv-reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.orv-reveal.orv-visible{
  opacity:1;
  transform:translateY(0);
}

/* ========================================
   PAGE HERO (used on inner pages: Products, ERP, Internship, Careers, About, Contact)
======================================== */
.orv-page-hero{
  background:linear-gradient(180deg,#F5F6FF 0%,#ffffff 100%);
  padding:64px 0 48px;
  text-align:center;
}
html[data-theme="dark"] .orv-page-hero{background:linear-gradient(180deg,#131826 0%,#0B0F19 100%);}
.orv-page-hero h1{font-size:44px;}
.orv-page-hero p{max-width:640px;margin:0 auto;font-size:17px;}
@media(max-width:768px){.orv-page-hero h1{font-size:32px;}}

/* ========================================
   FUTURE PRODUCTS ("Coming Soon") GRID
======================================== */
.orv-future-products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:24px;
}
.orv-future-card{
  border:1px dashed var(--orv-border);
  border-radius:var(--orv-radius);
  padding:24px;
  text-align:center;
  background:var(--orv-card-bg);
}
.orv-future-card .icon{font-size:32px;margin-bottom:12px;}
.orv-future-card h4{font-size:16px;margin-bottom:8px;}
.orv-soon-badge{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  color:var(--orv-orange);
  background:#FFF7ED;
  padding:4px 12px;
  border-radius:999px;
  margin-top:10px;
}
@media(max-width:900px){.orv-future-products-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.orv-future-products-grid{grid-template-columns:1fr;}}

/* ========================================
   WHY CHOOSE ORVIOM — feature cards
======================================== */
.orv-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:40px;
}
.orv-feature-card{
  border:1px solid var(--orv-border);
  border-radius:var(--orv-radius);
  padding:32px;
  background:var(--orv-card-bg);
  transition:transform .2s ease, box-shadow .2s ease;
}
.orv-feature-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(15,23,42,.08);}
.orv-feature-card .icon{
  width:52px;height:52px;
  border-radius:12px;
  background:var(--orv-gradient);
  display:flex;align-items:center;justify-content:center;
  font-size:24px;
  margin-bottom:18px;
}
@media(max-width:900px){.orv-feature-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.orv-feature-grid{grid-template-columns:1fr;}}

/* ========================================
   ERP FEATURE GRID (School ERP page)
======================================== */
.orv-erp-features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:40px;
}
.orv-erp-feature-card{
  border:1px solid var(--orv-border);
  border-radius:var(--orv-radius);
  padding:26px;
  background:var(--orv-card-bg);
}
.orv-erp-feature-card h4{font-size:17px;margin-bottom:8px;display:flex;align-items:center;gap:10px;}
@media(max-width:900px){.orv-erp-features-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.orv-erp-features-grid{grid-template-columns:1fr;}}

/* ========================================
   INTERNSHIP ROLE CARDS
======================================== */
.orv-roles-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:40px;
}
.orv-role-card{
  border:1px solid var(--orv-border);
  border-radius:var(--orv-radius);
  padding:28px;
  background:var(--orv-card-bg);
  display:flex;
  flex-direction:column;
}
.orv-role-card h3{font-size:19px;margin-bottom:10px;}
.orv-role-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:14px 0;
}
.orv-role-meta span{
  font-size:12px;
  font-weight:600;
  background:var(--orv-bg-alt);
  color:var(--orv-text-muted);
  padding:5px 12px;
  border-radius:999px;
}
.orv-role-card .btn{margin-top:auto;}
@media(max-width:900px){.orv-roles-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.orv-roles-grid{grid-template-columns:1fr;}}

/* ========================================
   INTERNSHIP PROCESS TIMELINE
======================================== */
.orv-timeline{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0;
  margin-top:48px;
}
.orv-timeline-step{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 20px;
}
.orv-timeline-step .num{
  width:36px;height:36px;
  border-radius:50%;
  background:var(--orv-gradient);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  font-size:14px;
  flex-shrink:0;
}
.orv-timeline-step span.label{font-weight:600;font-size:15px;white-space:nowrap;}
.orv-timeline-arrow{color:var(--orv-border);font-size:20px;align-self:center;}
@media(max-width:900px){
  .orv-timeline{flex-direction:column;align-items:flex-start;}
  .orv-timeline-arrow{display:none;}
}

/* ========================================
   CAREERS LIST
======================================== */
.orv-careers-list{margin-top:40px;display:flex;flex-direction:column;gap:16px;}
.orv-career-card{
  border:1px solid var(--orv-border);
  border-radius:var(--orv-radius);
  padding:24px 28px;
  background:var(--orv-card-bg);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.orv-career-card h3{font-size:18px;margin-bottom:6px;}
.orv-career-meta{display:flex;gap:16px;color:var(--orv-text-muted);font-size:14px;flex-wrap:wrap;}

/* ========================================
   FORMS (Internship apply / Career apply / Contact)
======================================== */
.orv-form{
  max-width:640px;
  margin:40px auto 0;
  background:var(--orv-card-bg);
  border:1px solid var(--orv-border);
  border-radius:var(--orv-radius);
  padding:36px;
}
.orv-form-row{margin-bottom:18px;}
.orv-form-row label{display:block;font-weight:600;font-size:14px;margin-bottom:8px;}
.orv-form-row input,
.orv-form-row select,
.orv-form-row textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--orv-border);
  border-radius:10px;
  font-family:inherit;
  font-size:15px;
  background:var(--orv-bg);
  color:var(--orv-text);
}
.orv-form-row textarea{min-height:120px;resize:vertical;}
.orv-form .btn{width:100%;justify-content:center;}
.orv-form-success{
  background:#ECFDF5;
  border:1px solid #A7F3D0;
  color:#065F46;
  padding:16px 20px;
  border-radius:10px;
  margin-bottom:24px;
  font-weight:600;
  text-align:center;
}

/* Contact info + map layout */
.orv-contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}
.orv-contact-info-card{
  border:1px solid var(--orv-border);
  border-radius:var(--orv-radius);
  padding:28px;
  background:var(--orv-card-bg);
  margin-bottom:16px;
}
.orv-contact-info-card h4{font-size:15px;margin-bottom:6px;}
.orv-map-placeholder{
  width:100%;
  height:260px;
  border-radius:var(--orv-radius);
  background:var(--orv-bg-alt);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orv-text-muted);
  border:1px solid var(--orv-border);
}
@media(max-width:900px){.orv-contact-grid{grid-template-columns:1fr;}}

/* ========================================
   404 PAGE
======================================== */
.orv-404{
  text-align:center;
  padding:120px 0;
}
.orv-404 .code{
  font-size:120px;
  font-weight:800;
  background:var(--orv-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1;
}
@media(max-width:600px){.orv-404 .code{font-size:80px;}}
