

/* ─── TOKENS & STYLE VARIABLES ─────────────────────────────── */
:root {
  /* --green: #e8a020; */
  --green: #FFD532;
  --green-dk: #059e74;
  /* --terracotta: #d05c38; */
  --terracotta: #0098d4;
  --dark: #111827;
  --dark2: #1a2332;
  --body: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #f9fafb;
  --white: #ffffff;
  --ff: "Bricolage Grotesque", sans-serif;
  --ff-body: "Manrope", sans-serif;
  
  /* Compatibility aliases */
  --ff-serif: "Bricolage Grotesque", sans-serif;
  --ff-sans: "Manrope", sans-serif;
  
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --pill: 999px;
  --t: 0.22s ease;
}

/* ─── GLOBAL BUTTONS ────────────────────────────────────────── */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d1b36;
  color: var(--white);
  font-family: var(--ff);
  font-size: 1.1vw;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: background var(--t);
  text-decoration: none;
}
.btn-green:hover {
  background: var(--green-dk);
}
.btn-green .material-symbols-outlined {
  font-size: 1.1vw;
}

/* ===== BITTON ====== */

.about-cta-btn  {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--dark);
  /* color: var(--dark2); */
  color:#f3f4f6;
  padding: 8px 8px 8px 24px;
  border-radius: var(--pill);
  font-family: var(--ff-body);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 700;
  transition: background var(--t), transform var(--t);
}

/* .about-cta-btn:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
} */

.cta-arrow-circle {
  width: clamp(32px, 1.8vw, 48px);
  height: clamp(32px, 1.8vw, 48px);
  background: #00AFEF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform var(--t), background var(--t);
}

.cta-arrow-circle .material-symbols-outlined {
  font-size: clamp(16px, 1.3vw, 22px);
}

.about-cta-btn:hover .cta-arrow-circle {
  transform: rotate(45deg);
  background: var(--green);
}



.prop-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--dark);
  /* color: var(--dark2); */
  color:#f3f4f6;
  padding: 8px 8px 8px 24px;
  border-radius: var(--pill);
  font-family: var(--ff-body);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 700;
  transition: background var(--t), transform var(--t);
}



/* ─── RESET & BASE LAYOUT ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  position: relative;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 40px;
 /* padding: clamp(1rem, 2vw, 2.5rem); */
 /* padding: 3vw 3vw; */
}

/* ─── BACKGROUND GRID LINES ──────────────────────────────────── */
.bg-lines-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
  z-index: 0;
}
.bg-line {
  border-right: 1px solid rgba(17, 24, 39, 0.04);
  height: 100%;
}
.bg-line:last-child {
  border-right: none;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}
.top-contact-bar {
  min-height: 76px;
  padding: 0 5vw 0 29vw;
  background: #0d1b36;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
}
.top-contact-list {
  display: flex;
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
}
.top-contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.top-contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00AFEF;
  flex: 0 0 auto;
}
.top-contact-icon .material-icons-round {
  font-size: 34px;
}
.top-contact-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(1476%) hue-rotate(174deg) brightness(98%) contrast(101%);
}
.top-contact-kicker {
  display: block;
  color: #8fa0bd;
  font-size: 13px;
  line-height: 1.1;
  margin-bottom: 5px;
}
.top-contact-value {
  display: block;
  color: #ffffff;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}
.top-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  font-size: 17px;
}
.top-socials a {
  transition: color var(--t), transform var(--t);
}
.top-socials a:hover {
  color: #e8a020;
  transform: translateY(-2px);
}
.nav {
  position: relative;
  min-height: 64px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: clamp(190px, 17vw, 255px) 1fr clamp(190px, 17vw, 255px);
  align-items: center;
  column-gap: clamp(20px, 4vw, 60px);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}
.nav-logo {
  position: absolute;
  left: calc(5vw - 22px);
  bottom: 0;
  width: clamp(190px, 17vw, 255px);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.1);
  font-family: var(--ff);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}
