/* ==========================================================================
   GIPL — George Infra Private Limited
   Main stylesheet (design tokens + base + shared header/footer + components)
   Design source of truth: GIPL_Website_2025 PDF comps. Do not restyle.
   ========================================================================== */

/* ---------------------------------------------------------------- TOKENS -- */
:root {
  /* Brand palette (sampled from comps) */
  --navy:        #2b3880;   /* primary brand blue           */
  --navy-2:      #283471;   /* darker navy (hover/depth)    */
  --gold:        #fbb216;   /* accent (logo dot, underline) */

  --ink:         #3e3e3f;   /* body text on light           */
  --ink-soft:    #5a5a5c;   /* secondary text               */
  --white:       #ffffff;

  --grey-100:    #f4f4f4;   /* lightest section bg          */
  --grey-200:    #e6e6e6;   /* light section bg / borders   */
  --grey-300:    #d9d9d9;
  --grey-400:    #ababab;   /* mid grey panels              */
  --grey-500:    #979899;   /* footer / dark panels         */
  --grey-card:   #3e3e3f;   /* dark brand card              */

  /* Type */
  --ff: "Proxima Nova", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --maxw: 1140px;          /* content container at 1366 design width */
  --gutter: 24px;
  --header-h: 96px;
}

/* ----------------------------------------------------------------- RESET -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ------------------------------------------------------------- UTILITIES -- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section  { padding-block: 64px; }
.text-navy { color: var(--navy); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Triangle divider band ----------------------------------------------------*/
.pattern-band {
  background-image: url("../assets/img/pattern-triangles.svg");
  background-size: 120px 120px;
  background-repeat: repeat;
}
.pattern-band--tall { min-height: 60px; }

/* Section heading style (e.g. "Brands", "Products") ------------------------*/
.section-title {
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .2px;
}

/* =============================================================== HEADER === */

 .site-header__logo { 
  grid-row: 1 / span 2; 
  margin-left: 70px !important;    */
}
.hero__title {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(24px, 3.0vw, 34px);
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: .5px;
  max-width: 700px;
  margin-top: -20%;
  margin-left: 120px;   /* ← was 50px, increased to shift right */
}
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  color: var(--white);
}
.site-header__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  row-gap: 4px;
  min-height: var(--header-h);
}
.site-header__logo { grid-row: 1 / span 2; }
.site-header__logo img { height: 34px; width: auto; }

/* Top utility nav (Blogs / Media / Careers / Contact Us) */
.util-nav {
  grid-column: 2;
  justify-self: end;
  display: flex; gap: 26px;
  font-size: 13px; font-weight: 400;
  color: #c7cbe4;
  padding-top: 14px;
}
.util-nav a { transition: color .15s; }
.util-nav a:hover, .util-nav a.is-active { color: var(--white); }

/* Main nav (Home / Company / Brands / Products / Facilities / Society) */
.main-nav {
  grid-column: 2;
  justify-self: end;
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 600;
  padding-bottom: 18px;
}
.main-nav a {
  position: relative; padding-bottom: 6px;
  color: var(--white); transition: color .15s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  grid-column: 2; justify-self: end;
  background: none; border: 0; color: var(--white);
  width: 40px; height: 40px;
}
.nav-toggle svg { width: 26px; height: 26px;  margin-top: 20px;}

/* =============================================================== FOOTER === */
/* =============================================================== FOOTER === */

.facilities-footer__logo img {
    height: 40px;
    width: auto;
}


/*.site-footer {*/
/*  background: var(--grey-500);*/
/*  color: #f2f2f2;*/
/*  padding-block: 40px 28px;*/
/*  font-size: 14px;*/
/*}*/
/*.site-footer__cols {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 2fr 1fr 1fr 1fr auto;*/
/*  gap: 24px 18px;*/
/*  align-items: start;*/
/*}*/
/*.foot-col h4 {*/
/*  font-weight: 700; color: #4a4a4a; font-size: 14px; margin-bottom: 12px;*/
/*}*/
/*.foot-col ul li { margin-bottom: 5px; }*/
/*.foot-col a {*/
/*  color: #5a5656;*/
/*  opacity: .92;*/
/*}*/
/*.foot-col a.bold { font-weight: 700; color: #2c2c2c; }*/
/*.foot-col a:hover { opacity: 1; text-decoration: none; }*/
/*.site-footer__logo { justify-self: end; align-self: start; }*/
/*.site-footer__logo img { height: 42px; width: auto; }*/
/* The Brands column in the comp splits into two sub-columns */
/*.foot-col--brands ul {*/
/*  columns: 2;*/
/*  column-gap: 20px;*/
/*  column-fill: balance;*/
/*}*/
/*.foot-col--brands ul li { break-inside: avoid; white-space: nowrap; }*/
/*.site-footer__copy {*/
/*  margin-top: 36px; font-size: 12px; color: #4a4a4a; opacity: .85;*/
/*}*/

