/*
 * Guyana Global Connect - Base Styles
 * Font: Merriweather Sans
 * Colors from design notes
 *  Red: #ef3340
 *  Gold: #ffd100
 *  Green: #009739
 *  Light Green: #e5f5eb
 */

:root {
    --ggc-red: #ef3340;
    --ggc-gold: #ffd100;
    --ggc-green: #009739;
    --ggc-light-green: #e5f5eb;
    --ggc-black: #000000;
    --ggc-white: #ffffff;

    /* Package color tokens from design notes */
    --ggc-silver-border: #7c7c7c;
    --ggc-silver-title: #d3d3d3;
    --ggc-silver-bg: #efefef;

    --ggc-gold-border: #ffd100;
    --ggc-gold-title: #ffe880;
    --ggc-gold-bg: #fffae5;

    --ggc-plat-border: #cccccc;
    --ggc-plat-title: #e5e5e5;
    --ggc-plat-bg: #f7f7f7;
}

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

html,
body {
    width: 100%;
    overflow-x: visible;
}

body {
    font-family: 'Merriweather Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ggc-black);
    background-color: var(--ggc-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--ggc-green);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

/* Home link (logo + title) should look like plain branding, not green link */
.ggc-home-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.ggc-home-link:hover,
.ggc-home-link:focus {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Branding ------------------------------------------------------- */

.ggc-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.ggc-header-blur {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    /* Very strong white for max readability */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
    border-bottom: 2px solid rgba(0, 158, 73, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header bands: modern glassmorphism approach */
.ggc-branding-bar {
    position: relative;
    padding: 12px 0;
    /* tighter padding for modern feel */
    z-index: 1;
}

.ggc-branding-bar::before {
    content: none;
}

.ggc-branding-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Mobile hamburger toggle */
.ggc-nav-toggle {
    display: none;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.ggc-nav-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.ggc-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background-color: var(--ggc-black);
    border-radius: 2px;
}

.ggc-logo-block {
    flex-shrink: 0;
}

.ggc-home-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: var(--ggc-black);
}

.ggc-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.ggc-title-text h1 {
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    color: #1a1c1e;
}

.ggc-title-text p {
    font-size: 9px;
    line-height: 1.2;
    font-weight: 400;
    color: #444a51;
    margin: 2px 0 0;
    max-width: 200px;
    letter-spacing: 0.02em;
}

/* Main navigation */
.ggc-main-nav {
    display: block;
}

.ggc-main-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.ggc-main-menu li {
    position: relative;
}

.ggc-main-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ggc-black);
    text-decoration: none !important;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.ggc-main-menu li a i {
    font-size: 16px;
    color: #444a51;
    transition: color 0.2s;
}

.ggc-main-menu li a span {
    /* Removed text-transform: uppercase per user request */
    letter-spacing: 0.02em;
}

.ggc-main-menu li a:hover,
.ggc-main-menu li a.is-active {
    background: rgba(239, 51, 64, 0.05);
    /* Very light red tint */
    color: var(--ggc-red);
}

.ggc-main-menu li a:hover i,
.ggc-main-menu li a.is-active i {
    color: var(--ggc-red);
}

.ggc-mobile-menu li a.is-active {
    color: var(--ggc-red) !important;
    background: rgba(239, 51, 64, 0.03);
}

.ggc-mobile-menu li a.is-active i {
    color: var(--ggc-red) !important;
}

/* Special styling for the Login button */
.ggc-main-menu li a.ggc-nav-btn {
    background: var(--ggc-green);
    color: white !important;
    margin-left: 8px;
    box-shadow: 0 4px 12px rgba(0, 158, 73, 0.2);
}

.ggc-main-menu li a.ggc-nav-btn i {
    color: white;
}

.ggc-main-menu li a.ggc-nav-btn:hover {
    background: #008a40;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 158, 73, 0.3);
}

.ggc-main-menu li a.ggc-nav-btn.is-portal {
    background: #1e293b;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}

.ggc-main-menu li a.ggc-nav-btn.is-portal:hover {
    background: #0f172a;
    box-shadow: 0 6px 15px rgba(30, 41, 59, 0.3);
}

.ggc-nav-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 10px;
}

.ggc-nav-login {
    color: #444a51 !important;
}

.ggc-nav-login:hover {
    color: var(--ggc-green) !important;
    background: rgba(0, 151, 57, 0.05) !important;
}

/* Mobile slide-in navigation (off-canvas) --------------------------------- */

.ggc-mobile-nav-overlay {
    display: none;
    /* enabled via media query */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 1500;
}

.ggc-mobile-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.ggc-mobile-nav {
    display: none;
    /* enabled via media query */
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    max-width: 85vw;
    background: var(--ggc-white);
    transform: translateX(-100%);
    transition: transform 0.25s ease-in-out;
    z-index: 1510;
    box-shadow: 4px 0 18px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.ggc-mobile-nav.is-open {
    transform: translateX(0);
}

body.ggc-mobile-nav-open {
    overflow: hidden;
}

.ggc-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #eeeeee;
}

.ggc-mobile-nav-brand {
    font-weight: 700;
    font-size: 14px;
    color: var(--ggc-black);
    text-decoration: none;
}

.ggc-mobile-nav-close {
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--ggc-black);
}

.ggc-mobile-menu {
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

.ggc-mobile-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f1f1;
    color: var(--ggc-black);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

.ggc-mobile-menu li a i {
    width: 20px;
    text-align: center;
    color: var(--ggc-black);
}

.ggc-mobile-menu li a:hover,
.ggc-mobile-menu li a:focus {
    color: var(--ggc-red);
}

.ggc-mobile-menu li a:hover i,
.ggc-mobile-menu li a:focus i {
    color: var(--ggc-red);
}

/* Legal pages -------------------------------------------------------------- */

.ggc-legal-shell {
    background: var(--ggc-white);
    padding: 22px 0 34px;
}

.ggc-legal-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.7;
}

.ggc-legal-content h2 {
    font-size: 16px;
    margin: 18px 0 8px;
}

.ggc-legal-content p {
    margin-bottom: 10px;
}

.ggc-legal-content ul {
    margin: 6px 0 12px 18px;
}

/* Hero Banner ------------------------------------------------------------- */

/* Desktop / tablet hero - image with overlaid CTAs + round logo */
.ggc-hero {
    position: relative;
    height: 547px;
    overflow: hidden;
}

.ggc-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ggc-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.ggc-hero-slide.is-active {
    opacity: 1;
}

.ggc-hero::before {
    /* subtle dark overlay for contrast with text/buttons */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
}

.ggc-hero-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 90px;
    padding-bottom: 90px;
}

