/* ================================================================
   MASEGO PROPERTIES — GLOBAL STYLESHEET
   World-Class Premium Corporate | v2 — Class names aligned with HTML
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* BRAND PALETTE */
  --green-dark:  #1e5e3a;
  --green-mid:   #3b7d52;
  --green-light: #5aab78;
  --gold:        #f9a825;
  --gold-light:  #ffd54f;
  --brand-red:   #c62828;
  --brand-blue:  #1565c0;
  --navy:        #0d3880;
  --navy-mid:    #1a52b0;
  --charcoal:    #2b2b2b;
  --white:       #ffffff;
  --off-white:   #f7f9f7;
  --text-dark:   #1e1e2e;
  --text-muted:  #556070;
  --border-color: rgba(0,0,0,0.08);

  /* DESIGN TOKENS */
  --shadow-xs: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.20);
  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --t: 0.35s cubic-bezier(0.25,0.8,0.25,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ================================================================
   ANIMATED CURSOR GLOW
   ================================================================ */
.cursor-glow {
  pointer-events: none;
  position: fixed; z-index: 9999;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,125,82,0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.08s linear, top 0.08s linear;
}

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
  background: var(--charcoal);
  padding: 8px 6%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.topbar-link {
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.25s;
}
.topbar-link:hover { color: var(--gold-light); }
.topbar-link i { color: var(--gold); }
.topbar-social {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.65);
  transition: background 0.25s, color 0.25s;
}
.topbar-social:hover { background: var(--gold); color: white; }

/* ================================================================
   NAVIGATION
   ================================================================ */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: box-shadow var(--t);
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.12); }

/* Nav inner wrapper — direct flex container */
.nav-inner {
  display: flex; flex-direction: row; flex-wrap: nowrap;
  align-items: center; justify-content: space-between;
  gap: 16px;
  height: 72px;
  padding: 0 6%;
  max-width: 100%;
}

/* Logo */
.nav-logo {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0; overflow: hidden;
  max-width: 260px;
}
.nav-logo img {
  width: 46px; min-width: 46px; max-width: 46px;
  height: 46px; min-height: 46px; max-height: 46px;
  border-radius: 50%; object-fit: contain;
  background: white; border: 2px solid rgba(59,125,82,0.15);
  box-shadow: 0 4px 14px rgba(59,125,82,0.2);
  display: block; flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-size: 1.05rem; font-weight: 800; color: var(--text-dark);
  letter-spacing: -0.3px; line-height: 1.2;
}
.nav-logo-tagline {
  font-size: 0.65rem; color: var(--green-mid);
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links li { position: relative; }
.nav-link {
  color: var(--text-muted); font-size: 0.84rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius-xs);
  letter-spacing: 0.3px; position: relative;
  transition: color var(--t), background var(--t);
  display: flex; align-items: center; gap: 5px;
}
.nav-link:hover { color: var(--green-mid); background: rgba(59,125,82,0.06); }
.nav-link.active { color: var(--green-mid); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--green-mid); border-radius: 2px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); min-width: 220px;
  padding: 8px 0; opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
  border: 1px solid rgba(0,0,0,0.06);
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted);
  transition: background var(--t), color var(--t), padding-left var(--t);
}
.nav-dropdown a:hover {
  background: var(--off-white); color: var(--green-mid); padding-left: 22px;
}
.nav-dropdown a i { width: 16px; color: var(--gold); font-size: 0.8rem; }

/* Nav action buttons */
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none;
  background: none; border-radius: 8px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text-dark);
  border-radius: 2px; transition: var(--t); display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* Mobile slide menu */
.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%;
  width: min(320px, 88vw); height: 100vh;
  background: white; z-index: 1100; padding: 24px;
  box-shadow: -10px 0 50px rgba(0,0,0,0.15);
  transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
  overflow-y: auto; flex-direction: column;
}
.mobile-menu.open { right: 0; display: flex; }
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 1099;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { display: block; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
#mobile-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--off-white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-dark);
  transition: background var(--t);
}
#mobile-close:hover { background: #e0e0e0; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-radius: var(--radius-sm);
  color: var(--text-dark); font-size: 0.95rem; font-weight: 600;
  transition: background var(--t), color var(--t);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--off-white); color: var(--green-mid);
}
.mobile-menu-footer {
  margin-top: auto; padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex; flex-direction: column; gap: 8px;
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative; min-height: 340px;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 40%, var(--green-dark) 100%);
}
.page-hero-diagonal {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent 0px, transparent 40px,
    rgba(255,255,255,0.025) 40px, rgba(255,255,255,0.025) 42px
  );
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 110px 6% 70px;
}
.page-hero-content { max-width: 680px; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900; color: white; line-height: 1.15; margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  max-width: 560px; line-height: 1.8; margin-bottom: 24px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.3px;
  transition: color 0.25s;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { color: rgba(255,255,255,0.3); font-size: 0.6rem; }
.breadcrumb > span:last-child { color: var(--gold-light); }

/* ================================================================
   SECTION COMMONS
   ================================================================ */
section { padding: 100px 6%; }
.container { max-width: 1280px; margin: 0 auto; }
.text-center { text-align: center; }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }

/* Section label */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 14px; color: var(--green-mid);
}
.section-label::before, .section-label::after {
  content: ''; width: 22px; height: 2px;
  border-radius: 2px; background: currentColor; flex-shrink: 0;
}

/* Section head */
.section-head { margin-bottom: 0; }
.section-head.text-center .section-sub { margin: 0 auto; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.8; max-width: 620px; margin-bottom: 0;
}

