/* ============================================================
   PORFISA GROUP – Shared Stylesheet
   Fonts: Montserrat (headings) + Open Sans (body)
   Palette: Green #1D6433 · Orange #E8630A · Black #111 · White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1D6433;
  --green-dark:  #124427;
  --green-mid:   #175B2C;
  --green-light: #248840;
  --orange:      #E8630A;
  --orange-lt:   #F57820;
  --black:       #111111;
  --dark:        #1C1C1C;
  --dark2:       #252525;
  --white:       #FFFFFF;
  --off-white:   #F8F7F5;
  --gray-light:  #EEEEEE;
  --gray:        #BBBBBB;
  --text:        #2A2A2A;
  --muted:       #6B6B6B;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 70px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--black);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 2px solid var(--green);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: auto;
  height: 44px;
  max-width: 120px;
  border-radius: 4px;
  object-fit: contain;
  background: var(--white);
  padding: 3px 6px;
}

.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links li a.active { color: var(--orange); }

.nav-cta-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
}

.nav-cta-btn:hover { background: var(--orange-lt) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ─── SHARED LAYOUT ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
}

.divider {
  width: 56px;
  height: 4px;
  border-radius: 2px;
  margin: 20px 0 32px;
}

.divider-orange { background: var(--orange); }
.divider-green  { background: var(--green); }
.divider-white  { background: var(--white); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--black);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.3));
  pointer-events: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .section-eyebrow { color: var(--orange); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-lead { color: rgba(255,255,255,0.65); }

/* ─── BRAND STRIP ─── */
.brand-strip {
  background: var(--green);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-strip span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-strip span i { color: rgba(255,255,255,0.6); font-size: 10px; }

/* ─── BTN ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 13px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-lt); }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-light); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

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

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 56px 0 0;
  border-top: 3px solid var(--green);
}

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

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-name span { color: var(--orange); }

.footer-tagline {
  font-size: 12px;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green-light);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i { color: var(--orange); font-size: 13px; margin-top: 3px; flex-shrink: 0; }

.footer-contact-item span, .footer-contact-item a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact-item a:hover { color: var(--orange); }

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-top: 60px; }
  nav { height: 60px; padding: 0 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--black);
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 2px;
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 16px; display: block; width: 100%; border-radius: 3px; }
  .nav-cta-btn { margin-top: 6px; text-align: center; justify-content: center; }
  .nav-hamburger { display: flex; }
  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 48px 0 40px; }
  .brand-strip { gap: 14px; padding: 12px 20px; }
  .section-lead { font-size: 15px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 40px 0; }
  nav { padding: 0 16px; }
  .nav-logo-text { font-size: 15px; letter-spacing: 1px; }
  .nav-logo-img { height: 38px; }
  .page-hero { padding: 32px 0 24px; }
  .brand-strip { gap: 10px; padding: 10px 16px; }
  .brand-strip span { font-size: 10px; letter-spacing: 1px; }
  .btn { padding: 11px 18px; font-size: 11px; }
  .section-title { font-size: clamp(22px, 7vw, 38px); }
  .divider { margin: 14px 0 24px; }
  .footer-grid { gap: 28px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom p { font-size: 11px; }
  .footer-social a { width: 40px; height: 40px; font-size: 16px; }
}