.nav-logo img {
  max-height: 98px;
  width: auto;
  display: block;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark .material-icons-round {
  font-size: 18px;
  color: var(--white);
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  grid-column: 3;
  min-width: 0;
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--dark2);
  font-size: 14px;
  font-weight: 600;
}
.nav-phone .material-icons-round {
  font-size: 16px;
}
.nav-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #111827;
  border: 1.5px solid #111827;
  color: var(--white);
  padding: 0;
  border-radius: 50%;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t);
  backdrop-filter: blur(8px);
}
.nav-menu-btn:hover {
  background: #e8a020;
  border-color: #e8a020;
}
.nav-menu-btn .material-icons-round {
  font-size: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  grid-column: 2;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 700;
  color: #6b7280;
  padding: 22px 14px;
  /* text-transform: uppercase; */
  border-radius: 0;
  position: relative;
  transition: all 0.22s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  height: 3px;
  background: #e8a020;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t);
}
.nav-links a:hover {
  color: var(--dark2);
}
.nav-links a.active {
  color: var(--dark2);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 24px;
  border-radius: var(--pill);
  font-family: var(--ff-body);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 700;
  transition: background var(--t), transform var(--t);
  border: none;
}
.nav-cta:hover {
  transform: translateY(-2px);
}
.nav-cta .material-symbols-outlined {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform var(--t), background var(--t), color var(--t);
}
.nav-cta:hover .material-symbols-outlined {
  transform: rotate(45deg);
}

/* Blue Variant */
.nav-cta.blue-variant {
  background: #00AFEF;
  color: var(--white);
}
.nav-cta.blue-variant:hover {
  background: #0098d4;
}
.nav-cta.blue-variant .material-symbols-outlined {
  background: var(--white);
  color: #00AFEF;
}
.nav-cta.blue-variant:hover .material-symbols-outlined {
  background: var(--green);
  color: var(--white);
}

/* White Variant */
.nav-cta.white-variant {
  background: var(--white);
  color: var(--dark);
}
.nav-cta.white-variant:hover {
  background: #f9fafb;
}
.nav-cta.white-variant .material-symbols-outlined {
  background: #00AFEF;
  color: var(--white);
}
.nav-cta.white-variant:hover .material-symbols-outlined {
  background: var(--green);
  color: var(--white);
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 72px;
  padding: 0 7vw;
  display: grid;
  grid-template-columns: clamp(190px, 17vw, 255px) 1fr clamp(190px, 17vw, 255px);
  align-items: center;
  column-gap: clamp(20px, 4vw, 60px);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
body.is-scrolled .sticky-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
body.is-scrolled .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}
.site-header {
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.sticky-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /*flex: 0 0 auto;*/
  grid-column: 1;
  width: 100%;
}
.sticky-logo img {
  height: 58px;
  width: auto;
}
.sticky-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  grid-column: 2;
}
.sticky-links a {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 700;
  color: #6b7280;
  padding: 26px 14px 23px;
  /* text-transform: uppercase; */
  position: relative;
  transition: color var(--t);
}
.sticky-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 3px;
  background: #e8a020;
  transform: scaleX(0);
  transition: transform var(--t);
}
.sticky-links a:hover,
.sticky-links a.active {
  color: var(--dark2);
}
.sticky-links a:hover::after,
.sticky-links a.active::after {
  transform: scaleX(1);
}
.sticky-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
  grid-column: 3;
  min-width: 0;
}