/*@media (max-width: 900px) {*/
/*  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }*/
/*  .site-footer__logo { grid-column: 1 / -1; justify-self: start; }*/
/*}*/
/*@media (max-width: 560px) {*/
/*  .site-footer__cols { grid-template-columns: 1fr; }*/
/*}*/

/* ============================================================== BUTTONS === */
.btn {
  display: inline-block;
  background: var(--navy); color: var(--white);
  font-weight: 600; font-size: 14px;
  padding: 12px 30px; border: 0;
  transition: background .15s;
}
.btn:hover { background: var(--navy-2); }

/* ============================================================ HERO (home) = */
.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  overflow: hidden;
  background: var(--navy);
}
.hero__slide {
  grid-area: 1 / 1;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  opacity: 0; transition: opacity .8s ease;
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__slide::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(10,15,40,.35); /* flat dark wash, matches comp */
}
.hero__copy {
  position: relative;
  width: 100%;
}
.hero__title {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(24px, 3.0vw, 34px);
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: .5px;
  max-width: 700px;
  margin-top: -20%;
  margin-left: 50px;
}
.hero__dots {
  position: absolute; left: 0; right: 0; bottom: 26px;
  display: flex; gap: 10px; justify-content: center; z-index: 3;
}
.hero__dots button {
  width: 11px; height: 11px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.45);
}
.hero__dots button.is-active { background: var(--white); }

/* ===================================================== HOME: intro block = */
.intro {
  background: var(--grey-400);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 980px;       /* narrower than the site's 1140px container */
  margin-inline: auto;    /* keeps it centered */
  padding-inline: 48px;   /* extra breathing room left/right */
}
.intro__title {
  color: var(--navy); font-weight: 300;
  font-size: 30px; line-height: 1.2; margin-bottom: 22px;
}
.intro__body {  font-size: 15px; max-width: 460px; }
.intro__more {
  display: inline-block; margin-top: 22px; color: var(--navy); font-size: 22px;
}

.intro__img {
  height: 100%;        
  min-height: 200px;   
  overflow: hidden;
}
.intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================================================== HOME: brands strip = */
.brands-strip {
  background: var(--navy); color: var(--white);
  padding-block: 0;
}
.brands-strip__head {
  position: relative;
  background-color: var(--navy);
  padding-block: 0 50px;
  overflow: hidden;
}
.brands-strip__head::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 50px;
  background-image: url("../assets/img/pattern-triangles.svg");
  background-size: 120px 120px;
  background-repeat: repeat;
  opacity: 0.25;
  z-index: 0;
}
.brands-strip__head h2 {
  position: relative;
  z-index: 1;
  color: var(--white); font-weight: 700; font-size: 30px; text-align: center;
  padding-block: 38px;
}
.brands-strip__next {
  position: relative;
  display: block;
  text-align: right;
  color: var(--white); font-size: 22px;
  z-index: 1;
}

.brands-strip .container {
  padding-inline: 120px; 
  padding-bottom: 30px;/* increase from the default 24px gutter */
}
.brand-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
 
}
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  min-height: 220px;      /* adjust to match your design */
  overflow: hidden;
}

.brand-card__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}


/* ===================================================== HOME: products row = */

.products-row .container {
  padding-inline: 120px;
}
.products-row { background: var(--grey-400); }
.products-row__head {
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 30px;
}
.products-row__head h2 { color: var(--navy); font-weight: 700; font-size: 30px; }
.products-row__next {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--navy); font-size: 22px;
}
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.product-thumb figure { margin: 0; }
.product-thumb img { width: 100%; height: 200px; object-fit: cover; }
.product-thumb figcaption {
  text-align: center; color: var(--navy); font-weight: 600;
  font-size: 15px; margin-top: 12px; letter-spacing: .3px;
}

