/*
Theme Name: Glaremarine Services
Theme URI: https://glaremarineservices.com
Author: Glaremarine Services
Author URI: https://glaremarineservices.com
Description: A custom WordPress theme built for Glaremarine Services, a seafarer/seaman training and review center in Northern Cebu, Philippines. Includes home, about, courses, schedule, gallery, and contact sections designed for maritime review centers, STCW course providers, and OWWA/POEA-related service offices.
Version: 1.0
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glaremarine
Tags: one-column, two-columns, custom-menu, featured-images, translation-ready
*/

/* =====================================================
   ROOT VARIABLES / BRAND COLORS
   Navy Blue + Gold = classic maritime look
===================================================== */
:root{
  --gm-navy: #392C58;
  --gm-navy-light: #4E3D78;
  --gm-navy-dark: #241B38;
  --gm-gold: #17D948;
  --gm-gold-light: #6BF08B;
  --gm-white: #ffffff;
  --gm-offwhite: #f7f8fa;
  --gm-gray: #6c6c6c;
  --gm-border: #e3e7ee;
  --gm-success: #17D948;
  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color:#2b2f36;
  background:var(--gm-white);
  line-height:1.65;
  font-size:16px;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--gm-navy); text-decoration:none; transition:color .2s ease; }
a:hover{ color:var(--gm-gold); }
ul{ margin:0; padding:0; }
h1,h2,h3,h4,h5{
  font-family: var(--font-heading);
  color:var(--gm-navy);
  line-height:1.25;
  margin:0 0 16px;
  font-weight:600;
}
p{ margin:0 0 16px; }
.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.section{ padding:80px 0; }
.section-alt{ background:var(--gm-offwhite); }
.section-navy{ background:var(--gm-navy); color:#dbe4f0; }
.section-navy h2, .section-navy h3{ color:var(--gm-white); }
.text-center{ text-align:center; }
.eyebrow{
  display:inline-block;
  color:var(--gm-gold);
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:10px;
}
.section-head{ max-width:700px; margin:0 auto 50px; text-align:center; }
.section-head p{ color:var(--gm-gray); font-size:17px; }

/* Buttons */
.btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:6px;
  font-weight:600;
  font-family: var(--font-heading);
  font-size:15px;
  cursor:pointer;
  border:2px solid transparent;
  transition:all .2s ease;
}
.btn-gold{ background:var(--gm-gold); color:var(--gm-navy-dark); }
.btn-gold:hover{ background:var(--gm-gold-light); color:var(--gm-navy-dark); }
.btn-outline{ background:transparent; border-color:var(--gm-white); color:var(--gm-white); }
.btn-outline:hover{ background:var(--gm-white); color:var(--gm-navy); }
.btn-navy{ background:var(--gm-navy); color:var(--gm-white); }
.btn-navy:hover{ background:var(--gm-navy-light); color:var(--gm-white); }
.btn-block{ display:block; width:100%; text-align:center; }

/* =====================================================
   TOP BAR
===================================================== */
.gm-topbar{
  background:var(--gm-navy-dark);
  color:#b9c6da;
  font-size:13.5px;
}
.gm-topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:8px;
  padding-bottom:8px;
  flex-wrap:wrap;
  gap:8px;
}
.gm-topbar a{ color:#dbe4f0; }
.gm-topbar a:hover{ color:var(--gm-gold); }
.gm-topbar-left span{ margin-right:22px; }
.gm-topbar-left i{ margin-right:6px; color:var(--gm-gold); }
.gm-topbar-social a{ margin-left:14px; font-size:15px; }

/* =====================================================
   HEADER / NAV
===================================================== */
.gm-header{
  background:var(--gm-white);
  border-bottom:1px solid var(--gm-border);
  position:sticky;
  top:0;
  z-index:999;
}
.gm-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px;
  padding-bottom:14px;
}
.gm-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-heading);
  font-weight:700;
  font-size:22px;
  color:var(--gm-navy);
}
.gm-logo img{ height:48px; width:auto; }
.gm-logo .tagline{
  display:block;
  font-size:11.5px;
  font-weight:500;
  color:var(--gm-gray);
  letter-spacing:.5px;
}
.gm-nav ul{
  display:flex;
  align-items:center;
  list-style:none;
  gap:6px;
}
.gm-nav a{
  display:block;
  padding:10px 16px;
  font-weight:600;
  font-size:15px;
  color:var(--gm-navy);
  border-radius:5px;
}
.gm-nav a:hover, .gm-nav .current-menu-item > a{
  color:var(--gm-navy);
  background:var(--gm-offwhite);
}
.gm-nav-cta{
  background:var(--gm-gold) !important;
  color:var(--gm-navy-dark) !important;
  margin-left:8px;
}
.gm-nav-cta:hover{ background:var(--gm-gold-light) !important; }