.ggc-hero-content {
    position: relative;
    margin-left: auto;
    /* push CTAs to the right edge of container */
    margin-right: 0;
    max-width: 460px;
    /* roughly the width of the yellow bars */
}

.ggc-hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* right-align text so bars "start" at right */
    gap: 12px;
}

.ggc-cta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--ggc-gold);
    color: var(--ggc-black);
    font-weight: 700;
    font-size: 7px;
    /* smaller button text per design */
    padding: 6px 18px;
    border-radius: 999px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    min-width: 360px;
    /* create long horizontal bar */
    max-width: 460px;
}

/* Hero CTA-specific sizing and icon offset */
.ggc-hero-ctas .ggc-cta {
    min-width: 430px;
    max-width: 540px;
}

.ggc-hero-ctas .ggc-cta,
.ggc-hero-mobile-ctas .ggc-cta {
    padding-left: 26px;
    /* shift icon to the right a bit */
}

.ggc-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    /* smaller icon circle */
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: var(--ggc-black);
    color: var(--ggc-gold);
}

.ggc-cta-icon i {
    font-size: 14px;
    /* smaller icon */
}

/* Increase hero CTA label size on home page (desktop + mobile) */
.ggc-hero-ctas .ggc-cta-text,
.ggc-hero-mobile-ctas .ggc-cta-text {
    font-size: 13px;
}

.ggc-cta:hover,
.ggc-cta:focus {
    background-color: #ffdf40;
}

.ggc-hero-logo-wrap {
    position: absolute;
    z-index: 2;
    /* ensure logo rests on top of buttons */
}

.ggc-hero-logo {
    width: 159px;
    height: auto;
}

/* About the Directory page ----------------------------------------------- */

.ggc-about-banner-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--ggc-white);
    padding: 60px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.ggc-about-banner-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ggc-about-banner-bar h1 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.ggc-about-intro {
    padding: 40px 0 60px;
    font-size: 16px;
    line-height: 1.8;
}

/* Plans table */
.ggc-plans {
    background-color: var(--ggc-white);
    padding-bottom: 24px;
}

/* Modern Plan Cards */
.ggc-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.ggc-plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.ggc-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 158, 73, 0.1);
}

.ggc-plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.ggc-plan-header h2 {
    font-size: 24px;
    color: #1a1c1e;
    margin-bottom: 8px;
}