/* ─── SLIDE MENU OVERLAY ────────────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.menu-overlay.open {
  display: block;
}
.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}
.menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(500px, 100%);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  padding: 48px 56px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}
.menu-overlay.open .menu-panel {
  transform: translateX(0);
}
.menu-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #abb4c2;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), transform 0.2s ease;
}
.menu-close:hover {
  background: #abb4c2;
  transform: rotate(90deg);
}
.menu-close .material-icons-round {
  font-size: 20px;
  color: var(--dark);
}
.menu-logo {
  margin-bottom: 20px;
}
.menu-logo img {
  height: 55px;
  width: auto;
  display: block;
}
.menu-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-nav a {
  font-family: var(--ff);
  font-size: 38px;
  font-weight: 800;
  color: var(--);
  letter-spacing: -1px;
  padding: 6px 0;
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-nav a::before {
  content: "—";
  font-size: 24px;
  color: transparent;
  transition: color var(--t), transform var(--t);
  transform: translateX(-10px);
  display: inline-block;
}
.menu-nav a:hover {
  color: var(--green);
}
.menu-nav a:hover::before {
  color: var(--green);
  transform: translateX(0);
}
.menu-nav a.active {
  color: var(--green);
}
.menu-nav a.active::before {
  color: var(--green);
  transform: translateX(0);
}
.menu-about, 
.menu-contact-section {
  margin-top: 35px;
}
.menu-about h3, 
.menu-contact-section h3 {
  font-family: var(--ff);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  text-transform: capitalize;
  letter-spacing: 0;
}
.menu-about p {
  font-size: 14px;
  color: #abb4c2;
  line-height: 1.6;
  margin-bottom: 20px;
  /* text-align: justify; */
}
.btn-menu-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background:       #e8a020 ;
  color: #ffffff;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--pill);
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--terracotta);
}
.btn-menu-readmore:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-menu-readmore span.material-icons-round {
  font-size: 15px;
  background: #ffffff;
  color: var(--terracotta);
  padding: 3px;
  border-radius: 50%;
  display: inline-flex;   
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}
.btn-menu-readmore:hover span.material-icons-round {
  color: var(--dark);
}
.menu-contact-section ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu-contact-section li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4b5563;
}
.menu-contact-section li span.material-icons-round {
  font-size: 18px;
  color: var(--green);
}
.menu-contact-section li a {
  color: #abb4c2;
  transition: color var(--t);
}
.menu-contact-section li a:hover {
  color: var(--terracotta);
}
.menu-socials-section {
  display: flex;
  gap: 10px;
  margin-top: 35px;
}
.menu-socials-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 15px;
  transition: all 0.25s ease;
}
.menu-socials-section a:hover {
  background: var(--dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ─── FLOATING CONTACT TAB ────────────────────────────────────── */
.floating-contact-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left bottom;
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 100;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background var(--t);
}
.floating-contact-tab:hover {
  background: var(--green);
}

/* ─── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter {
  background: var(--dark2);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-text {
  flex: 1;
  min-width: 240px;
}
.newsletter-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.5;
}
.newsletter-text strong {
  display: block;
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pill);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}
.newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 22px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--white);
  flex: 1;
  min-width: 0;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form button {
  background: var(--white);
  color: var(--dark);
  border: none;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 800;
  padding: 13px 24px;
  cursor: pointer;
  transition: background var(--t);
}
.newsletter-form button:hover {
  background: #f0f0f0;
}
.newsletter-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 280px;
  line-height: 1.5;
}
.newsletter-socials {
  display: flex;
  gap: 14px;
}
.nl-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: border-color var(--t);
}
.nl-social:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.nl-social .material-icons-round {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.subpage-hero {
    background: linear-gradient(rgba(13, 27, 54, 0.8), rgba(13, 27, 54, 0.8)), url('../images/hero/about.png');
    background-size: cover;
    background-position: center;
    padding: 180px 0 70px;
    text-align: center;
}

.subpage-hero h1 {
    font-family: var(--ff-serif);
    font-size: clamp(2.5rem, 3vw, 4rem);
    color: #ffffff;
    font-weight: 600;
    margin-top: 2vw;
}

.subpage-breadcrumbs {
   font-family: var(--ff-serif);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 500;
}

.subpage-breadcrumbs a {
    color: var(--blue);
    transition: 0.3s;
       color: var(--green);
} 

.subpage-breadcrumbs a:hover {
    color: var(--green);
}
/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark2);
  padding: 4vw 0 1vw;
}
.footer-inner {
  font-family: 'Bricolage Grotesque';
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 2vw;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo img {
  height: clamp(160px, 4.5vw, 55px);
  width: auto;
  display: block;
}
.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon .material-icons-round {
  font-size: 16px;
  color: var(--white);
}
.footer-brand-cta {
  margin-bottom: 12px;
}
.footer-cta-title {
  font-family: var(--ff);
  font-size: clamp(16px, 1vw, 22px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.footer-col-title {
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links a {
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--t);
  display: flex;
  align-items: flex-start;
  word-break: break-word;
}
.footer-links a i.fa-angle-right {
  color: var(--green);
  margin-right: 8px;
  font-size: 11px;
  transition: transform var(--t);
  display: inline-block;
  margin-top: 6px;
  flex-shrink: 0;
}
.footer-links a i.fa-envelope,
.footer-links a i.fa-phone,
.footer-links a i.fa-location-dot {
  color: var(--green);
  margin-right: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}
/* .footer-address styles removed as they are now handled by generic .footer-links a */
.footer-links a:hover {
  color: var(--green);
}
.footer-links a:hover i.fa-angle-right {
  transform: translateX(4px);
}
.footer-links a.active {
  color: var(--white);
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-powered {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-powered a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-powered a:hover {
  color: #fff;
}
.footer-social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}
.footer-social-links a {
  color: var(--white);
  font-size: clamp(14px, 1.1vw, 18px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  /* border: 1px solid var(--border); */
  transition: all 0.25s ease;
}
.footer-social-links a:hover {
  background: #e8a020;
  color: var(--dark) !important;
  transform: translateY(-2px);
}

/* ─── MOBILE FOOTER ──────────────────────────────────────────── */
.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0d1b36;
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.15);
}
.mobile-footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  flex: 1;
}
.mobile-footer-item i {
  font-size: 22px;
}
.mobile-footer-item:hover {
  color: #e8a020;
}