/* Scroll reveal animations */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; letter-spacing: 0.4px;
  border-radius: 50px; border: none; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg  { padding: 16px 38px; font-size: 0.96rem; }
.btn-md  { padding: 13px 30px; font-size: 0.88rem; }
.btn-sm  { padding: 10px 22px; font-size: 0.8rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: white; box-shadow: 0 8px 24px rgba(59,125,82,0.35);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(59,125,82,0.48); }

.btn-gold {
  background: linear-gradient(135deg, var(--brand-red), #ef5350);
  color: white; box-shadow: 0 8px 24px rgba(198,40,40,0.35);
}
.btn-gold:hover { box-shadow: 0 14px 36px rgba(198,40,40,0.48); }

.btn-white {
  background: white; color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.18); }

.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-outline-green {
  background: transparent; color: var(--green-mid);
  border: 2px solid var(--green-mid);
}
.btn-outline-green:hover { background: var(--green-mid); color: white; }

.btn-dark {
  background: var(--charcoal); color: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-dark:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.3); }

/* ================================================================
   CARDS
   ================================================================ */
.card {
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.card-glass:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(249,168,37,0.4);
  transform: translateY(-5px);
}

/* ================================================================
   BADGE / TAG
   ================================================================ */
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase;
}
.badge-green { background: rgba(59,125,82,0.1); color: var(--green-mid); border: 1px solid rgba(59,125,82,0.25); }
.badge-gold  { background: rgba(249,168,37,0.12); color: #b07000; border: 1px solid rgba(249,168,37,0.3); }
.badge-blue  { background: rgba(21,101,192,0.1); color: var(--brand-blue); border: 1px solid rgba(21,101,192,0.25); }
.badge-white { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.25); }

/* ================================================================
   WORLD-CLASS FOOTER
   ================================================================ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--navy) 50%, var(--charcoal) 100%);
  padding: 60px 6% 50px;
  position: relative; overflow: hidden;
}
.footer-top::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpolygon points='50,5 95,27 95,73 50,95 5,73 5,27'/%3E%3C/g%3E%3C/svg%3E") center/80px;
}
.footer-top-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px; position: relative; z-index: 1;
}
.footer-top-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900;
  color: white; margin-bottom: 10px;
}
.footer-top-left p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 440px; }
.footer-top-right { display: flex; gap: 14px; flex-wrap: wrap; }

.footer-main {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 6% 0;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

/* Footer brand column */
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { width: 120px; margin-bottom: 18px; border-radius: var(--radius-sm); }
.footer-tagline {
  font-size: 0.87rem; line-height: 1.8;
  max-width: 290px; margin-bottom: 28px;
  color: rgba(255,255,255,0.6);
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.9);
  transition: transform 0.25s, opacity 0.25s;
  text-decoration: none; flex-shrink: 0;
}
.social-btn:hover { transform: translateY(-3px); opacity: 0.88; }
.social-btn.social-fb { background: #1877f2; }
.social-btn.social-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.social-tk { background: #010101; border: 1px solid rgba(255,255,255,0.15); }
.social-btn.social-wa { background: #25d366; }

/* Footer columns */
.footer-col { }
.footer-col h4, .footer-col-title {
  font-size: 0.8rem; font-weight: 800; color: white;
  letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 22px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after, .footer-col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--gold); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.25s, padding-left 0.25s;
}
.footer-links li a i { font-size: 0.65rem; color: var(--gold); transition: transform 0.25s; }
.footer-links li a:hover { color: white; padding-left: 4px; }
.footer-links li a:hover i { transform: translateX(3px); }

/* Footer contact list */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.85rem; line-height: 1.6;
}
.footer-contact-list li i {
  color: var(--gold); margin-top: 2px;
  font-size: 0.85rem; flex-shrink: 0; width: 16px; text-align: center;
}
.footer-contact-list li a, .footer-contact-list li span {
  color: rgba(255,255,255,0.7); transition: color 0.25s;
}
.footer-contact-list li a:hover { color: var(--gold-light); }

.footer-bottom { padding: 22px 6%; }
.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}
.footer-bottom-inner p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ================================================================
   FLOATING ACTION BUTTONS
   ================================================================ */
.fab-stack {
  position: fixed; bottom: 28px; right: 26px;
  display: flex; flex-direction: column; gap: 10px; z-index: 900;
}
.fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: white; cursor: pointer;
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.3s;
  border: none; text-decoration: none;
}
.fab:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.fab.fab-wa   { background: #25D366; }
.fab.fab-call { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); }
.fab.fab-top {
  background: var(--navy);
  opacity: 0; pointer-events: none; transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.fab.fab-top.show { opacity: 1; pointer-events: all; transform: scale(1); }

/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  display: flex; align-items: center; justify-content: center;
  max-width: 90vw; max-height: 90vh;
}
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-sm); object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ================================================================
   PAGE TRANSITION OVERLAY
   ================================================================ */
.page-transition {
  position: fixed; inset: 0; z-index: 9000;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  transform: scaleY(1); transform-origin: top;
  transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
  display: flex; align-items: center; justify-content: center;
  pointer-events: all;
}
.page-transition.done { transform: scaleY(0); pointer-events: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 70px 5%; }
  .footer-main { grid-template-columns: 1fr; padding: 50px 5% 0; }
  .footer-top  { padding: 50px 5%; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; }
  .topbar-left { display: none; }
  .page-hero-inner { padding: 90px 5% 56px; }
}

@media (max-width: 600px) {
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-top-right { flex-direction: column; width: 100%; }
  .footer-top-right .btn { width: 100%; justify-content: center; }
}