.ggc-plan-body {
    flex-grow: 1;
    margin-bottom: 30px;
}

.ggc-plan-body ul {
    list-style: none;
    padding: 0;
}

.ggc-plan-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.ggc-plan-body li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--ggc-green);
    font-size: 16px;
}

.ggc-plan-footer {
    text-align: center;
}

/* Plan Specific Accents */
.ggc-plan-silver {
    border-top: 8px solid #94a3b8;
}

.ggc-plan-gold {
    border-top: 8px solid #fbbf24;
    background: linear-gradient(to bottom, #fffdf0, #ffffff);
}

.ggc-plan-platinum {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--ggc-white);
    border-top: 8px solid #e2e8f0;
}

.ggc-plan-platinum .ggc-plan-header h2,
.ggc-plan-platinum .ggc-plan-header p {
    color: var(--ggc-white);
}

.ggc-plan-platinum .ggc-plan-body p,
.ggc-plan-platinum .ggc-plan-body li {
    color: rgba(255, 255, 255, 0.8);
}

.ggc-plan-platinum .ggc-plan-body li::before {
    color: #f1f5f9;
}

/* Featured Listings */
.ggc-featured-listings {
    position: relative;
    overflow: hidden;
}

.ggc-featured-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ggc-featured-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--ggc-green), #036b2b);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ggc-featured-card:hover::after {
    transform: scaleY(1);
}

.ggc-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 158, 73, 0.1);
    border-color: rgba(0, 158, 73, 0.2);
}

/* Modal + form helpers ----------------------------------------------- */

.ggc-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.ggc-modal-open {
    display: block;
}

.ggc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.ggc-modal-dialog {
    position: relative;
    max-width: 520px;
    margin: 60px auto;
    background: #ffffff;
    padding: 20px 22px 18px;
    border-radius: 6px;
}

.ggc-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

.ggc-form-group {
    margin-bottom: 10px;
}

.ggc-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ggc-form-group input[type="text"],
.ggc-form-group textarea,
.ggc-form-group input[type="file"] {
    width: 100%;
    font-size: 13px;
    padding: 6px 8px;
    border: 1px solid #cccccc;
}

.ggc-form-checks label {
    display: block;
    font-size: 13px;
    font-weight: 400;
}

.ggc-form-actions {
    margin-top: 12px;
    text-align: right;
}

.ggc-form-actions button {
    padding: 6px 16px;
    background-color: var(--ggc-green);
    color: var(--ggc-white);
    border: none;
    font-weight: 600;
}

/* Directory CTA row */
.ggc-directory-cta-row {
    background-color: var(--ggc-white);
    /* white background like screenshot */
    padding: 12px 0;
}

.ggc-directory-ctas {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    /* clear spacing between pills */
}

.ggc-directory-cta {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 6px 18px;
    border-radius: 999px;
    /* yellow pill shape */
    background-color: var(--ggc-gold);
    color: var(--ggc-black);
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    /* Match normal casing in labels */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.ggc-directory-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    /* black circle for icon */
    background-color: var(--ggc-black);
    color: var(--ggc-gold);
}

.ggc-directory-cta-icon i {
    font-size: 16px;
}

.ggc-directory-cta:hover,
.ggc-directory-cta:focus {
    text-decoration: none;
    background-color: #ffdf40;
    /* lighter gold on hover */
}

/* Featured Listings */
.ggc-featured-listings {
    margin-top: 24px;
    margin-bottom: 24px;
    /* white horizontal space before Newsletter */
}

/* Contact page ------------------------------------------------------------ */

.ggc-form-status {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.4;
}

.ggc-form-status--success {
    background: #e5f5eb;
    border: 1px solid #cfe5da;
    color: #0b5f2a;
}

.ggc-contact-shell {
    background-color: var(--ggc-white);
    padding: 16px 0 24px;
}

.ggc-contact-container {
    padding-top: 0;
    padding-bottom: 0;
}

.ggc-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    grid-template-areas: "map right";
    gap: 24px;
    align-items: stretch;
}

.ggc-contact-map {
    grid-area: map;
}

.ggc-contact-right {
    grid-area: right;
}

.ggc-contact-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.ggc-contact-right {
    display: flex;
    flex-direction: column;
    background: #e5f5eb;
    border: 1px solid #e5f5eb;
}

.ggc-contact-info {
    background: #ffffff;
    padding: 14px 18px;
    border-bottom: 1px solid #e5f5eb;
    text-align: center;
}

.ggc-contact-info p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.ggc-contact-email,
.ggc-contact-phone {
    margin-right: 16px;
}