.whatsapp-float{
    position: fixed;
    right: 3vw;
    bottom: 3vw;
    width: 3vw;
    height: 3vw;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    z-index: 9999;
    box-shadow: 0 0.5rem 1.5rem rgba(37,211,102,.4);
    transition: all .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform: translateY(-0.3rem) scale(1.05);
    color: #fff;
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow: 0 0 0 1.2rem rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px){
    .whatsapp-float{
        width: 3.8rem;
        height: 3.8rem;
        font-size: 1.7rem;
        bottom: 5rem; /* above your mobile footer */
        right: 1rem;
    }
}

/* ─── RESPONSIVE & BREAKPOINTS ───────────────────────────────── */
@media (min-width: 1024px) and (max-width: 1280px) {
  .top-contact-bar {
    padding: 0 5vw 0 280px;
  }
  .top-contact-list {
    gap: 20px;
  }
  .top-contact-item {
    gap: 8px;
  }
  .top-contact-icon {
    width: 32px;
    height: 32px;
  }
  .top-contact-icon .material-icons-round,
  .top-contact-icon img {
    font-size: 26px;
    width: 26px;
    height: 26px;
  }
  .top-contact-kicker {
    font-size: 11px;
    margin-bottom: 2px;
  }
  .top-contact-value {
    font-size: 13px;
  }
  
  .nav {
    padding: 0 5vw;
    grid-template-columns: 210px 1fr auto;
    column-gap: 20px;
  }
  .nav-logo {
    left: calc(5vw - 15px);
    width: 210px;
    height: 140px;
    padding: 12px 15px;
  }
  .nav-logo img {
    max-height: 80px;
  }
  .nav-links a {
    padding: 22px 10px;
    font-size: 14px;
  }
  .nav-links a::after {
    left: 10px;
    right: 10px;
  }
  .nav-cta {
    padding: 8px 8px 8px 18px;
    font-size: 13px;
    gap: 8px;
  }
  .nav-cta .material-symbols-outlined {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .sticky-header {
    height: 72px;
    padding: 0 5vw;
    grid-template-columns: 210px 1fr auto;
    column-gap: 20px;
  }
  .sticky-logo {
    width: 100%;
    justify-content: flex-start;
  }
  .sticky-logo img {
    height: 50px;
  }
  .sticky-links a {
    padding: 26px 10px 23px;
    font-size: 14px;
  }
  .sticky-links a::after {
    left: 10px;
    right: 10px;
  }
  .sticky-actions {
    gap: 8px;
  }
  .footer-inner {
    gap: 24px;
  }
  .footer-links a {
    font-size: 13px;
  }

}

@media (max-width: 1023px) {
  .sticky-header {
    padding: 0 28px;
    grid-template-columns: 210px 1fr 210px;
    column-gap: 18px;
  }
  .sticky-logo img {
    height: 54px;
  }
  .sticky-links a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .top-contact-bar {
    padding: 0 28px 0 250px;
  }
  .top-contact-list {
    gap: 24px;
  }
  .top-contact-item:nth-child(2) {
    display: none;
  }
  .top-socials {
    display: none;
  }
  .nav {
    padding: 0 28px;
    grid-template-columns: 210px 1fr 210px;
    column-gap: 18px;
  }
  .nav-logo {
    left: 6px;
    width: 210px;
  }
  .nav-links a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .sticky-header {
    height: 74px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
  }
  .sticky-logo img {
    height: 58px;
  }
  .sticky-links,
  .sticky-actions .nav-cta {
    display: none;
  }
  .sticky-actions .nav-menu-btn {
    display: flex;
  }
  .top-contact-bar {
    display: none;
    min-height: 48px;
    padding: 0 20px;
    justify-content: center;
  }
  .top-contact-list {
    width: 100%;
    justify-content: center;
  }
  .top-contact-item:not(:first-child) {
    display: none;
  }
  .top-contact-icon {
    width: 30px;
    height: 30px;
  }
  .top-contact-icon .material-icons-round {
    font-size: 24px;
  }
  .top-contact-icon img {
    width: 24px;
    height: 24px;
  }
  .top-contact-kicker {
    display: none;
  }
  .top-contact-value {
    font-size: 13px;
  }
  .nav {
    min-height: 74px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 14px 32px rgb(17 24 39 / 27%);
  }
  .nav-logo {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-logo img {
    max-height: 65px;
  }
  .nav-phone {
    display: none;
  }
  .nav-links {
    display: none !important;
  }
  .nav-cta {
    display: none;
  }
  .nav-menu-btn {
    display: flex;
  }
  .menu-panel {
    padding: 40px 24px;
    width: 100% !important;
  }
  .menu-close {
    top: 24px;
    right: 24px;
  }
  .menu-nav a {
    font-size: 28px;
  }
  .newsletter-inner {
    flex-direction: column;
    gap: 20px;
  }
  .newsletter-form {
    width: 100%;
  }
  .newsletter-form input {
    min-width: 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .mobile-footer {
    display: flex;
  }
  body {
    padding-bottom: 75px; /* prevents content hiding behind footer */
  }
  .hero-bar {
    display: none !important; /* hide desktop bottom bar */
  }

.footer-links a{
  display: flex;
  align-items: center;
}
/* ─── FOOTER mobile font fixes ─── */
.footer-cta-title {
  font-size: clamp(18px, 4.5vw, 26px);
}
.footer-col-title {
  font-size: 3.5vw;
}
.footer-links a {
  font-size: clamp(15px, 3.5vw, 16px);
}
.footer-social-links a {
  font-size: clamp(16px, 4.5vw, 20px);
  width: 40px;
  height: 40px;
}
.footer-copy,
.footer-powered {
  font-size: clamp(13px, 3vw, 14px);
}
.btn-green {
  font-size: 14px;
}
.btn-green .material-symbols-outlined {
  font-size: 16px;
}

}
@media (min-width: 769px) {
  .mobile-only-nav {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .floating-contact-tab {
    display: none;
  }
}
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    border-radius: 0;
    gap: 10px;
    width: 100%;
  }
  .newsletter-form input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    width: 100%;
    min-width: 0;
    padding: 13px 20px;
    box-sizing: border-box;
  }
  .newsletter-form button {
    border-radius: 30px;
    width: 100%;
    padding: 13px 20px;
    box-sizing: border-box;
  }




    .subpage-hero {
        padding: 130px 0 50px;
        background-position: center center;
    }

    .subpage-hero h1 {
        font-size: 2rem;
        margin-top: .5rem;
    }

    .subpage-breadcrumbs {
        font-size: .9rem;
        gap: .35rem;
        padding: .5rem 1rem;
    }






}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   BROCHURE DOWNLOAD MODAL (GLOBAL DESIGN)
   ══════════════════════════════════════════════════════════════════════════ */
.brochure-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.brochure-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.brochure-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.brochure-modal-content {
  position: relative;
  z-index: 10001;
  width: 90%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brochure-modal.active .brochure-modal-content {
  transform: scale(1);
}

.brochure-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10002;
}

.brochure-modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.brochure-modal-header {
  padding: 30px 20px;
  background: linear-gradient(135deg, var(--modal-hdr-start, #00AFEF), var(--modal-hdr-end, #059e74));
  text-align: center;
  position: relative;
}

.brochure-modal-header h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brochure-modal-body {
  padding: 30px 24px;
  background: #f9fafb;
}

.brochure-modal-subtitle {
  margin: 0 0 25px 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #4b5563;
  text-align: center;
  line-height: 1.5;
}

.brochure-modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.modal-input-wrapper:focus-within {
  border-color: var(--modal-hdr-start, #00AFEF);
  box-shadow: 0 0 0 3px rgba(0, 175, 239, 0.12);
}

.modal-input-icon {
  width: 50px;
  height: 50px;
  background: var(--modal-hdr-start, #00AFEF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.modal-input-wrapper:focus-within .modal-input-icon {
  background: var(--modal-hdr-end, #059e74);
}

.modal-input-wrapper input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: #111827;
  background: transparent;
  outline: none;
  width: 100%;
}

.modal-input-wrapper input::placeholder {
  color: #9ca3af;
}

.modal-input-wrapper.input-error {
  border-color: #ef4444;
}

.modal-input-wrapper.input-error:focus-within {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.modal-input-wrapper.input-error .modal-input-icon {
  background: #ef4444;
}

.validation-error {
  display: none;
  color: #ef4444;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  margin-top: 4px;
  padding-left: 10px;
}

.modal-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 99px;
  padding: 15px 28px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
  width: 100%;
}

.modal-submit-btn:hover {
  background: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.modal-submit-btn:active {
  transform: translateY(0);
}