/* ====================================================== HOME: news block = */
.news-band { background: var(--grey-100); }
.news-band__head { text-align: center; margin-bottom: 34px; }
.news-band__head h2 { color: var(--navy); font-weight: 700; font-size: 30px; margin-top:-120px; }
.news-feature {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  max-width: 760px; margin-inline: auto;
}
.news-feature__img { width: 100%; height: 100%; object-fit: cover; }
.news-feature__body {
  background: var(--grey-400); color: #2c2c2d;
  padding: 32px 30px; display: flex; align-items: center; font-size: 14px;
}
.news-dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 26px;
}
.news-dots span {
  width: 56px; height: 5px; background: #c9c9cf; border-radius: 2px;
}
.news-dots span.is-active { background: var(--navy); }

/* ========================================================= PAGE TITLE BAND */
/* Gold-to-navy gradient strip used at top of interior pages (Blogs, Contact) */
.page-title-band {
  background: linear-gradient(90deg, var(--gold) 0%, var(--navy) 70%);
  color: var(--white);
}
.page-title-band .container { padding-block: 40px; }
.page-title-band h1 {
  font-weight: 700; font-size: 34px; text-transform: uppercase; letter-spacing: .5px;
}
/* Simple navy hero band variant (Contact "Get in touch") */
.subhero { background: var(--navy); color: var(--white); }