.ggc-contact-socials a {
    margin-right: 6px;
    color: #000000;
}

.ggc-contact-section-header {
    padding: 10px 16px;
    font-weight: 700;
    text-align: center;
}

.ggc-contact-section-header--green {
    background-color: var(--ggc-green);
    color: var(--ggc-white);
}

.ggc-contact-form {
    padding: 16px;
    border-bottom: 16px solid #e5f5eb;
}

.ggc-contact-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.ggc-contact-field input,
.ggc-contact-field textarea {
    width: 100%;
    padding: 8px;
}

.ggc-contact-message-field {
    margin-bottom: 12px;
}

.ggc-contact-actions {
    text-align: right;
}

.ggc-contact-send-button {
    background-color: var(--ggc-green);
    color: var(--ggc-white);
    border: none;
    padding: 6px 24px;
    cursor: pointer;
}

.ggc-contact-newsletter {
    padding: 16px;
}

.ggc-contact-newsletter p {
    margin-top: 0;
    font-size: 8px;
}

.ggc-contact-newsletter-form {
    max-width: 480px;
    margin: 0 auto;
}

/* Directory page ---------------------------------------------------------- */
.ggc-directory-banner-bar {
    background-color: var(--ggc-red);
    color: var(--ggc-white);
    padding: 10px 0;
}

.ggc-directory-banner-bar h1 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.ggc-directory-shell {
    background-color: var(--ggc-white);
    padding: 10px 0 24px;
}

.ggc-directory-toolbar {
    padding: 14px 0 8px;
}

.ggc-directory-toolbar-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    /* keep A-Z close to search */
    gap: 8px;
    margin-bottom: 4px;
}

/* Search-businesses page: center the toolbar and widen the input */
.ggc-sb-toolbar-top {
    justify-content: center;
}

.ggc-sb-toolbar-top .ggc-directory-search {
    flex: 1 1 auto;
    max-width: 680px;
}

.ggc-sb-toolbar-top .ggc-directory-search input[type="text"] {
    flex: 1 1 auto;
    width: auto;
    max-width: 100%;
    font-size: 14px;
    padding: 8px 12px;
}

.ggc-directory-search {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ggc-directory-search input[type="text"] {
    width: 220px;
    padding: 4px 6px;
    border: 1px solid #cccccc;
    font-size: 12px;
}

.ggc-directory-search-button {
    padding: 4px 10px;
    font-size: 12px;
    background-color: var(--ggc-green);
    color: var(--ggc-white);
    border: none;
}

.ggc-directory-az {
    font-size: 11px;
}

.ggc-directory-az a {
    margin-right: 3px;
}

.ggc-directory-filters-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.ggc-directory-filter-clear {
    padding: 3px 8px;
    font-size: 10px;
    background-color: var(--ggc-red);
    color: var(--ggc-white);
    border: none;
}

.ggc-directory-filter-pill {
    padding: 3px 8px;
    font-size: 10px;
    background-color: var(--ggc-green);
    color: var(--ggc-white);
    border: none;
}

.ggc-directory-grid {
    margin-top: 12px;
    background-color: var(--ggc-white);
    /* white background behind cards */
    padding: 16px 0 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ggc-directory-card {
    background-color: #e5f5eb;
    /* light green cards */
    padding: 10px 12px 12px;
    font-size: 12px;
    border: 1px solid #cfe5da;
    border-radius: 6px;
    /* rounded corners */
}

.ggc-directory-card h3 {
    font-size: 13px;
    margin-bottom: 2px;
}

.ggc-directory-card-sub {
    font-style: italic;
    margin-bottom: 4px;
}

.ggc-directory-card-meta {
    font-size: 11px;
    margin-bottom: 6px;
}

.ggc-directory-card a {
    font-size: 11px;
    font-weight: 600;
}

/* Directory profile (detail) ---------------------------------------------- */
.ggc-profile-shell {
    background-color: var(--ggc-white);
    padding: 18px 0 28px;
}

.ggc-profile-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ggc-profile-title {
    font-size: 18px;
    font-weight: 700;
}

.ggc-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ggc-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
}

.ggc-badge-plan-silver {
    background-color: var(--ggc-silver-bg);
    border: 1px solid var(--ggc-silver-border);
}

.ggc-badge-plan-gold {
    background-color: var(--ggc-gold-bg);
    border: 1px solid var(--ggc-gold-border);
}

.ggc-badge-plan-platinum {
    background-color: var(--ggc-plat-bg);
    border: 1px solid var(--ggc-plat-border);
}

.ggc-badge-verified {
    background-color: var(--ggc-green);
    color: var(--ggc-white);
}

.ggc-badge-featured {
    background-color: var(--ggc-gold);
    color: var(--ggc-black);
}

.ggc-profile-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
}