.gm-menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.gm-menu-toggle span{
  width:26px; height:3px; background:var(--gm-navy); border-radius:2px;
}

/* =====================================================
   HERO
===================================================== */
.gm-hero{
  position:relative;
  background:linear-gradient(135deg, var(--gm-navy-dark) 0%, var(--gm-navy) 55%, var(--gm-navy-light) 100%);
  color:var(--gm-white);
  overflow:hidden;
}
.gm-hero::after{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(201,162,75,0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,162,75,0.12) 0%, transparent 40%);
  pointer-events:none;
}
.gm-hero .container{
  position:relative;
  z-index:2;
  padding-top:100px;
  padding-bottom:100px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}
.gm-hero h1{
  color:var(--gm-white);
  font-size:44px;
  margin-bottom:20px;
}
.gm-hero h1 span{ color:var(--gm-gold); }
.gm-hero .lead{
  font-size:18px;
  color:#c7d4e8;
  max-width:520px;
  margin-bottom:30px;
}
.gm-hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:36px; }
.gm-hero-stats{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
}
.gm-hero-stats div{ text-align:left; }
.gm-hero-stats strong{
  display:block;
  font-family:var(--font-heading);
  font-size:28px;
  color:var(--gm-gold);
}
.gm-hero-stats span{ font-size:13px; color:#aebdd6; }
.gm-hero-media{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;
  padding:14px;
  backdrop-filter:blur(3px);
}
.gm-hero-media img{ border-radius:8px; }

/* =====================================================
   TRUST BAR
===================================================== */
.gm-trustbar{
  background:var(--gm-white);
  border-bottom:1px solid var(--gm-border);
  padding:22px 0;
}
.gm-trustbar .container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  align-items:center;
}
.gm-trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:600;
  color:var(--gm-navy);
}
.gm-trust-item .dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--gm-gold);
  flex-shrink:0;
}

/* =====================================================
   ABOUT
===================================================== */
.gm-about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}
.gm-about-media{ position:relative; }
.gm-about-media img{ border-radius:12px; }
.gm-about-badge{
  position:absolute;
  bottom:-24px; right:-24px;
  background:var(--gm-navy);
  color:var(--gm-white);
  padding:20px 24px;
  border-radius:10px;
  box-shadow:0 15px 35px rgba(11,37,69,.25);
}
.gm-about-badge strong{ display:block; font-size:26px; color:var(--gm-gold); font-family:var(--font-heading); }
.gm-about-badge span{ font-size:12.5px; color:#c7d4e8; }
.gm-about-list{ list-style:none; margin-top:20px; }
.gm-about-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom:14px;
  font-size:15.5px;
  color:#3a414c;
}
.gm-about-list .check{
  flex-shrink:0;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--gm-gold);
  color:var(--gm-navy-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700;
  margin-top:2px;
}

/* =====================================================
   COURSES / SERVICES
===================================================== */
.gm-grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.gm-card{
  background:var(--gm-white);
  border:1px solid var(--gm-border);
  border-radius:12px;
  padding:32px 28px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.gm-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(11,37,69,.09);
  border-color:transparent;
}
.gm-card-icon{
  width:56px; height:56px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--gm-navy), var(--gm-navy-light));
  color:var(--gm-gold);
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
  margin-bottom:20px;
}
.gm-card h3{ font-size:19px; margin-bottom:10px; }
.gm-card p{ color:var(--gm-gray); font-size:14.5px; margin-bottom:14px; }
.gm-card ul{ list-style:none; margin-bottom:14px; }
.gm-card ul li{
  font-size:13.5px;
  color:#3a414c;
  padding:5px 0 5px 20px;
  position:relative;
}
.gm-card ul li::before{
  content:"—";
  position:absolute; left:0; color:var(--gm-gold); font-weight:700;
}
.gm-card-link{ font-size:14px; font-weight:700; color:var(--gm-navy); }
.gm-card-featured{ border:2px solid var(--gm-gold); position:relative; }
.gm-card-tag{
  position:absolute; top:-13px; left:28px;
  background:var(--gm-gold); color:var(--gm-navy-dark);
  font-size:11.5px; font-weight:700; letter-spacing:.5px;
  padding:4px 12px; border-radius:20px; text-transform:uppercase;
}