/* ============================================================ CONTACT ===== */
.contact-head { background: linear-gradient(180deg,#5566b0 0%, var(--navy) 100%); color: var(--white); }
.contact-head h1 { font-weight: 700; font-size: 34px; text-transform: uppercase; }
.contact-intro { max-width: 560px; margin-top: 10px; font-size: 15px; color: #eef0f8; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contact-info p { margin-bottom: 4px; font-size: 15px; }
.contact-info .lbl { color: var(--ink-soft); margin-top: 18px; }
.contact-info strong { color: var(--ink); }
.contact-info .tollfree { margin-top: 22px; font-weight: 700; color: var(--ink); }

.contact-form {
  position: relative;
  background: var(--grey-400);
  padding: 34px 32px;
}
.contact-form::before {  /* gold corner flag from comp */
  content: ""; position: absolute; top: 0; left: -1px;
  border-style: solid; border-width: 0 0 56px 56px;
  border-color: transparent transparent transparent var(--gold);
  transform: translate(-46px,0);
}
.contact-form input,
.contact-form textarea {
  width: 100%; border: 0; background: var(--white);
  padding: 13px 14px; margin-bottom: 12px; font-family: inherit; font-size: 14px;
  color: var(--ink);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.newsletter { text-align: center; }
.newsletter h2 { color: var(--navy); font-weight: 600; font-size: 28px; margin-bottom: 26px; }
.newsletter__row { display: flex; max-width: 660px; margin-inline: auto; }
.newsletter__row input {
  flex: 1; border: 0; background: var(--grey-400); padding: 13px 16px; font-size: 14px;
}
.newsletter__row .btn { padding-inline: 28px; }

/* ============================================================ RESPONSIVE == */
@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .site-header__inner { grid-template-columns: auto 1fr; }
  .util-nav { display: none; }
  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;         /* override the desktop justify-self: end so it spans full width */
    width: 100%;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--navy); padding: 10px 0; display: none;
    box-shadow: 0 12px 24px rgba(20, 24, 60, .28);
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: 18px var(--gutter);
    text-align: center;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after {
    left: 50%; right: auto; width: 44px;
    transform: translateX(-50%) scaleX(0);
  }
  .main-nav a:hover::after,
  .main-nav a.is-active::after { transform: translateX(-50%) scaleX(1); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-toggle .icon-close { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-close { display: block; }

  .intro__grid,
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .products-row .container { padding-inline: 20px; }
  .product-thumb img { height: 110px; }
  .news-feature { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .site-footer__logo { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 560px) {
  .brand-cards { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .product-thumb img { height: 70px; }
  .product-thumb figcaption { font-size: 11px; margin-top: 6px; }
  .newsletter__row { flex-direction: column; gap: 10px; }
  .site-footer__cols { grid-template-columns: 1fr; }
}

@media (max-width: 786px) {
 .site-header__logo { 
  grid-row: 1 / span 2; 
  margin-left: 10px !important;    */
}}

/* ============================================================ */
/* PRODUCT CATEGORY PAGES (roofing/cladding/structurals/hardware/industrial) */
/* Moved out of per-page inline <style> blocks so the browser caches this */
/* once instead of re-downloading identical CSS on every tab click.       */
/* ============================================================ */
  .site-header__logo { 
  grid-row: 1 / span 2; 
  margin-left:70px !important;
}
  *{box-sizing:border-box;}
  html,body{margin:0;padding:0;}
  body{
    font-family:'Proxima Nova','Montserrat',Helvetica,Arial,sans-serif;
    color:var(--text-dark);
    background:#fff;
    -webkit-font-smoothing:antialiased;
  }

  img{max-width:100%;display:block;}
  .wrap{max-width:var(--max-width);margin:0 auto;padding:0 60px 0 160px;}

  /* ---------- HERO ---------- */
  .page-title-band-product{
    min-height:0 !important;
    height:auto !important;
  }
  .hero{
    position:relative;
    overflow:hidden;
    background-color:#ffffff;
    padding:36px 0 0 !important;
    border-top:4px solid var(--navy);
    min-height:0 !important;
    height:auto !important;
  }
  .hero-diamonds{
    position:absolute;
    top:0; left:0; right:0; bottom:0;
    z-index:0;
    background-color:#ffffff;
    /* interlocking diamond pattern, two tones over white */
    background-image: url("assets/img/pattern-triangles.svg");
    background-position:
      65px 0, 65px 0, 0 0, 0 0,
      0 65px, 0 65px, 65px 65px, 65px 65px;
    background-size:130px 130px;
    background-repeat:repeat;
    opacity:1;
  }
  .hero-inner{
    position:relative;
    z-index:1;
    text-align:center;
    max-width:780px;
    margin:0 auto;
    padding:0 24px 28px !important;
  }
  .hero-inner h1{
   
    font-weight:600;
    color:var(--navy);
    font-size:clamp(22px, 3.4vw, 28px);
    line-height:1.25;
    margin:0 0 20px;
    text-transform:uppercase;
    letter-spacing:.1px;
  }
  .hero-inner p{
    font-size:clamp(12px, 1.2vw, 15px);
    line-height:1.55;
    color:var(--text-gray);
    font-weight:300;
    margin:0;
  }

  /* ---------- CATEGORY TAB BAR ---------- */
  .cat-bar{
    background:var(--navy);
    width:100%;
    position:relative;
    z-index:1;
  }
  .cat-bar-inner{
    max-width:var(--max-width);
    margin:0 auto;
    padding:0 60px 0 134px;
    display:flex;
    flex-wrap:wrap;
    align-items:stretch;
  }
  .cat-tab{
    position:relative;
    list-style:none;
    display:flex;
    align-items:center;
    padding:34px 26px;
    font-weight:700;
    font-size:15px;
    letter-spacing:.4px;
    color:#fff;
    text-transform:uppercase;
    cursor:pointer;
    white-space:nowrap;
    background:transparent;
    border:none;
    font-family:inherit;
    transition:background .2s ease, color .2s ease;
  }
  .cat-tab:first-child{
    padding-left:0;
  }
  .cat-tab:first-child.active{
    padding-left:26px;
  }
  .cat-tab + .cat-tab::before{
    content:"";
    width:1px;
    align-self:center;
    height:16px;
    background:rgba(255,255,255,.35);
    margin-right:26px;
  }
  .cat-tab.active{
    background:#fff;
    color:var(--gold);
  }
  .cat-tab:not(.active):hover{
    color:var(--gold);
  }
  .cat-tab-list{
    display:flex;
    list-style:none;
    margin:0;
    padding:0;
    width:100%;
    flex-wrap:wrap;
  }
  .cat-tab a{
    color:inherit;
    text-decoration:none;
  }

  /* ---------- PRODUCT SECTION ---------- */
  .products-section{
    padding:60px 0 90px;
  }
  .section-title{
    font-weight:300;
    font-size:32px;
    color:var(--text-dark);
    margin:0 0 36px;
   
  }
  .product-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:48px 40px;
  }
  .product-card{
    text-decoration:none;
    color:inherit;
  }
  
  @media (max-width: 560px) {
  .hero { min-height: 400px; }
  .hero__title { font-size: 20px; }
}
}

  /* ---------- PRODUCT IMAGE (fixed height, top-anchored crop) ---------- */
  /* Switched from aspect-ratio to an explicit height so every card renders
     with an IDENTICAL box size regardless of the source image's own ratio,
     and object-position:top keeps the top of the product visible instead
     of cropping it (which was cutting into the top sheet + shrinking the
     visible height). Adjust the height values below to match your actual
     exported assets 1:1 if needed. */
  .product-image{
    width:95%;
    height:230px;
    background:#f4f4f4;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    
  }
  .product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
  }
  .product-name{
    font-weight:600;
    font-size:16px;
    color:var(--text-dark);
    margin:0 0 2px;
    line-height:1.4;
  }
  .product-name--label{
    text-transform:uppercase;
    letter-spacing:.4px;
  }
  .product-type{
    font-weight:400;
    font-size:15px;
    color:var(--text-dark);
    margin:0;
    line-height:1.4;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1024px){
    .wrap{padding:0 36px;}
    .cat-bar-inner{padding:0 36px;}
    .product-grid{grid-template-columns:repeat(2, 1fr);gap:36px 28px;}
    .product-image{height:280px;}
    .hero{padding:60px 0 0;}
    .hero-diamonds{background-size:100px 100px;background-position:
      50px 0, 50px 0, 0 0, 0 0,
      0 50px, 0 50px, 50px 50px, 50px 50px;}
  }

  @media (max-width: 640px){
    .wrap{padding:0 20px;}
    .cat-bar-inner{padding:0 20px;}
    .hero{padding:44px 0 0;}
    .hero-inner{padding:0 16px 36px;}
    .hero-inner h1{font-size:22px; margin-bottom:18px;}
    .hero-diamonds{background-size:70px 70px;background-position:
      35px 0, 35px 0, 0 0, 0 0,
      0 35px, 0 35px, 35px 35px, 35px 35px;}
    .cat-tab{padding:14px 16px;font-size:12.5px;}
    .cat-tab:first-child.active{padding-left:16px;}
    .cat-tab + .cat-tab::before{margin-right:16px;}
    .product-grid{grid-template-columns:1fr 1fr;gap:24px 18px;}
    .product-image{height:180px;}
    .section-title{font-size:24px;margin-bottom:24px;}
    .product-name,.product-type{font-size:13px;}
    
     .site-header__logo { 
  grid-row: 1 / span 2; 
  margin-left:0px !important;
}
  }

  @media (max-width: 420px){
    .product-grid{grid-template-columns:1fr;}
    .product-image{height:260px;}
  }

/* ---- Facilities footer (also shared across the 5 category pages) ---- */
:root{
  --footer-gray:#97989a;
}

.facilities-page a{
  text-decoration:none;
  color:inherit;
}

.facilities-page ul{
  list-style:none;
}

.facilities-container{
  max-width:986px;
  margin:0 auto;
  padding:0 24px;
}

/* ===== FACILITIES FOOTER ===== */
.facilities-footer{
  background:var(--footer-gray);
  padding:24px 0 12px;
  min-height:300px;
  display:flex;
  align-items:center;
}

.facilities-footer .facilities-container{width:100%;}

.facilities-footer__grid{
  display:grid;
  grid-template-columns:repeat(6,1fr) auto;
  gap:20px;
  align-items:start;
}

.facilities-footer__col h4{
  font-size:14.5px;
  font-weight:700;
  color:#333;
  margin-bottom:14px;
}

.facilities-footer__col a{
  display:block;
  font-size:13.5px;
  font-weight:300;
  color:#4d4d4f;
  margin-bottom:10px;
}

.facilities-footer__col a:hover{color:#1c1c1c;}

.facilities-footer__logo{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
}

.facilities-footer__logo img{height:40px;width:auto;}

.facilities-footer__bottom{
  margin-top:34px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.35);
  font-size:12.5px;
  font-weight:300;
  color:#4d4d4f;
}

/* ===== RESPONSIVE ===== */
@media (max-width:900px){
  .facilities-footer__grid{
    grid-template-columns:1fr 1fr;
    row-gap:24px;
  }
  .facilities-footer__grid > *:not(:nth-child(2)):not(:nth-child(3)){
    grid-column:1 / -1;
  }
  .facilities-footer__logo{
    grid-column:1 / -1;
    justify-content:flex-start;
    margin-top:10px;
  }
}