.ggc-profile-card {
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #d8e6de;
    padding: 12px 14px 14px;
    font-size: 12px;
}

.ggc-profile-card h3 {
    font-size: 13px;
    margin-bottom: 6px;
}

.ggc-profile-card p {
    margin-bottom: 6px;
}

.ggc-profile-meta-list {
    list-style: none;
    padding-left: 0;
    font-size: 12px;
}

.ggc-profile-meta-list li {
    margin-bottom: 4px;
}

.ggc-profile-analytics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.ggc-profile-analytics .ggc-profile-card {
    text-align: center;
}

.ggc-profile-analytics-stat {
    font-size: 18px;
    font-weight: 700;
}

.ggc-profile-back {
    font-size: 12px;
    margin-bottom: 10px;
}

.ggc-directory-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin: 10px 0 0;
}

.ggc-directory-pagination a {
    font-weight: 600;
}

/* Add Your Business CTA styled like filter buttons on Directory */
.ggc-directory-add-cta {
    padding: 3px 10px;
    font-size: 10px;
    border-radius: 999px;
    background-color: var(--ggc-gold);
    color: var(--ggc-black);
    box-shadow: none;
}

.ggc-directory-add-cta .ggc-cta-icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.ggc-directory-add-cta .ggc-cta-text {
    font-size: 10px;
}

.ggc-featured-header {
    background-color: var(--ggc-green);
    color: var(--ggc-white);
    padding: 8px 0;
}

.ggc-featured-header h2 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.ggc-featured-grid {
    background-color: var(--ggc-green);
    padding: 16px 20px 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* Featured listings slider: show one grid (3 cards) at a time */
.ggc-featured-slider .ggc-featured-grid {
    display: none;
}

.ggc-featured-slider .ggc-featured-grid.is-active {
    display: grid;
}

.ggc-featured-card {
    background-color: #e5f5eb;
    /* light green inner area */
    padding: 14px 14px 16px;
    font-size: 13px;
    border: 1px solid #cfe5da;
    /* subtle inner box border like screenshot */
}

.ggc-featured-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.ggc-featured-sub {
    font-style: italic;
    margin-bottom: 4px;
}

.ggc-featured-meta {
    font-size: 12px;
    margin-bottom: 8px;
}

.ggc-featured-link {
    font-size: 12px;
    font-weight: 600;
}

.ggc-featured-dots {
    background-color: var(--ggc-green);
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.ggc-featured-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--ggc-white);
    /* outer dots */
}

.ggc-featured-dots .dot.active {
    background-color: var(--ggc-red);
    /* center active dot, like slider */
}

/* Newsletter */
.ggc-newsletter-header {
    background-color: var(--ggc-green);
    color: var(--ggc-white);
    padding: 8px 0;
}

.ggc-newsletter-header h2 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.ggc-newsletter-content {
    background-color: #f2f2f2;
    /* light grey panel like screenshot */
    padding: 18px 20px 24px;
    font-size: 13px;
    line-height: 1.6;
}

.ggc-newsletter-form {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    /* center the email field + button */
}

.ggc-newsletter-form input[type="email"] {
    flex: 0 0 260px;
    /* reduce and fix the width of the email box */
    max-width: 100%;
    padding: 6px 8px;
    border: 1px solid #cccccc;
}