/* =====================================================
   PROCESS / STEPS
===================================================== */
.gm-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  counter-reset:step;
}
.gm-step{ text-align:center; position:relative; padding:0 10px; }
.gm-step-num{
  width:52px; height:52px;
  border-radius:50%;
  background:var(--gm-navy);
  color:var(--gm-gold);
  font-family:var(--font-heading);
  font-weight:700;
  font-size:20px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px;
}
.gm-step h4{ font-size:16.5px; margin-bottom:8px; }
.gm-step p{ font-size:13.5px; color:var(--gm-gray); }

/* =====================================================
   WHY US / FEATURES (icon row)
===================================================== */
.gm-grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.gm-feature{ text-align:center; padding:10px; }
.gm-feature-icon{
  width:64px; height:64px;
  margin:0 auto 16px;
  border-radius:50%;
  background:var(--gm-offwhite);
  border:2px solid var(--gm-gold);
  display:flex; align-items:center; justify-content:center;
  font-size:26px;
  color:var(--gm-navy);
}
.gm-feature h4{ font-size:16px; }
.gm-feature p{ font-size:13.5px; color:var(--gm-gray); }

/* =====================================================
   TESTIMONIALS
===================================================== */
.gm-test-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.gm-test-card{
  background:var(--gm-white);
  border-radius:12px;
  padding:28px;
  border:1px solid var(--gm-border);
}
.gm-test-stars{ color:var(--gm-gold); margin-bottom:14px; letter-spacing:2px; }
.gm-test-card p{ font-size:14.5px; color:#3a414c; font-style:italic; }
.gm-test-person{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.gm-test-avatar{
  width:44px; height:44px; border-radius:50%;
  background:var(--gm-navy); color:var(--gm-gold);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-family:var(--font-heading);
  flex-shrink:0;
}
.gm-test-person strong{ display:block; font-size:14px; color:var(--gm-navy); }
.gm-test-person span{ font-size:12.5px; color:var(--gm-gray); }

/* =====================================================
   PASSERS WALL
===================================================== */
.gm-passers-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.gm-passer-card{
  background:var(--gm-white);
  border:1px solid var(--gm-border);
  border-radius:14px;
  padding:22px 18px;
  text-align:center;
  transition:transform .2s ease, box-shadow .2s ease;
  position:relative;
}
.gm-passer-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 34px rgba(11,37,69,.08);
}
.gm-passer-photo{
  width:96px; height:96px;
  border-radius:50%;
  margin:0 auto 16px;
  overflow:hidden;
  border:3px solid var(--gm-gold);
  background:var(--gm-offwhite);
  display:flex; align-items:center; justify-content:center;
}
.gm-passer-photo img{ width:100%; height:100%; object-fit:cover; }
.gm-passer-photo .initials{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:26px;
  color:var(--gm-navy);
}
.gm-passer-card h4{ font-size:16px; margin-bottom:6px; }
.gm-passer-exam{
  display:inline-block;
  background:var(--gm-navy);
  color:var(--gm-gold);
  font-size:11.5px;
  font-weight:700;
  padding:4px 12px;
  border-radius:20px;
  margin-bottom:10px;
}
.gm-passer-meta{ font-size:12.5px; color:var(--gm-gray); }
.gm-passer-badge{
  position:absolute; top:14px; right:14px;
  color:var(--gm-gold);
  font-size:20px;
}
.gm-passers-cta{ text-align:center; margin-top:36px; }
.gm-passers-note{
  max-width:640px; margin:-30px auto 40px; text-align:center;
  font-size:13px; color:var(--gm-gray);
}

/* =====================================================
   SCHEDULE / CTA STRIP
===================================================== */
.gm-cta-strip{
  background:linear-gradient(120deg, var(--gm-navy-dark), var(--gm-navy));
  color:var(--gm-white);
  border-radius:16px;
  padding:50px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.gm-cta-strip h3{ color:var(--gm-white); margin-bottom:8px; font-size:24px; }
.gm-cta-strip p{ color:#c7d4e8; margin-bottom:0; }

/* =====================================================
   FAQ (accordion, no-JS-required fallback via <details>)
===================================================== */
.gm-faq{ max-width:820px; margin:0 auto; }
.gm-faq details{
  background:var(--gm-white);
  border:1px solid var(--gm-border);
  border-radius:10px;
  padding:18px 22px;
  margin-bottom:14px;
}
.gm-faq summary{
  cursor:pointer;
  font-weight:600;
  font-family:var(--font-heading);
  color:var(--gm-navy);
  font-size:15.5px;
  list-style:none;
  position:relative;
  padding-right:24px;
}
.gm-faq summary::-webkit-details-marker{ display:none; }
.gm-faq summary::after{
  content:"+";
  position:absolute; right:0; top:0;
  font-size:20px; color:var(--gm-gold); font-weight:700;
}
.gm-faq details[open] summary::after{ content:"–"; }
.gm-faq details p{ margin-top:12px; color:var(--gm-gray); font-size:14.5px; }

/* =====================================================
   CONTACT
===================================================== */
.gm-contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
}
.gm-contact-info-item{
  display:flex; gap:16px; margin-bottom:26px;
}
.gm-contact-icon{
  width:46px; height:46px; border-radius:10px;
  background:var(--gm-navy); color:var(--gm-gold);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; font-size:18px;
}
.gm-contact-info-item strong{ display:block; color:var(--gm-navy); font-size:15px; }
.gm-contact-info-item span, .gm-contact-info-item a{ font-size:14px; color:var(--gm-gray); }
.gm-map{
  border-radius:12px; overflow:hidden; border:1px solid var(--gm-border);
  margin-top:20px;
}
.gm-map iframe{ width:100%; height:260px; border:0; display:block; }

.gm-form{
  background:var(--gm-white);
  border:1px solid var(--gm-border);
  border-radius:14px;
  padding:36px;
}
.gm-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.gm-form label{
  display:block; font-size:13.5px; font-weight:600; color:var(--gm-navy);
  margin-bottom:6px;
}
.gm-form input, .gm-form select, .gm-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--gm-border);
  border-radius:7px;
  font-family:var(--font-body);
  font-size:14.5px;
  margin-bottom:18px;
  background:var(--gm-offwhite);
}
.gm-form input:focus, .gm-form select:focus, .gm-form textarea:focus{
  outline:none; border-color:var(--gm-gold); background:var(--gm-white);
}
.gm-form textarea{ resize:vertical; min-height:110px; }