.ggc-newsletter-form button {
    padding: 6px 16px;
    background-color: var(--ggc-green);
    color: var(--ggc-white);
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transform: scale(1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.ggc-newsletter-form button:hover,
.ggc-newsletter-form button:focus {
    transform: scale(1.06);
    /* zoom in */
    background-color: #00b34a;
    /* slightly brighter green */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.ggc-newsletter-form button:active {
    transform: scale(0.97);
    /* slight zoom out on click */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.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;
}

/* Mobile hero (separate layout) ------------------------------------------ */

.ggc-hero-mobile {
    display: none;
    /* hidden by default; shown on small screens */
}

.ggc-hero-mobile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ggc-hero-mobile-panel {
    background-color: var(--ggc-white);
    padding: 12px 0 16px;
}

.ggc-hero-mobile-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ggc-hero-mobile-logo img {
    width: 72px;
    /* smaller logo for tight mobile widths */
    height: auto;
}

.ggc-hero-mobile-ctas {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.ggc-hero-mobile-ctas .ggc-cta {
    min-width: 0;
    /* allow buttons to shrink on small screens */
    width: 100%;
    font-size: 6px;
    /* slightly smaller text on tight mobile */
}

.ggc-hero-mobile-note {
    margin-top: 10px;
    font-size: 10px;
    text-align: center;
}

/* About Us page ----------------------------------------------------------- */

.ggc-aboutus-main {
    background-color: var(--ggc-white);
    padding: 24px 0 32px;
}

.ggc-aboutus-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    /* left: image, right: text + callout */
    grid-template-areas:
        "photo text"
        "photo callout";
    gap: 0;
    /* remove space between image and text */
    align-items: flex-start;
}

.ggc-aboutus-right {
    grid-area: text;
}

.ggc-aboutus-photo {
    grid-area: photo;
}

.ggc-aboutus-callout {
    grid-area: callout;
}

.ggc-aboutus-right {
    display: flex;
    flex-direction: column;
}

.ggc-aboutus-photo img {
    display: block;
    max-height: 380px;
    /* reduce portrait height */
    width: auto;
    height: auto;
    margin: 0 auto;
}

.ggc-aboutus-text {
    font-size: 8px;
    line-height: 1.6;
}

.ggc-aboutus-text p {
    margin-bottom: 10px;
}

.ggc-aboutus-text ul {
    margin: 8px 0 10px 18px;
    font-size: 8px;
}

.ggc-aboutus-text li {
    margin-bottom: 4px;
}

.ggc-aboutus-signoff {
    margin-top: 12px;
}

.ggc-aboutus-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-top: 12px;
    /* bring logo + buttons closer under the text */
    margin-bottom: 6px;
}

.ggc-aboutus-logo-wrap {
    margin: 0;
}

.ggc-aboutus-logo {
    width: 80px;
    /* reduced by half */
    max-width: 100%;
    height: auto;
}

.ggc-aboutus-ctas {
    display: flex;
    gap: 26px;
}

/* Smaller button text on About Us CTAs */
.ggc-aboutus-ctas .ggc-cta-text {
    font-size: 9px;
}

/* Slightly shorter buttons on About Us CTAs */
.ggc-aboutus-ctas .ggc-cta {
    padding: 4px 16px;
}

.ggc-aboutus-ctas .ggc-cta-icon {
    width: 24px;
    height: 24px;
}

.ggc-aboutus-note {
    text-align: center;
    font-size: 12px;
}

@media (max-width: 900px) {
    .ggc-aboutus-layout {
        grid-template-columns: 1fr;
    }

    .ggc-aboutus-photo {
        max-width: 340px;
        margin: 0 auto 16px;
    }

    .ggc-aboutus-bottom {
        flex-direction: column;
    }
}

/* Quotes ------------------------------------------------------------------ */

.ggc-quotes {
    background-color: var(--ggc-white);
    /* section background now white */
    padding: 40px 0 30px;
}

.ggc-quotes-inner {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    /* 6 cards per row on desktop */
    gap: 14px;
    /* space between cards */
    align-items: stretch;
    /* make all cards in a row equal height */
}

.ggc-quote-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 8px 8px;
    font-size: 8px;
    line-height: 1.4;
    background-color: var(--ggc-light-green);
    /* card background uses former section color */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.ggc-quote-card::after {
    /* small pointer under card like a comment bubble */
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--ggc-light-green);
    /* pointer matches card background */
}

.ggc-quote-text {
    margin-bottom: 8px;
}

.ggc-quote-attrib {
    font-size: 8px;
    font-weight: 600;
}

/* Footer ------------------------------------------------------------------ */

/* Footer Modernization */
.ggc-footer {
    background-color: #0f172a;
    /* Modern dark navy */
    color: #f8fafc;
    padding: 60px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.ggc-footer-col h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    letter-spacing: 0.02em;
}

.ggc-footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--ggc-green);
}

.ggc-footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-top: 20px;
}

.ggc-footer-logo img {
    height: 100px;
    width: auto;
    display: block;
    margin-bottom: 24px;
    background-color: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.ggc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ggc-footer-links li {
    margin-bottom: 12px;
}

.ggc-footer-links a {
    color: #94a3b8;
    text-decoration: none !important;
    transition: all 0.2s;
    display: inline-block;
}

.ggc-footer-links a:hover {
    color: var(--ggc-green);
    transform: translateX(5px);
}

.ggc-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.ggc-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ggc-footer-social a:hover {
    background: var(--ggc-green);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 158, 73, 0.3);
}

.ggc-footer-contact {
    list-style: none;
    padding: 0;
}

.ggc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #94a3b8;
}

.ggc-footer-contact i {
    color: var(--ggc-green);
    margin-top: 4px;
}

.ggc-footer-contact a {
    color: inherit;
    text-decoration: none !important;
}

.ggc-footer-contact a:hover {
    color: #ffffff;
}

.ggc-footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ggc-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 13px;
}

/* Active nav state for About the Directory ------------------------------- */
body.ggc-page-about-directory .ggc-main-menu li a[href="about-directory.php"] {
    color: var(--ggc-red);
}

body.ggc-page-about-directory .ggc-main-menu li a[href="about-directory.php"] i {
    color: var(--ggc-red);
}

/* Active nav state for About Us ------------------------------------------ */
body.ggc-page-about-us .ggc-main-menu li a[href="about-us.php"] {
    color: var(--ggc-red);
}

body.ggc-page-about-us .ggc-main-menu li a[href="about-us.php"] i {
    color: var(--ggc-red);
}

/* Active nav state for Directory ----------------------------------------- */
body.ggc-page-directory .ggc-main-menu li a[href="directory.php"] {
    color: var(--ggc-red);
}

body.ggc-page-directory .ggc-main-menu li a[href="directory.php"] i {
    color: var(--ggc-red);
}

/* Active nav state for Blog ----------------------------------------------- */
body.ggc-page-blog .ggc-main-menu li a[href="blog.php"] {
    color: var(--ggc-red);
}