/* =====================================================
   FOOTER
===================================================== */
.gm-footer{
  background:var(--gm-navy-dark);
  color:#9fb0c9;
  padding-top:70px;
}
.gm-footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.gm-footer h4{
  color:var(--gm-white);
  font-size:15.5px;
  margin-bottom:20px;
  letter-spacing:.5px;
}
.gm-footer-logo{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-heading); font-weight:700; font-size:19px;
  color:var(--gm-white); margin-bottom:14px;
}
.gm-footer p{ font-size:13.5px; color:#8ea0ba; }
.gm-footer ul{ list-style:none; }
.gm-footer ul li{ margin-bottom:10px; }
.gm-footer ul a{ color:#9fb0c9; font-size:13.5px; }
.gm-footer ul a:hover{ color:var(--gm-gold); }
.gm-footer-social{ display:flex; gap:10px; margin-top:16px; }
.gm-footer-social a{
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
  color:var(--gm-white); font-size:14px;
}
.gm-footer-social a:hover{ background:var(--gm-gold); color:var(--gm-navy-dark); }
.gm-footer-bottom{
  padding:22px 0;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:10px;
  font-size:12.5px;
  color:#7188a5;
}
.gm-footer-bottom a{ color:#7188a5; }

/* =====================================================
   PAGE HEADER (inner pages)
===================================================== */
.gm-page-header{
  background:linear-gradient(120deg, var(--gm-navy-dark), var(--gm-navy));
  color:var(--gm-white);
  padding:60px 0;
  text-align:center;
}
.gm-page-header h1{ color:var(--gm-white); margin-bottom:10px; }
.gm-breadcrumb{ font-size:13.5px; color:#aebdd6; }
.gm-breadcrumb a{ color:#c7d4e8; }

/* =====================================================
   BLOG / SINGLE / ARCHIVE
===================================================== */
.gm-post-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:50px;
}
.gm-post-card{
  background:var(--gm-white);
  border:1px solid var(--gm-border);
  border-radius:12px;
  overflow:hidden;
  margin-bottom:30px;
}
.gm-post-card img{ width:100%; height:220px; object-fit:cover; }
.gm-post-card-body{ padding:26px; }
.gm-post-meta{ font-size:12.5px; color:var(--gm-gray); margin-bottom:10px; }
.gm-post-meta span{ margin-right:14px; }
.gm-widget{
  background:var(--gm-white); border:1px solid var(--gm-border);
  border-radius:12px; padding:24px; margin-bottom:24px;
}
.gm-widget h4{ font-size:15px; border-bottom:2px solid var(--gm-gold); padding-bottom:10px; }
.entry-content{ font-size:16px; color:#2b2f36; }
.entry-content h2, .entry-content h3{ margin-top:30px; }
.entry-content img{ border-radius:10px; margin:20px 0; }
.gm-pagination{ display:flex; gap:8px; margin-top:20px; }
.gm-pagination a, .gm-pagination span{
  padding:8px 14px; border:1px solid var(--gm-border); border-radius:6px; font-size:13.5px;
}

/* =====================================================
   COMMENTS
===================================================== */
.comment-list{ list-style:none; margin-top:30px; }
.comment-body{
  background:var(--gm-offwhite);
  border-radius:10px;
  padding:20px;
  margin-bottom:16px;
}
.comment-author{ font-weight:700; color:var(--gm-navy); font-size:14.5px; }
.comment-metadata{ font-size:12px; color:var(--gm-gray); margin-bottom:8px; }

/* =====================================================
   404
===================================================== */
.gm-404{ text-align:center; padding:100px 0; }
.gm-404 h1{ font-size:100px; color:var(--gm-gold); margin-bottom:0; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px){
  .gm-nav{ display:none; }
  .gm-menu-toggle{ display:flex; }
  .gm-hero .container{ grid-template-columns:1fr; text-align:center; }
  .gm-hero-cta, .gm-hero-stats{ justify-content:center; }
  .gm-hero-stats div{ text-align:center; }
  .gm-about-grid, .gm-contact-grid, .gm-post-grid{ grid-template-columns:1fr; }
  .gm-grid-3, .gm-grid-4, .gm-passers-grid{ grid-template-columns:repeat(2,1fr); }
  .gm-steps{ grid-template-columns:repeat(2,1fr); }
  .gm-footer-grid{ grid-template-columns:1fr 1fr; }
  .gm-about-badge{ position:static; margin-top:20px; display:inline-block; }
}
@media (max-width: 600px){
  .gm-grid-3, .gm-grid-4, .gm-steps, .gm-passers-grid{ grid-template-columns:1fr; }
  .gm-footer-grid{ grid-template-columns:1fr; }
  .gm-hero h1{ font-size:32px; }
  .section{ padding:56px 0; }
  .gm-form-row{ grid-template-columns:1fr; }
  .gm-topbar-left span{ display:block; margin-bottom:4px; }
  .gm-cta-strip{ padding:36px 26px; text-align:center; justify-content:center; }
}

/* Mobile nav (JS toggled) */
.gm-nav.gm-nav-open{
  display:block;
  position:absolute;
  top:100%; left:0; right:0;
  background:var(--gm-white);
  border-top:1px solid var(--gm-border);
  box-shadow:0 10px 20px rgba(0,0,0,.06);
}
.gm-nav.gm-nav-open ul{
  flex-direction:column;
  align-items:stretch;
  padding:10px 24px 20px;
}
.gm-nav.gm-nav-open a{ padding:14px 6px; border-bottom:1px solid var(--gm-border); }