body.ggc-page-blog .ggc-main-menu li a[href="blog.php"] i {
    color: var(--ggc-red);
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 992px) {
    .ggc-hero-overlay {
        justify-content: center;
        text-align: center;
    }

    .ggc-hero-content {
        margin-left: 0;
        max-width: none;
    }

    .ggc-hero-logo-wrap {
        position: static;
        transform: none;
        margin-left: 0;
        margin-top: 24px;
    }

    .ggc-quotes-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Blog page --------------------------------------------------------------- */

.ggc-blog-shell {
    background-color: var(--ggc-white);
    padding: 10px 0 24px;
}

.ggc-blog-toolbar-top {
    justify-content: space-between;
    align-items: center;
}

.ggc-blog-search input[type="text"] {
    width: 260px;
}

.ggc-blog-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.ggc-blog-card {
    position: relative;
    font-size: 12px;
}

.ggc-blog-quote {
    font-style: italic;
    margin-bottom: 6px;
}

.ggc-blog-meta {
    font-size: 11px;
    margin-bottom: 4px;
}

.ggc-blog-source-title {
    font-weight: 400;
}

.ggc-blog-site {
    font-size: 11px;
    margin-bottom: 4px;
}

.ggc-blog-link {
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 768px) {

    /* Contact page mobile layout: stack map under forms */
    .ggc-contact-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "right"
            "map";
        /* map stacked under forms on mobile */
        gap: 16px;
    }

    .ggc-contact-info p {
        font-size: 12px;
    }

    .ggc-contact-form-row {
        flex-direction: column;
    }

    .ggc-contact-send-button,
    .ggc-contact-newsletter-form button {
        padding: 6px 18px;
    }

    .ggc-contact-map iframe {
        min-height: 300px;
    }

    /* Directory mobile: match two-column card grid and compact toolbar */
    .ggc-directory-toolbar {
        padding-top: 10px;
    }

    .ggc-directory-toolbar-top {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin-bottom: 4px;
    }

    .ggc-blog-toolbar-top {
        align-items: flex-start;
    }

    .ggc-blog-search input[type="text"] {
        width: 100%;
    }

    .ggc-blog-ctas {
        justify-content: center;
    }

    .ggc-directory-search {
        width: 100%;
    }

    .ggc-directory-search input[type="text"] {
        width: 100%;
    }

    .ggc-directory-az {
        text-align: center;
        font-size: 10px;
    }

    .ggc-directory-filters-row {
        justify-content: flex-start;
    }

    .ggc-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* 2 columns on mobile */
        gap: 10px;
    }

    .ggc-directory-card {
        padding: 8px 8px 10px;
        font-size: 11px;
    }

    /* Mobile-specific button sizing */
    .ggc-hero-mobile-ctas .ggc-cta,
    .ggc-hero-ctas .ggc-cta {
        padding: 6px 12px;
        /* comfortable tap target while staying compact */
    }

    /* Force all hero content to fit the device width */
    .ggc-hero-mobile-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .ggc-hero-mobile-logo {
        display: flex;
        justify-content: center;
    }

    .ggc-hero-mobile-ctas {
        flex-direction: column;
        width: 100%;
    }

    .ggc-hero-mobile-ctas .ggc-cta {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        justify-content: center;
    }

    /* Directory/Blog CTAs (also based on .ggc-cta, which has a large desktop min-width) */
    .ggc-directory-add-cta {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        justify-content: center;
    }

    /* Allow labels to wrap instead of forcing horizontal overflow */
    .ggc-cta-text {
        white-space: normal;
        text-align: center;
    }

    .ggc-hero-mobile-note {
        font-size: 10px;
        text-align: center;
    }

    /* About Us mobile: stack image on top, then text, then logo + buttons row */
    .ggc-aboutus-main {
        padding: 18px 0 24px;
    }

    .ggc-aboutus-main .container {
        text-align: left;
        /* text left-aligned like mockup */
    }

    .ggc-aboutus-layout {
        grid-template-columns: 1fr;
        /* single column on mobile */
        grid-template-areas:
            "text"
            "photo"
            "callout";
        justify-items: stretch;
    }

    /* On mobile: layout controlled by grid areas above (text -> photo -> callout) */
    .ggc-aboutus-photo {
        margin-top: 16px;
    }

    .ggc-aboutus-photo img {
        max-height: none;
        width: 100%;
        max-width: 80%;
        /* leave white margins around portrait */
        height: auto;
        margin: 0 auto;
    }

    .ggc-aboutus-text {
        font-size: 8px;
        /* slightly smaller body copy on mobile */
        line-height: 1.5;
        /* a bit tighter to reduce vertical scroll */
        text-align: left;
        /* body text left-aligned like reference */
    }

    .ggc-aboutus-text p {
        margin-bottom: 6px;
        /* smaller spacing between paragraphs */
    }

    .ggc-aboutus-text ul {
        margin: 6px 0 6px 14px;
        /* tighter list spacing and indent */
        font-size: 8px;
    }

    .ggc-aboutus-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
    }

    .ggc-aboutus-logo {
        width: 70px;
    }

    .ggc-aboutus-ctas {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .ggc-aboutus-ctas .ggc-cta {
        padding: 6px 12px;
        min-width: 0;
        /* override desktop min-width */
        width: 100%;
        max-width: 340px;
        /* keep buttons readable while always fitting */
        justify-content: center;
    }

    .ggc-aboutus-ctas .ggc-cta-text {
        font-size: 8px;
        white-space: nowrap;
    }

    .ggc-aboutus-note {
        font-size: 10px;
        margin-top: 6px;
    }

    /* About Directory mobile: stack plans and tighten spacing */
    .ggc-about-intro {
        padding: 12px 0 18px;
        font-size: 11px;
    }

    .ggc-plan-grid {
        grid-template-columns: 1fr;
        /* stack Silver, Gold, Platinum */
        gap: 12px;
    }

    .ggc-plan-card {
        font-size: 11px;
    }

    .ggc-plan-card .ggc-plan-header h2 {
        font-size: 16px;
    }

    .ggc-plan-card .ggc-plan-header p {
        font-size: 11px;
    }

    .ggc-plan-body {
        padding: 12px 14px 14px;
    }

    /* Directory CTAs row under plans (2 rows, centered) */
    .ggc-directory-ctas {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .ggc-directory-cta {
        flex: 0 0 auto;
        padding: 4px 12px;
        font-size: 10px;
    }

    /* Swap to dedicated mobile hero layout */
    .ggc-hero {
        display: none;
    }

    .ggc-hero-mobile {
        display: block;
    }

    /* Header: mobile layout */
    .ggc-branding-bar {
        padding: 8px 0;
    }

    .ggc-branding-inner {
        gap: 12px;
    }

    .ggc-logo-img {
        height: 40px;
    }

    .ggc-title-text h1 {
        font-size: 14px;
    }

    .ggc-title-text p {
        font-size: 8px;
        max-width: 140px;
    }

    .ggc-nav-toggle {
        display: block;
    }

    .ggc-main-nav {
        display: none;
    }

    .ggc-mobile-nav,
    .ggc-mobile-nav-overlay {
        display: block;
    }

    /* Footer: mobile layout */
    .ggc-footer {
        padding: 40px 0 0;
    }

    .ggc-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .ggc-footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ggc-footer-social {
        justify-content: center;
    }

    .ggc-footer-contact li {
        justify-content: center;
    }

    .ggc-footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}