/* Source: new-widgets\pages\pages-video-showcase.php */
/* ========================================
               GB Video Showcase - Scoped Styles
            ======================================== */
            /* Scoped for Frontend */
            body:not(.elementor-editor-active) .gbvs-section {
                width: 100vw !important;
                position: relative !important;
                left: 50% !important;
                right: 50% !important;
                margin-left: -50vw !important;
                margin-right: -50vw !important;
                overflow: hidden !important;
                padding: 0 !important;
            }

            /* Editor Reset */
            .elementor-editor-active .gbvs-section {
                width: 100% !important;
                left: auto !important;
                right: auto !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding: 0 !important;
            }

            .gbvs-video-container {
                position: relative !important;
                width: 100% !important;
                aspect-ratio: 21 / 7 !important;
                overflow: hidden !important;
                background-color: #000 !important;
                opacity: 1 !important;
                transform: translateY(30px) !important;
                transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
                will-change: transform !important;
            }

            .gbvs-video-container.gbvs-animated {
                transform: translateY(0) !important;
            }

            /* Kill Elementor wrapper gaps */
            .elementor-widget-gb_video_showcase {
                margin-bottom: 0 !important;
            }
            .elementor-widget-gb_video_showcase > .elementor-widget-container {
                margin: 0 !important;
                padding: 0 !important;
            }

            @media (min-width: 1200px) {
                .gbvs-video-container {
                    aspect-ratio: 21 / 6 !important;
                }
            }

            .gbvs-poster-wrap {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                z-index: 10 !important;
                cursor: pointer !important;
                transition: transform 0.6s ease !important;
            }

            /* Poster IMG fills container properly */
            .gbvs-poster-img {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                object-position: center !important;
                display: block !important;
                z-index: 0 !important;
            }

            .gbvs-poster-wrap:hover {
                transform: scale(1.02) !important;
            }

            .gbvs-overlay {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%) !important;
                z-index: 1 !important;
            }

            .gbvs-play-btn {
                position: relative !important;
                width: 80px !important;
                height: 80px !important;
                border-radius: 50% !important;
                border: none !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                z-index: 5 !important;
                cursor: pointer !important;
                transition: all 0.4s ease !important;
                box-shadow: 0 0 0 0 rgba(87, 58, 54, 0.4) !important;
            }

            .gbvs-poster-wrap:hover .gbvs-play-btn {
                transform: scale(1.1) !important;
                box-shadow: 0 0 0 20px rgba(87, 58, 54, 0) !important;
            }

            .gbvs-play-icon {
                width: 0 !important;
                height: 0 !important;
                border-top: 12px solid transparent !important;
                border-bottom: 12px solid transparent !important;
                border-left: 20px solid #fff !important;
                margin-left: 5px !important;
            }

            .gbvs-content {
                position: absolute !important;
                bottom: 30px !important;
                left: 30px !important;
                z-index: 5 !important;
                color: #fff !important;
            }

            .gbvs-title {
                font-family: 'Playfair Display', serif !important;
                font-size: 1.5rem !important;
                font-weight: 700 !important;
                margin: 0 !important;
                text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
            }

            .gbvs-player-root {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                z-index: 5 !important;
            }

            .gbvs-player-root video {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important; /* Critical for full frame */
                border: none !important;
            }

            .gbvs-player-root iframe {
                width: 100% !important;
                height: 100% !important;
                border: none !important;
                /* Scale iframe to cover for 16:9 content in 21:7 container */
                transform: scale(1.35) !important; 
                transform-origin: center center !important;
                pointer-events: none !important; /* Prevent interaction with scaled iframe controls to maintain clean look */
            }

            /* Responsive Adjustments */
            @media (max-width: 1024px) {
                .gbvs-video-container {
                    aspect-ratio: 16 / 7 !important;
                }
            }

            @media (max-width: 768px) {
                .gbvs-play-btn {
                    width: 60px !important;
                    height: 60px !important;
                }
                .gbvs-title {
                    font-size: 1.2rem !important;
                }
                .gbvs-video-container {
                    aspect-ratio: 16 / 9 !important; /* Standard ratio for mobile visibility */
                }
                .gbvs-player-root iframe {
                    transform: scale(1) !important; /* Reset scale for standard mobile ratio */
                }
            }

            @media (max-width: 480px) {
                .gbvs-video-container {
                    aspect-ratio: 1 / 1 !important;
                }
            }


/* Source: new-widgets\pages\pages-testimonials.php */
/* ========================================
               GB Testimonials - Scoped Styles (gbpt-)
               Using !important to override theme styles
            ======================================== */
            
            .gbpt-section {
                padding: 3rem 1rem !important;
                box-sizing: border-box !important;
            }

            .gbpt-section *,
            .gbpt-section *::before,
            .gbpt-section *::after {
                box-sizing: border-box !important;
            }

            .gbpt-container {
                max-width: 1200px !important;
                margin: 0 auto !important;
            }

            .gbpt-header {
                text-align: center !important;
                margin-bottom: 3rem !important;
            }

            .gbpt-label {
                display: block !important;
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.7rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.2em !important;
                text-transform: uppercase !important;
                color: #573a36 !important;
                margin-bottom: 0.5rem !important;
            }

            .gbpt-subtitle {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.85rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.1em !important;
                text-transform: uppercase !important;
                color: #666 !important;
                margin: 0 0 0.75rem !important;
            }

            .gbpt-title {
                font-family: 'Playfair Display', Georgia, serif !important;
                font-size: clamp(1.25rem, 3vw, 2rem) !important;
                font-weight: 700 !important;
                color: #2c2c2c !important;
                line-height: 1.4 !important;
                margin: 0 !important;
            }

            .gbpt-grid {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }

            @media (min-width: 768px) {
                .gbpt-grid {
                    grid-template-columns: repeat(2, 1fr) !important;
                }

                .gbpt-section {
                    padding: 4rem 2rem !important;
                }
            }

            @media (min-width: 1024px) {
                .gbpt-grid {
                    grid-template-columns: repeat(3, 1fr) !important;
                }

                .gbpt-section {
                    padding: 5rem 3rem !important;
                }
            }

            .gbpt-card {
                border-radius: 8px !important;
                overflow: hidden !important;
                box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
                transition: all 0.3s ease !important;
                opacity: 0 !important;
                transform: translateY(20px) !important;
                animation: gbptFadeUp 0.6s ease forwards !important;
            }

            .gbpt-card:hover {
                transform: translateY(-5px) !important;
                box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
            }

            .gbpt-image img {
                width: 100% !important;
                height: 200px !important;
                object-fit: cover !important;
                display: block !important;
            }

            .gbpt-content {
                padding: 1.5rem !important;
            }

            .gbpt-badge {
                background: #f0f0f0 !important;
                border-radius: 4px !important;
                padding: 0.5rem 1rem !important;
                margin-bottom: 1rem !important;
            }

            .gbpt-badge p {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.75rem !important;
                color: #666 !important;
                margin: 0 !important;
            }

            .gbpt-quote-icon {
                margin-bottom: 1rem !important;
            }

            .gbpt-quote-icon svg {
                width: 32px !important;
                height: 32px !important;
            }

            .gbpt-text {
                font-family: 'Playfair Display', Georgia, serif !important;
                font-size: 1rem !important;
                font-style: italic !important;
                line-height: 1.7 !important;
                color: #333 !important;
                margin: 0 0 1.5rem !important;
            }

            .gbpt-author {
                border-top: 1px solid #eee !important;
                padding-top: 1rem !important;
            }

            .gbpt-author-name {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.9rem !important;
                font-weight: 600 !important;
                color: #2c2c2c !important;
                margin: 0 0 0.25rem !important;
            }

            .gbpt-author-role {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.75rem !important;
                color: #888 !important;
                text-transform: uppercase !important;
                letter-spacing: 0.05em !important;
            }

            .gbpt-cta-wrapper {
                text-align: center !important;
                margin-top: 3rem !important;
            }

            .gbpt-cta {
                display: inline-block !important;
                padding: 1rem 2.5rem !important;
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.85rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.1em !important;
                text-transform: uppercase !important;
                color: #fff !important;
                text-decoration: none !important;
                border-radius: 4px !important;
                transition: all 0.3s ease !important;
            }

            .gbpt-cta:hover {
                transform: translateY(-2px) !important;
                box-shadow: 0 5px 15px rgba(168, 52, 63, 0.3) !important;
            }

            @keyframes gbptFadeUp {
                to {
                    opacity: 1 !important;
                    transform: translateY(0) !important;
                }
            }

            @media (prefers-reduced-motion: reduce) {
                .gbpt-card {
                    animation: none !important;
                    opacity: 1 !important;
                    transform: none !important;
                }
            }


/* Source: new-widgets\pages\pages-testimonial-tabs.php */
.gbtt-container {
                padding: 60px;
                border-radius: 20px;
                overflow: hidden;
            }
            .gbtt-layout {
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 60px;
                align-items: center;
            }

            /* --- LEFT COLUMN: IMAGES --- */
            .gbtt-image-col {
                position: relative;
                width: 100%;
                aspect-ratio: 1/1; /* Square-ish portrait */
                border-radius: 15px;
                overflow: hidden;
            }
            .gbtt-image-wrap {
                position: absolute;
                inset: 0;
                opacity: 0;
                transform: scale(1.05); /* Slight zoom out effect */
                transition: opacity 0.6s ease, transform 0.8s ease;
                z-index: 1;
            }
            .gbtt-image-wrap.active {
                opacity: 1;
                transform: scale(1);
                z-index: 2;
            }
            .gbtt-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

            /* --- RIGHT COLUMN: CONTENT --- */
            .gbtt-content-col {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                min-height: 400px; /* Ensure height stability */
            }
            
            .gbtt-quotes-wrapper {
                position: relative;
                flex-grow: 1; /* Push nav to bottom */
            }
            .gbtt-content-item {
                position: absolute;
                top: 0; left: 0; width: 100%;
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.5s ease, transform 0.5s ease;
                visibility: hidden;
            }
            .gbtt-content-item.active {
                opacity: 1;
                transform: translateY(0);
                visibility: visible;
                position: relative; /* Take up flow space */
            }

            .gbtt-quote-mark { margin-bottom: 20px; opacity: 0.8; }
            
            .gbtt-main-quote {
                font-family: 'Playfair Display', serif; /* Or Larken equivalent */
                font-size: 40px;
                font-weight: 700;
                line-height: 1.2;
                margin: 0 0 30px;
                text-transform: uppercase;
            }
            
            .gbtt-sub {
                border-left: 2px solid #ccc;
                padding-left: 20px;
                font-family: 'Montserrat', sans-serif;
                font-size: 14px;
                line-height: 1.6;
                font-weight: 500;
                max-width: 90%;
            }

            /* --- NAVIGATION --- */
            .gbtt-nav {
                margin-top: 50px;
                border-top: 1px solid rgba(0,0,0,0.1);
                padding-top: 30px;
                overflow: hidden; /* Hide scrollbar but allow horizontal scroll in track */
            }
            .gbtt-nav-track {
                display: flex;
                gap: 40px;
                overflow-x: auto;
                padding-bottom: 5px; /* Spacing for scrollbar */
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }
            /* Hide scrollbar visually */
            .gbtt-nav-track::-webkit-scrollbar { height: 0; width: 0; display: none; }
            
            .gbtt-nav-item {
                cursor: pointer;
                transition: 0.3s;
                opacity: 0.5;
                flex-shrink: 0;
                padding-right: 20px;
            }
            .gbtt-nav-item:hover { opacity: 0.8; }
            .gbtt-nav-item.active { opacity: 1; }
            
            .gbtt-nav-name {
                display: block;
                font-family: 'Playfair Display', serif;
                font-size: 14px;
                font-weight: 700;
                text-transform: uppercase;
                margin-bottom: 4px;
            }
            .gbtt-nav-role {
                display: block;
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            /* --- RESPONSIVE --- */
            @media (max-width: 991px) {
                 .gbtt-container { padding: 40px; }
                 .gbtt-layout { grid-template-columns: 1fr; gap: 40px; }
                 .gbtt-main-quote { font-size: 32px; }
            }
            @media (max-width: 767px) {
                 .gbtt-container { padding: 30px 20px; border-radius: 12px; }
                 .gbtt-image-col { aspect-ratio: 4/3; }
                 .gbtt-main-quote { font-size: 26px; margin-bottom: 20px; }
                 .gbtt-sub { font-size: 13px; padding-left: 15px; border-left-width: 2px; }
                 .gbtt-nav { margin-top: 30px; padding-top: 20px; }
                 .gbtt-nav-track { gap: 30px; }
            }



/* Source: new-widgets\pages\pages-team-grid.php */
/* --- LAYOUT --- */
            .gbtg-container {
                position: relative;
                padding: 100px 0;
                overflow: hidden;
                color: #1a1a1a;
                font-family: 'Playfair Display', serif;
            }

            /* Scoped Frontend Breakout */
            body:not(.elementor-editor-active) .gbtg-container {
                width: 100vw;
                left: 50%;
                right: 50%;
                margin-left: -50vw;
                margin-right: -50vw;
            }
            /* Editor Safety handled by existing .elementor-editor-active rule below */

            .gbtg-header {
                max-width: 1400px;
                margin: 0 auto 60px auto;
                padding: 0 40px;
            }

            .gbtg-eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 700;
                color: #573a36;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 20px;
            }

            .gbtg-title {
                font-size: clamp(32px, 4vw, 56px);
                font-weight: 900;
                line-height: 1.1;
                margin: 0;
                max-width: 800px;
            }

            /* --- HORIZONTAL TRACK --- */
            .gbtg-scroll-viewport {
                width: 100%;
                overflow-x: auto; /* Native fallback */
                overflow-y: hidden;
                padding-bottom: 40px; /* Space for scrollbar or shadow */
                scrollbar-width: none; /* Hide scrollbar Firefox */
                -ms-overflow-style: none; /* Hide scrollbar IE */
                -webkit-overflow-scrolling: touch;
                cursor: grab;
            }
            .gbtg-scroll-viewport::-webkit-scrollbar {
                display: none;
            }
            .gbtg-scroll-viewport:active {
                cursor: grabbing;
            }

            .gbtg-scroll-track {
                display: flex;
                gap: 30px;
                padding: 0 40px; /* Left padding for first item */
                width: max-content; /* Ensure track is wide enough */
                padding-right: 40px;
            }

            /* --- CARDS --- */
            .gbtg-card {
                flex: 0 0 320px; /* Fixed width per card */
                position: relative;
            }

            .gbtg-image-wrap {
                width: 100%;
                aspect-ratio: 3 / 4;
                border-radius: 8px;
                overflow: hidden;
                position: relative;
                box-shadow: 0 10px 30px rgba(0,0,0,0.05);
                margin-bottom: 25px;
            }

            .gbtg-image-wrap img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            }

            .gbtg-card:hover .gbtg-image-wrap img {
                transform: scale(1.06);
            }

            /* Actions Overlay */
            .gbtg-actions {
                position: absolute;
                bottom: 20px;
                left: 0;
                width: 100%;
                display: flex;
                justify-content: center;
                gap: 10px;
                opacity: 0;
                transform: translateY(10px);
                transition: all 0.4s ease;
            }
            .gbtg-card:hover .gbtg-actions {
                opacity: 1;
                transform: translateY(0);
            }

            .gbtg-social-btn {
                width: 36px;
                height: 36px;
                background: #fff;
                color: #1a1a1a;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                transition: background 0.2s, transform 0.2s;
                cursor: pointer;
            }
            .gbtg-social-btn:hover {
                background: #573a36;
                color: #fff;
                transform: translateY(-3px);
            }

            /* Info */
            .gbtg-info {
                padding-left: 5px;
            }

            .gbtg-role {
                font-family: 'Montserrat', sans-serif;
                font-size: 10px;
                font-weight: 700;
                color: #573a36; /* Gold tone for role */
                text-transform: uppercase;
                display: block;
                margin-bottom: 5px;
            }

            .gbtg-name {
                font-size: 18px;
                font-weight: 800;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            /* Editor Safety */
            .elementor-editor-active .gbtg-container {
                width: auto !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                left: auto !important;
                right: auto !important;
            }

            /* --- RESPONSIVE --- */
            @media (max-width: 991px) {
                .gbtg-scroll-track {
                    padding: 0 20px;
                    gap: 20px;
                }
                .gbtg-header {
                    padding: 0 20px;
                }
                .gbtg-card {
                    flex: 0 0 280px;
                }
                .gbtg-actions {
                    opacity: 1; /* Always show social on touch */
                    transform: none;
                    bottom: 15px;
                }
            }

            @media (max-width: 767px) {
                /* Switch to Vertical Stack on Mobile */
                .gbtg-scroll-viewport {
                    overflow: visible;
                }
                .gbtg-scroll-track {
                    flex-direction: column;
                    width: 100%;
                    padding: 0 20px;
                }
                .gbtg-card {
                    width: 100%;
                    flex: unset;
                }
                .gbtg-image-wrap {
                    aspect-ratio: 4/5; /* Slightly shorter for vertical feed */
                }
            }


/* Source: new-widgets\pages\pages-statistics-cards.php */
/* ========================================
               GB Statistics Cards - Scoped Styles
            ======================================== */
            .gbsc-section {
                width: 100% !important;
                padding: 40px 0 !important;
                font-family: 'Montserrat', sans-serif !important;
            }

            /* Header Styles */
            .gbsc-header {
                text-align: center !important;
                margin-bottom: 3rem !important;
                opacity: 0 !important;
                transform: translateY(20px) !important;
                transition: all 0.8s ease-out !important;
            }

            .gbsc-header.gbsc-visible {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }

            .gbsc-header-icon {
                color: rgba(0,0,0,0.1) !important;
                font-size: 2rem !important;
                margin-bottom: 0.5rem !important;
            }

            .gbsc-eyebrow {
                display: block !important;
                font-size: 0.75rem !important;
                font-weight: 700 !important;
                letter-spacing: 0.1em !important;
                text-transform: uppercase !important;
                margin-bottom: 1rem !important;
            }

            .gbsc-main-title {
                font-family: 'Playfair Display', serif !important;
                font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
                line-height: 1.3 !important;
                font-weight: 700 !important;
                margin: 0 auto !important;
                max-width: 800px !important;
            }

            /* Grid Layout */
            .gbsc-grid {
                display: grid !important;
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 2rem !important;
                padding: 0 1rem !important;
            }

            /* Card Styles */
            .gbsc-card-wrapper {
                opacity: 0 !important;
                transform: translateY(30px) !important;
                transition: opacity 0.6s ease, transform 0.6s ease !important;
            }

            .gbsc-card-wrapper.gbsc-visible {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }

            .gbsc-card-inner {
                position: relative !important;
                border: 2px dashed #c2a579 !important;
                border-radius: 12px !important;
                padding: 2.5rem 2rem !important;
                margin-bottom: 1.5rem !important;
                overflow: hidden !important;
                transition: transform 0.3s ease !important;
                background-color: transparent !important; /* Explicitly transparent */
            }

            .gbsc-card-inner:hover {
                transform: translateY(-5px) !important;
            }

            .gbsc-bg-icon {
                position: absolute !important;
                top: 50% !important;
                right: -20px !important;
                transform: translateY(-50%) !important;
                font-size: 8rem !important;
                color: rgba(0,0,0,0.03) !important; /* Very subtle */
                pointer-events: none !important;
                z-index: 0 !important;
            }

            .gbsc-counter-area {
                position: relative !important;
                z-index: 1 !important;
            }

            .gbsc-number-wrap {
                font-size: 4rem !important;
                font-family: 'Playfair Display', serif !important;
                font-weight: 700 !important;
                line-height: 1 !important;
                margin-bottom: 0.5rem !important;
                display: flex !important;
                align-items: baseline !important;
            }

            .gbsc-suffix {
                font-size: 2.5rem !important;
                margin-left: 2px !important;
                font-weight: 400 !important;
                position: relative !important;
                top: -5px !important;
            }

            .gbsc-label {
                font-size: 0.85rem !important;
                font-weight: 800 !important;
                text-transform: uppercase !important;
                letter-spacing: 0.05em !important;
                margin: 0 !important;
            }

            .gbsc-description {
                font-size: 0.9rem !important;
                line-height: 1.6 !important;
                color: #666 !important;
                margin: 0 !important;
                padding: 0 0.5rem !important;
            }

            /* Responsive */
            @media (max-width: 1024px) {
                .gbsc-grid {
                    grid-template-columns: repeat(2, 1fr) !important;
                }
            }

            @media (max-width: 768px) {
                .gbsc-grid {
                    grid-template-columns: 1fr !important;
                    gap: 3rem !important;
                }
                
                .gbsc-header {
                    margin-bottom: 2rem !important;
                }

                .gbsc-number-wrap {
                    font-size: 3.5rem !important;
                }
            }


/* Source: new-widgets\pages\pages-social-proof.php */
.gbsp-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 60px 20px;
                text-align: center;
            }
            
            .gbsp-header { margin-bottom: 40px; }
            .gbsp-handle {
                display: inline-block;
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 1px;
                text-transform: uppercase;
                text-decoration: none;
                transition: opacity 0.3s;
            }
            .gbsp-handle:hover { opacity: 0.7; }

            /* --- MASONRY GRID --- */
            .gbsp-grid-wrapper {
                display: flex;
                flex-wrap: nowrap;
                gap: 20px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                padding-bottom: 20px;
                -webkit-overflow-scrolling: touch;
            }

            .gbsp-card {
                flex: 0 0 85vw; /* Mobile first: large cards */
                scroll-snap-align: center;
                position: relative;
                border-radius: 12px;
                overflow: hidden;
                aspect-ratio: 1/1;
                background: #f0f0f0; /* Skeleton placeholder color */
            }

            /* Desktop Grid */
            @media (min-width: 768px) {
                .gbsp-grid-wrapper {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 30px;
                    overflow: visible;
                    padding-bottom: 0;
                }
                .gbsp-card {
                    flex: none;
                    aspect-ratio: 4/5; /* Portrait specific for social */
                }
            }

            /* --- CARD STYLES --- */
            .gbsp-media { width: 100%; height: 100%; position: relative; }
            .gbsp-media img {
                width: 100%; height: 100%; object-fit: cover;
                transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }
            .gbsp-card:hover .gbsp-media img { transform: scale(1.05); }

            .gbsp-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
                opacity: 0;
                transition: opacity 0.3s;
            }
            .gbsp-card:hover .gbsp-overlay { opacity: 1; }

            .gbsp-badge {
                position: absolute;
                top: 15px;
                right: 15px;
                width: 32px;
                height: 32px;
                background: rgba(255,255,255,0.9);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #000;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                z-index: 2;
                transform: translateY(-10px);
                opacity: 0;
                transition: all 0.4s ease;
            }
            .gbsp-card:hover .gbsp-badge { transform: translateY(0); opacity: 1; }
            
            .gbsp-badge svg { width: 14px; height: 14px; fill: currentColor; }

            .gbsp-play-btn {
                position: absolute;
                top: 50%; left: 50%;
                transform: translate(-50%, -50%) scale(0.8);
                width: 50px; height: 50px;
                background: rgba(255,255,255,0.2);
                backdrop-filter: blur(4px);
                border-radius: 50%;
                display: flex; align-items: center; justify-content: center;
                color: #fff;
                opacity: 0;
                transition: all 0.4s;
            }
            .gbsp-play-btn svg { width: 24px; height: 24px; }
            .gbsp-card:hover .gbsp-play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }

            .gbsp-meta {
                position: absolute;
                bottom: 20px; left: 20px; right: 20px;
                z-index: 3;
                transform: translateY(10px);
                opacity: 0;
                transition: all 0.4s;
            }
            .gbsp-card:hover .gbsp-meta { transform: translateY(0); opacity: 1; }

            .gbsp-caption {
                color: #fff;
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 500;
                line-height: 1.4;
                margin: 0;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            /* Loading Skeleton Animation */
            @keyframes shimmer {
                0% { background-position: -200% 0; }
                100% { background-position: 200% 0; }
            }
            .gbsp-card:empty {
                background: #f0f0f0;
                background-image: linear-gradient(90deg, #f0f0f0 25%, #f7f7f7 50%, #f0f0f0 75%);
                background-size: 200% 100%;
                animation: shimmer 1.5s infinite;
            }


/* Source: new-widgets\pages\pages-restaurant-history.php */
/* ========================================
               GB Restaurant History - Scoped Styles
               Using !important to override theme styles
            ======================================== */
            
            .gbrh-section {
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .gbrh-section.gbrh-transparent {
                background-color: transparent !important;
            }

            .gbrh-section *,
            .gbrh-section *::before,
            .gbrh-section *::after {
                box-sizing: border-box !important;
            }

            .gbrh-container {
                max-width: 1200px !important;
                margin: 0 auto !important;
            }

            /* Header */
            .gbrh-header {
                margin-bottom: 2.5rem !important;
            }

            .gbrh-top-icon {
                margin-bottom: 0.75rem !important;
                line-height: 1 !important;
            }

            .gbrh-top-icon i,
            .gbrh-top-icon svg {
                display: inline-block !important;
            }

            .gbrh-label {
                display: block !important;
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.7rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.15em !important;
                text-transform: uppercase !important;
                margin-bottom: 0.75rem !important;
            }

            .gbrh-title {
                font-family: 'Playfair Display', Georgia, serif !important;
                font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
                font-weight: 700 !important;
                line-height: 1.25 !important;
                margin: 0 !important;
            }

            /* Grid Layout */
            .gbrh-grid {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 2.5rem !important;
                align-items: start !important;
            }

            @media (min-width: 900px) {
                .gbrh-grid {
                    grid-template-columns: 1fr 1fr !important;
                    gap: 4rem !important;
                }

                .gbrh-grid.gbrh-image-right .gbrh-image {
                    order: 2 !important;
                }

                .gbrh-grid.gbrh-image-right .gbrh-content {
                    order: 1 !important;
                }
            }

            /* Image */
            .gbrh-image img {
                width: 100% !important;
                height: auto !important;
                display: block !important;
                object-fit: cover !important;
            }

            /* Content */
            .gbrh-content {
                padding-top: 1rem !important;
            }

            .gbrh-description {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.9rem !important;
                line-height: 1.75 !important;
                margin: 0 0 1.5rem 0 !important;
            }

            .gbrh-divider {
                height: 1px !important;
                width: 100% !important;
                margin-bottom: 1.5rem !important;
            }

            /* Statistics */
            .gbrh-stats {
                display: flex !important;
                flex-direction: column !important;
                gap: 0 !important;
            }

            .gbrh-stat-item {
                display: flex !important;
                align-items: flex-start !important;
                gap: 1rem !important;
                padding: 1rem 0 !important;
            }

            .gbrh-stat-marker {
                width: 4px !important;
                height: 60px !important;
                border-radius: 2px !important;
                flex-shrink: 0 !important;
                margin-top: 0.5rem !important;
            }

            .gbrh-stat-content {
                flex: 1 !important;
            }

            .gbrh-stat-number-wrap {
                display: flex !important;
                align-items: flex-start !important;
                gap: 0.25rem !important;
                margin-bottom: 0.5rem !important;
            }

            .gbrh-stat-number {
                font-family: 'Playfair Display', Georgia, serif !important;
                font-weight: 400 !important;
                line-height: 1 !important;
            }

            .gbrh-stat-symbol {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 1rem !important;
                font-weight: 500 !important;
                margin-top: 0.25rem !important;
            }

            .gbrh-stat-desc {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.85rem !important;
                line-height: 1.6 !important;
                margin: 0 !important;
                max-width: 280px !important;
            }

            .gbrh-stat-divider {
                height: 1px !important;
                width: 100% !important;
            }

            /* --- PROFESSIONAL ANIMATION SYSTEM --- */
            
            /* 1. Base State: Hidden only on frontend (No flicker) */
            .gbrh-section:not(.elementor-editor-active) [data-animate] {
                opacity: 0;
                will-change: transform, opacity;
                transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), 
                            transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
            }

            /* 2. Specific Initial States */
            .gbrh-section:not(.elementor-editor-active) [data-animate="fade-up"] { 
                transform: translateY(30px); 
            }
            .gbrh-section:not(.elementor-editor-active) [data-animate="fade-in"] { 
                transform: scale(0.98); 
            }
            .gbrh-section:not(.elementor-editor-active) [data-animate="stagger"] { 
                transform: translateX(20px); 
            }

            /* 3. Visible State */
            .gbrh-section [data-animate].gbrh-visible,
            .elementor-editor-active .gbrh-section [data-animate] {
                opacity: 1 !important;
                transform: none !important;
            }

            /* 4. Editor Safety Override */
            .elementor-editor-active .gbrh-section [data-animate] {
                transition: none !important;
            }



/* Source: new-widgets\pages\pages-premium-testimonials.php */
/* --- LAYOUT --- */
            .gbpt-container {
                position: relative;
                max-width: 1400px;
                margin: 0 auto;
                padding: 60px 20px;
                background: transparent;
            }

            .gbpt-watermark {
                position: absolute;
                top: -50px;
                /* Scoped Frontend positioning */
                left: 50%;
                right: 50%;
                margin-left: -50vw;
                margin-right: -50vw;
                width: 100vw;
                
                text-align: center;
                font-family: 'Playfair Display', serif;
                font-size: clamp(80px, 15vw, 200px);
                font-weight: 900;
                color: rgba(0,0,0,0.03); /* Subtle watermark */
                pointer-events: none;
                z-index: 0;
                line-height: 0.8;
                text-transform: uppercase;
                overflow: hidden; /* Prevent horizontal scroll */
            }

            .gbpt-grid {
                display: grid;
                grid-template-columns: 1fr 1.2fr; /* Asymmetric grid */
                gap: 60px;
                position: relative;
                z-index: 1;
            }

            /* --- LEFT STICKY COLUMN --- */
            .gbpt-sticky-col {
                position: sticky;
                top: 100px; /* Controlled by setting */
                align-self: start;
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .gbpt-header-lockup {
                margin-bottom: 20px;
            }

            .gbpt-eyebrow {
                display: flex;
                align-items: center;
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 700;
                color: #573a36;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 15px;
            }

            .gbpt-main-title {
                font-family: 'Playfair Display', serif;
                font-size: clamp(28px, 3.5vw, 42px);
                font-weight: 800;
                color: #1a1a1a;
                line-height: 1.1;
                margin: 0;
            }

            .gbpt-feature-image-wrap {
                width: 100%;
                aspect-ratio: 3 / 4; /* Portrait cinematic */
                border-radius: 12px;
                overflow: hidden;
                position: relative;
                box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            }

            .gbpt-feature-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.7s ease;
            }

            .gbpt-feature-image-wrap:hover .gbpt-feature-img {
                transform: scale(1.03);
            }

            .gbpt-trust-badges {
                margin-top: 20px;
                display: flex;
                align-items: center;
                gap: 15px;
                flex-wrap: wrap;
            }
            .gbpt-trust-icon {
                width: 24px;
                height: 24px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
            }
            .gbpt-eyebrow-icon {
                color: #573a36;
                margin-right: 8px;
            }
            .gbpt-trust-icon--tripadvisor {
                background: #003580;
                color: #fff;
            }
            .gbpt-trust-icon--google {
                background: #00a680;
                color: #fff;
            }
            .gbpt-trust-text {
                font-family: 'Montserrat', sans-serif;
                font-size: 10px;
                font-weight: 600;
                color: #555;
                text-transform: uppercase;
            }
            .gbpt-trust-count {
                color: #573a36;
                font-weight: 700;
            }

            /* --- RIGHT SCROLL COLUMN --- */
            .gbpt-scroll-col {
                display: flex;
                flex-direction: column;
                gap: 30px;
                padding-top: 80px; /* Offset for alignment */
            }

            .gbpt-review-card {
                background: #fff;
                border-radius: 4px; /* Crisp corners as per design */
                padding: 40px 50px;
                position: relative;
                box-shadow: 0 10px 30px rgba(0,0,0,0.04);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                /* Animation Init State */
                opacity: 0;
                transform: translateY(40px);
                border: 1px solid rgba(0,0,0,0.02);
            }

            .gbpt-review-card.gbpt-visible {
                opacity: 1;
                transform: translateY(0);
            }

            .gbpt-review-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 50px rgba(0,0,0,0.08);
                z-index: 2;
            }

            .gbpt-quote-icon {
                position: absolute;
                top: 20px;
                right: 30px;
                font-family: 'Playfair Display', serif;
                font-size: 80px;
                line-height: 0;
                color: #573a36;
                opacity: 0.8;
            }

            .gbpt-dots {
                font-size: 24px;
                letter-spacing: 2px;
                color: #573a36;
                line-height: 0;
                margin-bottom: 25px;
                height: 10px;
            }

            .gbpt-quote {
                font-family: 'Playfair Display', serif;
                font-size: clamp(16px, 1.5vw, 20px);
                font-weight: 700;
                line-height: 1.5;
                color: #2c2c2c;
                margin: 0 0 30px 0;
                text-transform: uppercase;
            }

            .gbpt-meta-row {
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-top: 1px solid rgba(0,0,0,0.05);
                padding-top: 20px;
            }

            .gbpt-author-name {
                font-family: 'Montserrat', sans-serif;
                font-size: 12px;
                font-weight: 800;
                color: #1a1a1a;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .gbpt-author-role {
                font-family: 'Montserrat', sans-serif;
                font-size: 10px;
                font-weight: 500;
                color: #888;
                margin: 5px 0 0 0;
                text-transform: uppercase;
            }

            .gbpt-context-img-wrap {
                width: 80px;
                height: 50px;
                border-radius: 4px;
                overflow: hidden;
            }

            .gbpt-context-img-wrap img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            /* --- RESPONSIVE --- */
            @media (max-width: 991px) {
                .gbpt-grid {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
                .gbpt-sticky-col {
                    position: relative;
                    top: 0 !important;
                    text-align: center;
                }
                .gbpt-header-lockup {
                    align-items: center;
                    display: flex;
                    flex-direction: column;
                }
                .gbpt-scroll-col {
                    padding-top: 0;
                }
                .gbpt-watermark {
                    font-size: 15vw;
                }
                .gbpt-feature-image-wrap {
                    max-width: 500px;
                    margin: 0 auto;
                }
            }

            /* Editor Safety Case */
            .elementor-editor-active .gbpt-review-card {
                opacity: 1 !important;
                transform: none !important;
            }


/* Source: new-widgets\pages\pages-offer-banner.php */
.gbob-container {
                max-width: 1200px;
                margin: 40px auto;
                padding: 0 20px;
                opacity: 1;
                animation: gbobFadeUp 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) both;
            }

            .gbob-inner {
                position: relative;
                background: #fff;
                padding: 50px;
                border-radius: 12px;
                box-shadow: 0 15px 45px rgba(0,0,0,0.06);
                transition: all 0.3s ease;
            }

            .gbob-inner:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 55px rgba(0,0,0,0.1);
            }

            .gbob-badge {
                position: absolute;
                top: -15px;
                right: 30px;
                background: #573a36;
                color: #fff;
                padding: 6px 18px;
                border-radius: 4px;
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 1px;
                text-transform: uppercase;
                box-shadow: 0 5px 15px rgba(168, 52, 63, 0.3);
                z-index: 5;
            }

            .gbob-flex {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 50px;
            }

            .gbob-content-left {
                flex: 1.2;
            }

            .gbob-title {
                font-family: 'Playfair Display', serif;
                font-size: clamp(20px, 3vw, 32px);
                line-height: 1.3;
                font-weight: 900;
                color: #1a1a1a;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: -0.5px;
            }

            .gbob-highlight {
                position: relative;
                display: inline-block;
                color: #573a36;
            }

            .gbob-highlight::after {
                content: '';
                position: absolute;
                bottom: 2px;
                left: 0;
                width: 100%;
                height: 2px;
                background: currentColor;
                opacity: 0.6;
            }

            .gbob-logos-right {
                flex: 1;
            }

            .gbob-logo-grid {
                display: grid;
                grid-template-columns: repeat(5, minmax(0, 1fr));
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .gbob-logo-item {
                justify-self: center;
                max-width: 120px;
                filter: grayscale(1) opacity(0.7);
                animation: gbobLogoReveal 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
                animation-delay: var(--gbob-delay, 0ms);
                transition: filter 0.4s ease, transform 0.4s ease;
            }

            .gbob-logo-item:hover {
                filter: grayscale(0) opacity(1);
                transform: scale(1.1);
            }

            .gbob-logo-item img {
                max-width: 100%;
                height: auto;
                display: block;
            }

            /* Animations */
            .gbob-visible {
                animation: gbobFadeUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            }

            @keyframes gbobFadeUp {
                0% { opacity: 0; transform: translateY(30px); }
                100% { opacity: 1; transform: translateY(0); }
            }

            @keyframes gbobLogoReveal {
                0% { opacity: 0; transform: translateY(14px) scale(0.94); }
                100% { opacity: 1; transform: translateY(0) scale(1); }
            }

            /* Responsive */
            @media (max-width: 991px) {
                .gbob-flex {
                    flex-direction: column;
                    text-align: center;
                    gap: 40px;
                }
                .gbob-content-left, .gbob-logos-right {
                    flex: unset;
                    width: 100%;
                }
                .gbob-badge {
                    right: 50%;
                    transform: translateX(50%);
                    top: -15px;
                }
            }

            @media (max-width: 767px) {
                .gbob-inner {
                    padding: 40px 25px;
                }
                .gbob-logo-grid {
                    grid-template-columns: repeat(2, minmax(0, 1fr));
                    gap: 20px;
                }
                .gbob-logo-item {
                    max-width: 90px;
                }
            }

            /* Editor Visibility Safety */
            .elementor-editor-active .gbob-container {
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
            }

            @media (prefers-reduced-motion: reduce) {
                .gbob-container,
                .gbob-logo-item,
                .gbob-visible {
                    animation: none !important;
                }
            }


/* Source: new-widgets\pages\pages-news-updates.php */
/* --- LAYOUT --- */
            .gbnu-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 80px 20px;
                font-family: 'Playfair Display', serif;
                text-align: center;
            }

            /* --- HEADER & ICON --- */
            .gbnu-header { margin-bottom: 50px; }
            .gbnu-icon-wrap {
                width: 40px;
                height: 40px;
                margin: 0 auto 15px;
                color: #573a36;
                opacity: 0;
                animation: gbnuFadeIn 0.8s ease forwards 0.2s;
            }
            .gbnu-icon-wrap svg {
                width: 100%;
                height: 100%;
                stroke-dasharray: 100;
                stroke-dashoffset: 100;
                animation: gbnuDrawStroke 1.5s ease forwards 0.4s;
            }
            .gbnu-subtitle {
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 700;
                color: #573a36;
                letter-spacing: 1px;
                margin: 0 0 10px;
                text-transform: uppercase;
            }
            .gbnu-title {
                font-size: clamp(28px, 4vw, 42px);
                font-weight: 800;
                color: #1a1a1a;
                line-height: 1.2;
                margin: 0;
            }

            /* --- GRID / SWIPE --- */
            .gbnu-grid-scroller {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                padding-bottom: 20px; /* Space for shadow/scroll */
            }

            /* --- CARD --- */
            .gbnu-card {
                position: relative;
                aspect-ratio: 3/4;
                border-radius: 12px;
                overflow: hidden;
                cursor: pointer;
                transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            }
            .gbnu-card:hover { transform: translateY(-5px); }

            .gbnu-thumb { width: 100%; height: 100%; position: relative; }
            .gbnu-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.7s ease;
            }
            .gbnu-card:hover .gbnu-img { transform: scale(1.08); }
            
            .gbnu-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
                z-index: 1;
            }

            .gbnu-badge {
                position: absolute;
                top: 20px;
                right: 20px;
                background: #573a36;
                color: #fff;
                font-family: 'Montserrat', sans-serif;
                font-size: 10px;
                font-weight: 700;
                padding: 6px 12px;
                border-radius: 4px;
                text-transform: uppercase;
                z-index: 2;
                letter-spacing: 0.5px;
            }

            .gbnu-content {
                position: absolute;
                bottom: 20px;
                left: 20px;
                right: 20px;
                text-align: left;
                z-index: 2;
                color: #fff;
            }

            .gbnu-date {
                display: block;
                font-family: 'Montserrat', sans-serif;
                font-size: 10px;
                font-weight: 700;
                color: #f7eadc;
                opacity: 1;
                margin-bottom: 8px;
                text-transform: uppercase;
                text-shadow: 0 2px 8px rgba(0,0,0,0.65);
            }
            .gbnu-headline {
                font-size: 20px;
                line-height: 1.3;
                margin: 0;
                font-weight: 700;
                text-transform: uppercase;
                text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            }

            /* --- FOOTER BTN --- */
            .gbnu-footer { margin-top: 40px; }
            .gbnu-btn {
                display: inline-block;
                padding: 14px 40px;
                border: 1px solid #ddd;
                background: transparent;
                color: #1a1a1a;
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 800;
                text-decoration: none;
                letter-spacing: 1px;
                transition: all 0.3s;
                position: relative;
            }
            
            /* Custom "cut corners" style from ref image implied */
            .gbnu-btn {
                 clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
            }
            
            .gbnu-btn:hover {
                background: #1a1a1a;
                color: #fff;
                border-color: #1a1a1a;
            }

            /* --- ANIMATIONS --- */
            @keyframes gbnuFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
            @keyframes gbnuDrawStroke { to { stroke-dashoffset: 0; } }

            /* --- MOBILE RESPONSIVE --- */
            @media (max-width: 991px) {
                .gbnu-grid-scroller {
                    display: flex;
                    overflow-x: auto;
                    scroll-snap-type: x mandatory;
                    gap: 15px;
                    padding-bottom: 10px;
                    -webkit-overflow-scrolling: touch; /* Momentum */
                    margin-right: -20px; /* Edge bleed */
                    padding-right: 20px;
                }
                .gbnu-card {
                    min-width: 85vw; /* Show peeking of next card */
                    scroll-snap-align: center;
                }
                .gbnu-title { font-size: 32px; }
            }
            
            @media (min-width: 768px) and (max-width: 991px) {
                .gbnu-card { min-width: 45vw; } /* 2 cards on tablet */
            }



/* Source: new-widgets\pages\pages-legal-docs.php */
.gb-legal {
                padding: 60px 0;
                background: #f9f9f9;
                color: #333;
                font-family: 'DM Sans', sans-serif;
            }
            .gb-legal__container {
                display: grid;
                grid-template-columns: 280px 1fr;
                gap: 60px;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
                align-items: start;
            }
            
            /* Sidebar */
            .gb-legal__sidebar {
                position: sticky;
                top: 100px; /* Offset for sticky header */
                background: #fff;
                padding: 30px;
                border-radius: 8px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            }
            .gb-legal__toc-title {
                margin: 0 0 15px;
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 0.1em;
                color: #5f524d;
            }
            .gb-legal__toc ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            .gb-legal__toc-link {
                display: block;
                padding: 8px 0 8px 15px;
                border-left: 2px solid transparent;
                text-decoration: none;
                color: #666;
                font-size: 14px;
                transition: all 0.3s ease;
            }
            .gb-legal__toc-link:hover,
            .gb-legal__toc-link.is-active {
                color: #573a36; /* Fallback */
                border-left-color: #573a36; /* Fallback */
                background: linear-gradient(90deg, rgba(87,58,54,0.05), transparent);
            }

            /* Content */
            .gb-legal__content {
                background: #fff;
                padding: 60px;
                border-radius: 8px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            }
            .gb-legal__header {
                margin-bottom: 40px;
                padding-bottom: 30px;
                border-bottom: 1px solid #eee;
            }
            .gb-legal__header-top {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 10px;
                flex-wrap: wrap;
                gap: 15px;
            }
            .gb-legal__title {
                font-family: 'Playfair Display', serif;
                font-size: 42px;
                margin: 0;
                color: #111;
                line-height: 1.1;
            }
            .gb-legal__meta {
                font-size: 13px;
                color: #573a36;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin: 5px 0 20px;
            }
            .gb-legal__intro {
                font-size: 18px;
                line-height: 1.6;
                color: #555;
                margin-top: 20px;
            }
            
            /* Print Button */
            .gb-legal__print-btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 8px 16px;
                background: transparent;
                border: 1px solid #ddd;
                border-radius: 4px;
                cursor: pointer;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                color: #666;
                transition: all 0.3s ease;
            }
            .gb-legal__print-btn:hover {
                border-color: #573a36; /* Fallback */
                background: #573a36; /* Fallback */
                color: #fff;
            }

            .gb-legal__section {
                margin-bottom: 50px;
                scroll-margin-top: 120px; /* Offset for anchor scroll */
            }
            .gb-legal__section-title {
                font-family: 'Playfair Display', serif;
                font-size: 24px;
                margin: 0 0 20px;
                color: #573a36;
            }
            .gb-legal__text {
                font-size: 16px;
                line-height: 1.8;
                color: #444;
            }
            .gb-legal__text p { margin-bottom: 1.5em; }
            .gb-legal__text ul { padding-left: 20px; margin-bottom: 1.5em; }
            .gb-legal__text li { margin-bottom: 10px; }

            /* Responsive */
            @media (max-width: 1024px) {
                .gb-legal__container {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
                .gb-legal__sidebar {
                    position: static;
                    margin-bottom: 0;
                    display: none; /* Hide TOC on mobile usually or make collapsible */
                }
                .gb-legal__content { padding: 40px; }
            }
            @media (max-width: 767px) {
                .gb-legal__title { font-size: 32px; }
                .gb-legal__content { padding: 25px; }
                .gb-legal__header-top { flex-direction: column; }
            }
            @media print {
                .gb-legal__sidebar,
                .gb-legal__print-btn,
                header, /* Site Header */
                footer, /* Site Footer */
                .elementor-section-wrap > *:not(.gb-legal) { /* Hide other sections if possible */
                    display: none !important;
                }
                .gb-legal { padding: 0; background: #fff; }
                .gb-legal__container { display: block; max-width: 100%; padding: 0; }
                .gb-legal__content { box-shadow: none; padding: 0; }
                body { font-size: 12pt; }
            }


/* Source: new-widgets\pages\pages-interactive-timeline.php */
/* ========================================
               GB Interactive Timeline - Scoped Styles
               Using !important to override theme styles
               Performance-optimized CSS animations
            ======================================== */
            
            .gbtl-section {
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }

            .gbtl-section *,
            .gbtl-section *::before,
            .gbtl-section *::after {
                box-sizing: border-box !important;
            }

            .gbtl-container {
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 auto !important;
            }

            /* Header Animations */
            .gbtl-header {
                text-align: center !important;
                margin-bottom: 2rem !important;
            }

            .gbtl-section [data-animate] {
                opacity: 0 !important;
                transform: translateY(20px) !important;
                transition: opacity 0.6s ease, transform 0.6s ease !important;
            }

            .gbtl-section [data-animate].gbtl-animated {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }

            .gbtl-section [data-animate="icon"] { transition-delay: 0s !important; }
            .gbtl-section [data-animate="eyebrow"] { transition-delay: 0.1s !important; }
            .gbtl-section [data-animate="title"] { transition-delay: 0.2s !important; }
            .gbtl-section [data-animate="featured"] { transition-delay: 0.3s !important; }
            .gbtl-section [data-animate="timeline"] { transition-delay: 0.4s !important; }

            .gbtl-top-icon-wrap {
                position: relative !important;
                margin-bottom: 0.75rem !important;
                height: 32px !important;
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
            }

            .gbtl-top-icon {
                position: absolute !important;
                opacity: 0 !important;
                transform: scale(0.8) !important;
                transition: opacity 0.4s ease, transform 0.4s ease !important;
                line-height: 1 !important;
            }

            .gbtl-top-icon.gbtl-visible {
                opacity: 1 !important;
                transform: scale(1) !important;
                position: relative !important;
            }

            .gbtl-top-icon i,
            .gbtl-top-icon svg {
                display: inline-block !important;
                font-size: 32px !important;
                width: 32px !important;
                height: 32px !important;
                animation: gbtlPulse 2s ease-in-out infinite !important;
            }

            @keyframes gbtlPulse {
                0%, 100% { transform: scale(1); }
                50% { transform: scale(1.1); }
            }

            .gbtl-eyebrow {
                display: block !important;
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.7rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.2em !important;
                text-transform: uppercase !important;
                margin-bottom: 0.75rem !important;
            }

            .gbtl-main-title {
                font-family: 'Playfair Display', Georgia, serif !important;
                font-size: clamp(1.25rem, 3.5vw, 2rem) !important;
                font-weight: 700 !important;
                line-height: 1.2 !important;
                margin: 0 !important;
            }

            /* Featured Section */
            .gbtl-featured {
                position: relative !important;
                margin-bottom: 2rem !important;
            }

            .gbtl-image-wrap {
                position: relative !important;
                width: 100% !important;
                overflow: hidden !important;
                border-radius: 8px !important;
                aspect-ratio: 21 / 9 !important;
                background-color: #f5f5f5 !important;
            }

            .gbtl-figure {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                margin: 0 !important;
                opacity: 0 !important;
                transition: opacity 0.5s ease !important;
                will-change: opacity !important;
            }

            .gbtl-figure:first-child {
                position: relative !important;
            }

            .gbtl-figure.gbtl-visible {
                opacity: 1 !important;
                z-index: 1 !important;
            }

            .gbtl-image {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                display: block !important;
                transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
            }

            .gbtl-figure img {
                width: 100% !important;
                height: 100% !important;
                display: block !important;
            }

            @media (min-width: 768px) {
                .gbtl-image-wrap:hover .gbtl-image {
                    transform: scale(1.03) !important;
                }
            }

            /* Card */
            .gbtl-card {
                position: relative !important;
                padding: 1.5rem !important;
                margin: -2rem 1.5rem 0 !important;
                box-shadow: 0 15px 45px rgba(0,0,0,0.12) !important;
                z-index: 10 !important;
                max-width: 500px !important;
                margin-left: auto !important;
                margin-right: auto !important;
                border-radius: 12px !important;
            }

            .gbtl-card-content {
                display: none !important;
            }

            .gbtl-card-content.gbtl-visible {
                display: block !important;
                animation: gbtlFadeIn 0.4s ease !important;
            }

            @keyframes gbtlFadeIn {
                from { opacity: 0; transform: translateY(10px); }
                to { opacity: 1; transform: translateY(0); }
            }

            .gbtl-card-label {
                display: block !important;
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.65rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.15em !important;
                text-transform: uppercase !important;
                opacity: 0.85 !important;
                margin-bottom: 0.5rem !important;
            }

            .gbtl-card-title {
                font-family: 'Playfair Display', Georgia, serif !important;
                font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
                font-weight: 700 !important;
                margin: 0 0 0.75rem 0 !important;
            }

            .gbtl-card-desc {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.85rem !important;
                line-height: 1.7 !important;
                margin: 0 !important;
                opacity: 0.9 !important;
            }

            /* Desktop: Overlapping Card */
            @media (min-width: 900px) {
                .gbtl-featured {
                    display: grid !important;
                    grid-template-columns: 1fr 1fr !important;
                    gap: 0 !important;
                    align-items: center !important;
                }

                .gbtl-image-wrap {
                    grid-column: 1 / -1 !important;
                    grid-row: 1 !important;
                    margin-left: 25% !important;
                }

                .gbtl-card {
                    grid-column: 1 !important;
                    grid-row: 1 !important;
                    position: relative !important;
                    z-index: 2 !important;
                    max-width: 320px !important;
                    margin: 0 !important;
                    padding: 1.5rem !important;
                    align-self: center !important;
                }
            }

            @media (min-width: 1100px) {
                .gbtl-card {
                    max-width: 420px !important;
                    padding: 2.5rem !important;
                }
            }

            /* Timeline Navigation */
            .gbtl-timeline {
                position: relative !important;
                padding-top: 2rem !important;
            }

            .gbtl-timeline-line {
                position: absolute !important;
                top: 2.3rem !important;
                left: 5% !important;
                right: 5% !important;
                height: 1px !important;
                opacity: 0.3 !important;
            }

            .gbtl-milestones {
                display: flex !important;
                justify-content: space-between !important;
                gap: 0.5rem !important;
                overflow-x: auto !important;
                scrollbar-width: none !important;
                -ms-overflow-style: none !important;
                scroll-behavior: smooth !important;
                padding-bottom: 0.5rem !important;
                -webkit-overflow-scrolling: touch !important;
            }

            .gbtl-milestones::-webkit-scrollbar {
                display: none !important;
            }

            .gbtl-milestone {
                flex-shrink: 0 !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 0.4rem !important;
                background: none !important;
                border: none !important;
                padding: 0 !important;
                cursor: pointer !important;
                min-width: 80px !important;
                min-height: 44px !important;
                font-family: inherit !important;
                transition: transform 0.2s ease !important;
            }

            .gbtl-milestone:hover {
                transform: translateY(-2px) !important;
            }

            .gbtl-milestone:focus {
                outline: 2px solid currentColor !important;
                outline-offset: 4px !important;
            }

            .gbtl-dot {
                width: 10px !important;
                height: 10px !important;
                border-radius: 50% !important;
                transition: all 0.3s ease !important;
                position: relative !important;
                z-index: 2 !important;
            }

            .gbtl-milestone.gbtl-active .gbtl-dot {
                transform: scale(1.2) !important;
                box-shadow: 0 0 0 6px rgba(168, 52, 63, 0.15) !important;
            }

            .gbtl-milestone-text {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.6rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.05em !important;
                text-transform: uppercase !important;
                text-align: center !important;
                line-height: 1.2 !important;
                transition: opacity 0.3s ease !important;
            }

            .gbtl-sep {
                margin: 2px 0 !important;
                font-size: 0.5rem !important;
                opacity: 0.5 !important;
            }

            .gbtl-milestone:not(.gbtl-active) .gbtl-milestone-text {
                opacity: 0.5 !important;
            }

            .gbtl-year {
                display: block !important;
                font-weight: 700 !important;
                margin-bottom: 2px !important;
            }

            .gbtl-label {
                display: block !important;
                font-weight: 500 !important;
                max-width: 80px !important;
                white-space: normal !important;
            }

            /* Mobile Responsive */
            @media (max-width: 899px) {
                .gbtl-container {
                    padding: 0 0 40px !important;
                }
                
                .gbtl-image-wrap {
                    border-radius: 0 !important;
                }
                
                .gbtl-figure {
                    aspect-ratio: 16 / 10 !important;
                }

                .gbtl-card {
                    width: calc(100% - 40px) !important;
                    margin-top: -30px !important;
                    padding: 1.5rem !important;
                }

                .gbtl-timeline {
                    padding: 2rem 15px 0 !important;
                }
            }

            @media (max-width: 480px) {
                .gbtl-main-title {
                    font-size: 1.5rem !important;
                    padding: 0 15px !important;
                }

                .gbtl-figure {
                    aspect-ratio: 1 / 1 !important;
                }

                .gbtl-card-title {
                    font-size: 1.25rem !important;
                }

                .gbtl-milestone {
                    min-width: 70px !important;
                }
            }

            /* Reduced Motion */
            @media (prefers-reduced-motion: reduce) {
                .gbtl-section [data-animate] {
                    opacity: 1 !important;
                    transform: none !important;
                    transition: none !important;
                }

                .gbtl-top-icon i,
                .gbtl-top-icon svg {
                    animation: none !important;
                }

                .gbtl-figure,
                .gbtl-image,
                .gbtl-card-content,
                .gbtl-milestone,
                .gbtl-dot {
                    transition: none !important;
                }
            }


/* Source: new-widgets\pages\pages-hero.php */
/* =====================================================
               GB Pages Hero — Inner-Page Banner (gbph-)
               ===================================================== */

            .gbph-hero {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                overflow: hidden;
                /* Remove ALL default margins/padding from Elementor */
                margin: 0;
                padding: 0;
                line-height: 1;
            }

            /* Full-width and under-header pull-up on frontend only */
            body:not(.elementor-editor-active) .gbph-hero {
                width: 100vw;
                margin-left: calc(50% - 50vw);
                margin-top: -120px; /* Pull up under transparent header */
                padding-top: 120px; /* Keep content visually centered */
            }
            .elementor-editor-active .gbph-hero {
                width: 100%;
                margin-left: 0;
            }

            /* Kill Elementor widget wrapper gaps */
            .elementor-widget-gb_pages_hero {
                margin-bottom: 0 !important;
            }
            .elementor-widget-gb_pages_hero > .elementor-widget-container {
                margin: 0 !important;
                padding: 0 !important;
            }

            /* ---- Background ---- */
            .gbph-bg-wrap {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
                overflow: hidden;
                background: #111; /* Fallback if no image loads */
            }

            /* IMG tag approach — fixes the image-not-showing issue */
            .gbph-bg-img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                position: absolute;
                top: 0;
                left: 0;
            }

            /* Video element */
            .gbph-bg-media {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: absolute;
                top: 0;
                left: 0;
            }

            /* iframe zoom for 16:9 aspect ratio fill */
            .gbph-bg-iframe {
                width: 100vw;
                height: 56.25vw;
                min-height: 100%;
                min-width: 177.77vh;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                pointer-events: none;
            }

            /* Poster (behind video, visible while loading) */
            .gbph-poster {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                z-index: -1;
            }

            /* ---- Overlay ---- */
            .gbph-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
                background: rgba(0, 0, 0, 0.5); /* Fallback, overridden by selector */
            }

            /* ---- Content ---- */
            .gbph-content {
                position: relative;
                z-index: 2;
                padding: 2rem;
                width: 100%;
                max-width: 1200px;
            }

            .gbph-title {
                font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
                font-weight: 700;
                color: #ffffff;
                margin: 0 0 12px;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                text-shadow: 0 2px 24px rgba(0,0,0,0.42);
                font-size: clamp(2rem, 4.4vw + 0.3rem, 4.8rem);
                line-height: 1.02;
            }

            .gbph-breadcrumb {
                font-family: 'DM Sans', 'Montserrat', sans-serif;
                font-size: 13px;
                font-weight: 500;
                letter-spacing: 0.15em;
                text-transform: uppercase;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                gap: 0;
                margin: 0;
                padding: 0;
            }

            .gbph-breadcrumb a {
                color: rgba(255, 255, 255, 0.85);
                text-decoration: none;
                transition: opacity 0.3s ease;
            }
            .gbph-breadcrumb a:hover {
                opacity: 0.7;
            }

            .gbph-sep {
                margin: 0 10px;
                opacity: 0.5;
                color: rgba(255,255,255,0.7);
            }

            .gbph-current {
                color: #ead7be;
            }

            /* ---- Responsive ---- */

            /* Tablet */
            @media (max-width: 1024px) {
                .gbph-content {
                    padding: 1.5rem;
                }
            }

            /* Mobile */
            @media (max-width: 767px) {
                .gbph-content {
                    padding: 5rem 1.25rem 4rem;
                }
                .gbph-title {
                    font-size: clamp(2rem, 10vw, 3.4rem);
                    letter-spacing: 0.04em;
                }
                .gbph-breadcrumb {
                    font-size: 11px;
                    letter-spacing: 0.1em;
                }
            }

            /* Small mobile */
            @media (max-width: 480px) {
                .gbph-content {
                    padding: 1rem;
                }
            }

            /* Fade-in animation */
            @keyframes gbph-fade-in {
                from { opacity: 0; transform: translateY(20px); }
                to   { opacity: 1; transform: translateY(0); }
            }
            .gbph-title {
                animation: gbph-fade-in 0.8s ease forwards;
            }
            .gbph-breadcrumb {
                animation: gbph-fade-in 0.8s ease 0.2s forwards;
                opacity: 0;
            }


/* Source: new-widgets\pages\pages-global-branches.php */
/* --- THEME VARS & CONTAINER --- */
            .gbgb-container {
                position: relative;
                padding: 80px 0;
                overflow: hidden; /* Prevent horizontal scroll */
                color: #fff;
                font-family: 'Playfair Display', serif;
            }

            /* Scoped Frontend Breakout */
            body:not(.elementor-editor-active) .gbgb-container {
                width: 100vw;
                left: 50%;
                right: 50%;
                margin-left: -50vw;
                margin-right: -50vw;
            }
            /* Editor Safety handled by existing .elementor-editor-active rule below */

            .gbgb-header {
                max-width: 1200px;
                margin: 0 auto 60px auto;
                padding: 0 20px;
                text-align: center;
            }

            .gbgb-eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 700;
                color: #573a36; /* Accent */
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 20px;
            }
            .gbgb-icon {
                font-size: 14px;
                padding: 2px 4px; 
                border: 1px solid currentColor;
                border-radius: 2px;
            }

            .gbgb-title {
                font-size: clamp(32px, 4vw, 48px);
                font-weight: 900;
                line-height: 1.1;
                text-transform: uppercase;
                margin: 0;
            }

            /* --- LIST ITEM & TRIGGER --- */
            .gbgb-list {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
                border-top: 1px solid rgba(255,255,255,0.1);
            }

            .gbgb-item {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .gbgb-trigger {
                width: 100%;
                background: none;
                border: none;
                padding: 30px 0;
                color: inherit;
                cursor: pointer;
                display: grid;
                grid-template-columns: 1fr 2fr 1fr;
                align-items: start;
                text-align: left;
                transition: background 0.3s;
            }

            .gbgb-trigger:hover {
                background: rgba(255,255,255,0.02);
            }
            
            .gbgb-trigger[aria-expanded="true"] .gbgb-toggle-text::after {
                content: attr(data-close);
            }
            .gbgb-trigger[aria-expanded="false"] .gbgb-toggle-text::after {
                content: attr(data-open);
            }
            /* Hide the span text itself, use pseudo-element for easy switch */
            .gbgb-toggle-text {
                font-size: 0; 
            }
            .gbgb-toggle-text::after {
                font-size: 10px;
                font-family: 'Montserrat', sans-serif;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: rgba(255,255,255,0.5);
            }

            .gbgb-col-type {
                font-family: 'Montserrat', sans-serif;
                font-size: 10px;
                font-weight: 500;
                text-transform: uppercase;
                color: rgba(255,255,255,0.4);
                padding-top: 5px;
            }

            .gbgb-col-address {
                font-size: 16px;
                font-weight: 700;
                line-height: 1.4;
                text-transform: uppercase;
            }

            .gbgb-addr-line {
                display: block;
            }

            .gbgb-col-action {
                justify-self: end;
                display: flex;
                align-items: center;
                gap: 10px;
                padding-top: 5px;
            }

            .gbgb-arrow {
                font-size: 10px;
                transition: transform 0.3s ease;
                color: rgba(255,255,255,0.5);
            }

            .gbgb-trigger[aria-expanded="true"] .gbgb-arrow {
                transform: rotate(180deg);
            }

            /* --- CONTENT AREA --- */
            .gbgb-content {
                display: grid; 
                grid-template-rows: 0fr;
                transition: grid-template-rows 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                overflow: hidden;
            }

            /* Using JS for height, fallback to block if no JS */
            .gbgb-content:not([hidden]) {
                display: block; 
                animation: gbgbSlideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            }

            @keyframes gbgbSlideDown {
                from { opacity: 0; transform: translateY(-10px); }
                to { opacity: 1; transform: translateY(0); }
            }

            .gbgb-inner-content {
                padding: 0 0 40px 0;
                /* Match grid alignment */
                padding-left: calc(33.33% + 20px); 
            }

            /* --- META PILLS --- */
            .gbgb-meta-row {
                display: flex;
                gap: 10px;
                margin-bottom: 30px;
            }

            .gbgb-pill {
                display: inline-block;
                padding: 6px 16px;
                border-radius: 4px;
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 700;
                text-decoration: none;
                transition: transform 0.2s;
            }
            .gbgb-pill:hover { transform: translateY(-2px); }

            .gbgb-pill-dark {
                background: #573a36;
                color: #fff;
            }
            .gbgb-pill-light {
                background: #e4e0b8; /* Gold/Beige accent */
                color: #1a1a1a;
            }

            /* --- GALLERY --- */
            .gbgb-gallery {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-bottom: 30px;
            }

            .gbgb-gallery-item {
                aspect-ratio: 16/9;
                border-radius: 8px;
                overflow: hidden;
                background: #000;
            }
            .gbgb-gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.9;
                transition: opacity 0.3s, transform 0.5s;
            }
            .gbgb-gallery-item:hover img {
                opacity: 1;
                transform: scale(1.05);
            }

            /* --- FOOTER BUTTONS --- */
            .gbgb-footer-row {
                display: flex;
                gap: 20px;
                align-items: center;
            }

            .gbgb-btn {
                font-family: 'Montserrat', sans-serif;
                font-size: 11px;
                font-weight: 800;
                text-transform: uppercase;
                padding: 12px 24px;
                text-decoration: none;
                display: inline-block;
                cursor: pointer;
                transition: all 0.3s;
                letter-spacing: 0.5px;
            }

            .gbgb-btn-primary {
                background: #573a36;
                color: #fff;
                clip-path: polygon(90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%, 10% 0); /* Styled shape from ref */
                padding: 12px 30px; 
            }
            .gbgb-btn-primary:hover {
                filter: brightness(1.1);
                transform: translateY(-2px);
            }

            .gbgb-btn-outline {
                color: #fff;
                border-bottom: 1px solid transparent;
            }
            .gbgb-btn-outline:hover {
                border-bottom-color: #fff;
            }

            /* Editor Safety Case */
            .elementor-editor-active .gbgb-container {
                width: auto !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                left: auto !important;
                right: auto !important;
            }

            /* --- RESPONSIVE --- */
            @media (max-width: 767px) {
                .gbgb-trigger {
                    grid-template-columns: 1fr auto;
                    grid-template-areas: 
                        "type action"
                        "addr addr";
                    gap: 15px;
                }
                .gbgb-col-type { grid-area: type; }
                .gbgb-col-action { grid-area: action; }
                .gbgb-col-address { grid-area: addr; font-size: 14px; }
                
                .gbgb-inner-content {
                    padding-left: 0;
                }
                .gbgb-gallery {
                    grid-template-columns: 1fr; 
                }
            }


/* Source: new-widgets\pages\pages-contact-us.php */
.gb-contact-wrapper {
                padding: 60px 0;
            }
            .gb-contact__grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: start;
            }
            
            /* Left Info */
            .gb-contact__info {
                padding-right: 20px;
            }
            .gb-contact__heading {
                font-family: 'Playfair Display', serif;
                font-size: 36px;
                color: #111;
                margin-bottom: 20px;
                position: relative;
                display: inline-block;
            }
            .gb-contact__heading::after {
                content: '';
                display: block;
                width: 60px;
                height: 3px;
                background: #573a36;
                margin-top: 10px;
            }
            .gb-contact__desc {
                font-size: 16px;
                color: #666;
                margin-bottom: 40px;
                line-height: 1.6;
            }
            .gb-contact__item {
                display: flex;
                gap: 20px;
                margin-bottom: 30px;
            }
            .gb-contact__icon {
                font-size: 24px;
                color: #573a36;
                width: 50px;
                height: 50px;
                background: #f9f9f9;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
            .gb-contact__item-title {
                font-family: 'Playfair Display', serif;
                font-size: 18px;
                margin: 0 0 5px;
                color: #111;
            }
            .gb-contact__item-text {
                font-size: 15px;
                color: #666;
                line-height: 1.6;
            }
            .gb-contact__item-text a {
                color: inherit;
                text-decoration: none;
                transition: color 0.3s;
            }
            .gb-contact__item-text a:hover {
                color: #573a36;
            }

            /* Right Form */
            .gb-contact__form-col {
                background: #fff;
                padding: 40px;
                border-radius: 8px;
                border: 1px solid #eee;
                box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            }
            .gb-form-group {
                margin-bottom: 20px;
            }
            .gb-form-group label {
                display: block;
                margin-bottom: 8px;
                font-size: 13px;
                font-weight: 600;
                color: #444;
                font-family: 'DM Sans', sans-serif;
            }
            .gb-contact__form input,
            .gb-contact__form textarea {
                width: 100%;
                padding: 12px 15px;
                border: 1px solid #ddd;
                border-radius: 4px;
                font-size: 14px;
                font-family: 'DM Sans', sans-serif;
                transition: border-color 0.3s;
            }
            .gb-contact__form input:focus,
            .gb-contact__form textarea:focus {
                border-color: #573a36;
                outline: none;
            }
            
            .gb-contact__submit {
                background: #573a36;
                color: #fff;
                border: none;
                padding: 14px 30px;
                border-radius: 4px;
                font-size: 14px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.1em;
                cursor: pointer;
                transition: all 0.3s ease;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }
            .gb-contact__submit:hover {
                background: #3e2a27;
                transform: translateY(-2px);
            }
            
            .gb-form-status {
                margin-bottom: 20px;
                padding: 15px;
                border-radius: 4px;
                font-size: 14px;
            }
            .gb-form-status.success {
                background: #dcfce7;
                color: #166534;
                border: 1px solid #bbf7d0;
            }
            .gb-form-status.error {
                background: #fee2e2;
                color: #991b1b;
                border: 1px solid #fecaca;
            }

            @media (max-width: 900px) {
                .gb-contact__grid {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
                .gb-contact__info { padding-right: 0; }
            }


/* Source: new-widgets\pages\pages-careers-listing.php */
.gb-careers-list {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            .gb-job-card {
                background: #fff;
                border: 1px solid #eee;
                border-radius: 8px;
                overflow: hidden;
                transition: box-shadow 0.3s ease;
            }
            .gb-job-card:hover {
                box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            }
            
            .gb-job__header {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 24px 30px;
                background: none;
                border: none;
                cursor: pointer;
                text-align: left;
                transition: background 0.3s ease;
            }
            .gb-job__header:hover {
                background: #fcfcfc;
            }
            
            .gb-job__top-row {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 10px;
                flex-wrap: wrap;
            }
            .gb-job__title {
                font-family: 'Playfair Display', serif;
                font-size: 22px;
                margin: 0;
                color: #573a36;
            }
            .gb-job__dept-badge {
                font-size: 11px;
                background: #573a36;
                color: #fff;
                padding: 4px 8px;
                border-radius: 4px;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                font-weight: 600;
            }

            .gb-job__meta {
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
                font-family: 'DM Sans', sans-serif;
                font-size: 13px;
                color: #666;
            }
            .gb-job__meta-item {
                display: flex;
                align-items: center;
                gap: 6px;
            }
            .gb-job__toggle {
                font-size: 18px;
                color: #ccc;
                transition: transform 0.3s ease;
            }
            .gb-job-card.is-active .gb-job__toggle {
                transform: rotate(45deg);
                color: #573a36;
            }

            .gb-job__body {
                padding: 0 30px 30px 30px;
                border-top: 1px solid #f0f0f0;
                display: none; /* JS Toggle */
                animation: gb-slide-down 0.3s ease forwards;
            }
            @keyframes gb-slide-down {
                from { opacity: 0; transform: translateY(-10px); }
                to { opacity: 1; transform: translateY(0); }
            }
            
            .gb-job__content {
                padding: 20px 0;
                color: #444;
                line-height: 1.6;
                font-family: 'DM Sans', sans-serif;
            }
            .gb-job__apply {
                display: inline-block;
                padding: 12px 28px;
                background: #573a36;
                color: #fff;
                font-size: 13px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.1em;
                text-decoration: none;
                border-radius: 4px;
                transition: all 0.3s ease;
            }
            .gb-job__apply:hover {
                background: #3e2a27;
                transform: translateY(-2px);
            }
            
            /* Empty State */
            .gb-careers-empty {
                text-align: center;
                padding: 40px;
                background: #f9f9f9;
                border-radius: 8px;
                color: #666;
                font-style: italic;
            }

            /* General CTA */
            .gb-careers-cta {
                margin-top: 20px;
                text-align: center;
                padding: 30px;
                background: #fff;
                border: 1px dashed #ddd;
                border-radius: 8px;
            }
            .gb-careers-cta__text {
                margin-bottom: 20px;
                color: #555;
                font-size: 15px;
            }
            .gb-careers-cta__btn {
                display: inline-block;
                padding: 10px 24px;
                border: 1px solid #573a36;
                color: #573a36;
                border-radius: 4px;
                text-transform: uppercase;
                font-size: 12px;
                font-weight: 700;
                letter-spacing: 0.1em;
                text-decoration: none;
                transition: all 0.3s ease;
            }
            .gb-careers-cta__btn:hover {
                background: #573a36;
                color: #fff;
            }

            @media (max-width: 767px) {
                .gb-job__header {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 15px;
                }
                .gb-job__toggle {
                    position: absolute;
                    right: 20px;
                    top: 24px;
                }
                .gb-job-card { position: relative; }
            }


/* Source: new-widgets\pages\pages-blog-grid.php */
.gbbg-container { position: relative; overflow: hidden; }
            body:not(.elementor-editor-active) .gbbg-container { width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
            .elementor-editor-active .gbbg-container { width: 100%; left: auto; right: auto; margin-left: 0; margin-right: 0; }
            .gbbg-hero { position: relative; height: 450px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; }
            .gbbg-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
            .gbbg-hero-content { position: relative; z-index: 5; color: #fff; }
            .gbbg-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(40px, 8vw, 80px); font-weight: 900; text-transform: uppercase; margin: 0; letter-spacing: 2px; }
            .gbbg-breadcrumbs { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; display: flex; gap: 8px; justify-content: center; margin-top: 15px; opacity: 0.8; }
            .gbbg-breadcrumbs a { color: #fff; text-decoration: none; }
            .gbbg-watermark { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); font-family: 'Playfair Display', serif; font-size: 18vw; font-weight: 900; color: rgba(255,255,255,0.08); white-space: nowrap; pointer-events: none; }
            
            .gbbg-main-wrapper { max-width: 1400px; margin: 0 auto; padding: 100px 20px; }
            .gbbg-filters { display: flex; gap: 15px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }
            .gbbg-pill { padding: 10px 24px; border: 1px solid #ddd; background: #fff; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; cursor: pointer; transition: 0.3s; text-transform: uppercase; }
            .gbbg-pill.active { color: #fff; }

            .gbbg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 40px; }
            
            .gbbg-card { background: transparent; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; }
            .gbbg-card-link { color: inherit; display: block; text-decoration: none; }
            .gbbg-thumb { position: relative; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 45px rgba(0,0,0,0.06); margin-bottom: 25px; }
            .gbbg-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
            .gbbg-card:hover .gbbg-thumb img { transform: scale(1.05); }
            .gbbg-date { position: absolute; bottom: 20px; left: 20px; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; color: #fff; background: rgba(0,0,0,0.3); padding: 4px 10px; border-radius: 4px; }
            .gbbg-read-time { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 700; color: #888; margin-bottom: 10px; letter-spacing: 1px; }
            .gbbg-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: #1a1a1a; text-transform: uppercase; margin: 0; transition: 0.3s; }
            .gbbg-card:hover .gbbg-title { color: #573a36; }

            .gbbg-cta-card { background: #573a36; padding: 50px; color: #fff; text-align: center; border-radius: 8px; display: flex; flex-direction: column; justify-content: center; }
            .gbbg-cta-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; margin-bottom: 15px; }
            .gbbg-cta-desc { font-family: 'Montserrat', sans-serif; font-size: 14px; margin-bottom: 30px; opacity: 0.9; }
            .gbbg-cta-btn { background: #fff; color: #1a1a1a; padding: 12px 30px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 800; text-decoration: none; align-self: center; transition: 0.3s; }
            .gbbg-cta-btn:hover { transform: translateY(-3px); }

            .gbbg-action-row { text-align: center; margin-top: 80px; }
            .gbbg-btn-load { padding: 15px 40px; border: 1px solid #1a1a1a; background: transparent; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 800; cursor: pointer; transition: 0.3s; }
            .gbbg-btn-load:hover { background: #1a1a1a; color: #fff; }

            @media (max-width: 767px) {
                .gbbg-grid { grid-template-columns: 1fr; }
                .gbbg-hero { height: 350px; }
                .gbbg-watermark { display: none; }
            }


/* Source: new-widgets\pages\pages-benefits-grid.php */
.gb-benefits-wrapper {
                width: 100%;
            }
            .gb-benefit-header {
                text-align: center;
                margin-bottom: 50px;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }
            .gb-benefit-header__title {
                font-family: 'Playfair Display', serif;
                font-size: 36px;
                color: #111;
                margin-bottom: 15px;
                position: relative;
                display: inline-block;
                padding-bottom: 15px;
            }
            .gb-benefit-header__title::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 3px;
                background-color: #573a36; /* Accent */
            }
            .gb-benefit-header__subtitle {
                font-size: 16px;
                color: #666;
                line-height: 1.6;
            }

            .gb-benefits-grid {
                display: grid;
                gap: 30px;
            }
            .gb-benefit-card {
                background: #fff;
                padding: 40px 30px;
                border-radius: 8px;
                border: 1px solid #f0f0f0;
                text-align: center;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }
            
            /* Hover Effects */
            .gb-hover-uplift:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 30px rgba(0,0,0,0.08);
                border-color: transparent;
            }
            .gb-hover-scale:hover .gb-benefit__icon {
                transform: scale(1.1);
            }

            .gb-benefit__icon {
                font-size: 40px;
                margin-bottom: 25px;
                color: #573a36;
                transition: transform 0.3s ease;
            }
            .gb-benefit__title {
                font-family: 'Playfair Display', serif;
                font-size: 20px;
                margin: 0 0 15px;
                color: #111;
            }
            .gb-benefit__desc {
                font-size: 15px;
                color: #666;
                line-height: 1.6;
                margin-bottom: 20px;
            }
            .gb-benefit__link {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-size: 13px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                color: #573a36;
                text-decoration: none;
                transition: gap 0.3s ease;
            }
            .gb-benefit__link:hover {
                gap: 10px;
            }

            /* --- Mobile Responsiveness --- */
            @media (max-width: 768px) {
                .gb-benefits-grid {
                    grid-template-columns: 1fr !important; /* Force single column on mobile */
                    gap: 20px;
                }

                .gb-benefit-card {
                    padding: 30px 20px; /* Touch friendly padding */
                    margin: 0 auto;
                    max-width: 100%; 
                }

                .gb-benefit__link {
                    display: inline-flex;
                    justify-content: center;
                    width: 100%;
                    max-width: 280px; /* Prevent button from blowing up */
                    padding: 12px 20px;
                    border-radius: 4px;
                    text-align: center;
                    background: rgba(87, 58, 54, 0.05); /* Subtle CTA background on mobile */
                    min-height: 44px; /* Essential touch target height */
                }
            }


/* Source: new-widgets\pages\pages-application-form.php */
.gb-app-form-wrapper {
                background: #f9f9f9;
                padding: 40px;
                border-radius: 8px;
            }
            .gb-app-form__title {
                font-family: 'Playfair Display', serif;
                font-size: 24px;
                margin-bottom: 25px;
                color: #111;
            }
            .gb-form-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-bottom: 20px;
            }
            .gb-form-group {
                margin-bottom: 20px;
            }
            .gb-form-group label {
                display: block;
                margin-bottom: 8px;
                font-size: 13px;
                font-family: 'DM Sans', sans-serif;
                font-weight: 600;
                color: #555;
            }
            .gb-form-group input[type="text"],
            .gb-form-group input[type="email"],
            .gb-form-group input[type="tel"],
            .gb-form-group textarea {
                width: 100%;
                padding: 12px 15px;
                border: 1px solid #ddd;
                border-radius: 4px;
                font-size: 14px;
                font-family: 'DM Sans', sans-serif;
                transition: border-color 0.3s ease;
            }
            .gb-form-group input:focus,
            .gb-form-group textarea:focus {
                border-color: #573a36;
                outline: none;
            }
            
            /* Privacy Checkbox */
            .gb-privacy-check {
                margin-top: 10px;
            }
            .gb-checkbox-label {
                display: flex !important;
                align-items: center;
                gap: 10px;
                font-weight: 400 !important;
                cursor: pointer;
            }
            .gb-checkbox-label input {
                width: auto !important;
                margin: 0;
            }
            
            /* File Upload Styling */
            .gb-file-upload {
                position: relative;
                overflow: hidden;
                display: inline-block;
                width: 100%;
            }
            .gb-file-upload input[type=file] {
                font-size: 100px;
                position: absolute;
                left: 0;
                top: 0;
                opacity: 0;
                cursor: pointer;
            }
            .gb-file-custom {
                display: block;
                background: #fff;
                border: 1px dashed #ccc;
                padding: 12px 15px;
                border-radius: 4px;
                color: #5f524d;
                font-size: 14px;
                text-align: center;
                transition: all 0.3s ease;
            }
            .gb-file-custom:hover {
                border-color: #573a36;
                color: #573a36;
            }
            .gb-file-custom.has-file {
                border-style: solid;
                border-color: #166534;
                color: #166534;
                background: #dcfce7;
            }

            .gb-app-form__submit {
                background: #573a36;
                color: #fff;
                border: none;
                padding: 14px 30px;
                border-radius: 4px;
                font-size: 14px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.1em;
                cursor: pointer;
                transition: all 0.3s ease;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }
            .gb-app-form__submit:hover {
                background: #3e2a27;
                transform: translateY(-2px);
            }
            .gb-app-form__submit:disabled {
                opacity: 0.7;
                cursor: not-allowed;
            }

            .gb-form-status {
                margin-bottom: 20px;
                padding: 15px;
                border-radius: 4px;
                font-size: 14px;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .gb-form-status.success {
                background: #dcfce7;
                color: #166534;
                border: 1px solid #bbf7d0;
            }
            .gb-form-status.error {
                background: #fee2e2;
                color: #991b1b;
                border: 1px solid #fecaca;
            }

            @media (max-width: 767px) {
                .gb-form-row { grid-template-columns: 1fr; gap: 0; }
                .gb-app-form-wrapper { padding: 25px; }
            }


/* Source: new-widgets\interactive-timeline.php */
/* ========================================
               GB Interactive Timeline - Scoped Styles
               Using !important to override theme styles
               Performance-optimized CSS animations
            ======================================== */
            
            .gbtl-section {
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }

            .gbtl-section *,
            .gbtl-section *::before,
            .gbtl-section *::after {
                box-sizing: border-box !important;
            }

            .gbtl-container {
                max-width: 1300px !important;
                margin: 0 auto !important;
            }

            /* Header Animations */
            .gbtl-header {
                text-align: center !important;
                margin-bottom: 3rem !important;
            }

            .gbtl-section [data-animate] {
                opacity: 0 !important;
                transform: translateY(20px) !important;
                transition: opacity 0.6s ease, transform 0.6s ease !important;
            }

            .gbtl-section [data-animate].gbtl-animated {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }

            .gbtl-section [data-animate="icon"] { transition-delay: 0s !important; }
            .gbtl-section [data-animate="eyebrow"] { transition-delay: 0.1s !important; }
            .gbtl-section [data-animate="title"] { transition-delay: 0.2s !important; }
            .gbtl-section [data-animate="featured"] { transition-delay: 0.3s !important; }
            .gbtl-section [data-animate="timeline"] { transition-delay: 0.4s !important; }

            .gbtl-top-icon {
                margin-bottom: 0.75rem !important;
                line-height: 1 !important;
            }

            .gbtl-top-icon i,
            .gbtl-top-icon svg {
                display: inline-block !important;
                font-size: 28px !important;
                width: 28px !important;
                height: 28px !important;
                animation: gbtlPulse 2s ease-in-out infinite !important;
            }

            @keyframes gbtlPulse {
                0%, 100% { transform: scale(1); }
                50% { transform: scale(1.1); }
            }

            .gbtl-eyebrow {
                display: block !important;
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.7rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.2em !important;
                text-transform: uppercase !important;
                margin-bottom: 0.75rem !important;
            }

            .gbtl-main-title {
                font-family: 'Playfair Display', Georgia, serif !important;
                font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
                font-weight: 700 !important;
                line-height: 1.25 !important;
                margin: 0 !important;
            }

            /* Featured Section */
            .gbtl-featured {
                position: relative !important;
                margin-bottom: 3rem !important;
            }

            .gbtl-image-wrap {
                position: relative !important;
                width: 100% !important;
                overflow: hidden !important;
                border-radius: 8px !important;
            }

            .gbtl-figure {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                margin: 0 !important;
                opacity: 0 !important;
                transition: opacity 0.5s ease !important;
                will-change: opacity !important;
            }

            .gbtl-figure:first-child {
                position: relative !important;
            }

            .gbtl-figure.gbtl-visible {
                opacity: 1 !important;
                z-index: 1 !important;
            }

            .gbtl-image {
                width: 100% !important;
                height: auto !important;
                aspect-ratio: 16 / 9 !important;
                object-fit: cover !important;
                display: block !important;
                transition: transform 0.4s ease !important;
            }

            @media (min-width: 768px) {
                .gbtl-image-wrap:hover .gbtl-image {
                    transform: scale(1.03) !important;
                }
            }

            /* Card */
            .gbtl-card {
                position: relative !important;
                padding: 1.5rem !important;
                margin-top: 1rem !important;
                box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
            }

            .gbtl-card-content {
                display: none !important;
            }

            .gbtl-card-content.gbtl-visible {
                display: block !important;
                animation: gbtlFadeIn 0.4s ease !important;
            }

            @keyframes gbtlFadeIn {
                from { opacity: 0; transform: translateY(10px); }
                to { opacity: 1; transform: translateY(0); }
            }

            .gbtl-card-label {
                display: block !important;
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.65rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.15em !important;
                text-transform: uppercase !important;
                opacity: 0.85 !important;
                margin-bottom: 0.5rem !important;
            }

            .gbtl-card-title {
                font-family: 'Playfair Display', Georgia, serif !important;
                font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
                font-weight: 700 !important;
                margin: 0 0 0.75rem 0 !important;
            }

            .gbtl-card-desc {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.85rem !important;
                line-height: 1.7 !important;
                margin: 0 !important;
                opacity: 0.9 !important;
            }

            /* Desktop: Overlapping Card */
            @media (min-width: 900px) {
                .gbtl-featured {
                    display: grid !important;
                    grid-template-columns: 1fr 1fr !important;
                    gap: 0 !important;
                    align-items: center !important;
                }

                .gbtl-image-wrap {
                    grid-column: 1 / -1 !important;
                    grid-row: 1 !important;
                    margin-left: 25% !important;
                }

                .gbtl-card {
                    grid-column: 1 !important;
                    grid-row: 1 !important;
                    position: relative !important;
                    z-index: 2 !important;
                    max-width: 380px !important;
                    margin: 0 !important;
                    padding: 2rem !important;
                    align-self: center !important;
                }
            }

            @media (min-width: 1100px) {
                .gbtl-card {
                    max-width: 420px !important;
                    padding: 2.5rem !important;
                }
            }

            /* Timeline Navigation */
            .gbtl-timeline {
                position: relative !important;
                padding-top: 2rem !important;
            }

            .gbtl-timeline-line {
                position: absolute !important;
                top: 2rem !important;
                left: 0 !important;
                right: 0 !important;
                height: 2px !important;
            }

            .gbtl-milestones {
                display: flex !important;
                justify-content: space-between !important;
                gap: 0.5rem !important;
                overflow-x: auto !important;
                scrollbar-width: none !important;
                -ms-overflow-style: none !important;
                scroll-behavior: smooth !important;
                padding-bottom: 0.5rem !important;
                -webkit-overflow-scrolling: touch !important;
            }

            .gbtl-milestones::-webkit-scrollbar {
                display: none !important;
            }

            .gbtl-milestone {
                flex-shrink: 0 !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 0.75rem !important;
                background: none !important;
                border: none !important;
                padding: 0 !important;
                cursor: pointer !important;
                min-width: 100px !important;
                min-height: 44px !important;
                font-family: inherit !important;
                transition: transform 0.2s ease !important;
            }

            .gbtl-milestone:hover {
                transform: translateY(-2px) !important;
            }

            .gbtl-milestone:focus {
                outline: 2px solid currentColor !important;
                outline-offset: 4px !important;
            }

            .gbtl-dot {
                width: 12px !important;
                height: 12px !important;
                border-radius: 50% !important;
                transition: transform 0.3s ease, box-shadow 0.3s ease !important;
            }

            .gbtl-milestone.gbtl-active .gbtl-dot {
                transform: scale(1.4) !important;
                box-shadow: 0 0 0 4px rgba(168, 52, 63, 0.2) !important;
            }

            .gbtl-milestone-text {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.7rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.05em !important;
                text-transform: uppercase !important;
                text-align: center !important;
                line-height: 1.4 !important;
                transition: opacity 0.3s ease !important;
            }

            .gbtl-milestone:not(.gbtl-active) .gbtl-milestone-text {
                opacity: 0.6 !important;
            }

            .gbtl-year {
                display: block !important;
                font-weight: 700 !important;
            }

            .gbtl-label {
                display: block !important;
                font-weight: 500 !important;
            }

            /* Mobile Responsive */
            @media (max-width: 767px) {
                .gbtl-header {
                    margin-bottom: 2rem !important;
                }

                .gbtl-card {
                    margin-top: -1rem !important;
                    margin-left: 1rem !important;
                    margin-right: 1rem !important;
                }

                .gbtl-milestone {
                    min-width: 90px !important;
                }

                .gbtl-milestone-text {
                    font-size: 0.65rem !important;
                }
            }

            /* Reduced Motion */
            @media (prefers-reduced-motion: reduce) {
                .gbtl-section [data-animate] {
                    opacity: 1 !important;
                    transform: none !important;
                    transition: none !important;
                }

                .gbtl-top-icon i,
                .gbtl-top-icon svg {
                    animation: none !important;
                }

                .gbtl-figure,
                .gbtl-image,
                .gbtl-card-content,
                .gbtl-milestone,
                .gbtl-dot {
                    transition: none !important;
                }
            }


/* Source: new-widgets\features-showcase.php */
/* ========================================
               GB Features Showcase - Scoped Styles
               Using !important to override theme styles
            ======================================== */
            
            .gbfs-section {
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .gbfs-section *,
            .gbfs-section *::before,
            .gbfs-section *::after {
                box-sizing: border-box !important;
            }

            .gbfs-container {
                max-width: 1100px !important;
                margin: 0 auto !important;
            }

            /* Header */
            .gbfs-header {
                text-align: center !important;
                margin-bottom: 3.5rem !important;
            }

            .gbfs-top-icon {
                margin-bottom: 1rem !important;
                line-height: 1 !important;
            }

            .gbfs-top-icon i,
            .gbfs-top-icon svg {
                display: inline-block !important;
            }

            .gbfs-label {
                display: block !important;
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.7rem !important;
                font-weight: 600 !important;
                letter-spacing: 0.2em !important;
                text-transform: uppercase !important;
                color: #573a36 !important;
                margin-bottom: 0.75rem !important;
            }

            .gbfs-main-title {
                font-family: 'Playfair Display', Georgia, serif !important;
                font-size: clamp(1.5rem, 4vw, 2.25rem) !important;
                font-weight: 700 !important;
                line-height: 1.35 !important;
                margin: 0 !important;
            }

            /* Grid Layout */
            .gbfs-grid {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }

            @media (min-width: 600px) {
                .gbfs-grid {
                    grid-template-columns: repeat(2, 1fr) !important;
                }
            }

            @media (min-width: 900px) {
                .gbfs-grid {
                    grid-template-columns: repeat(3, 1fr) !important;
                }

                /* 5 items: center last 2 */
                .gbfs-grid-5 {
                    display: flex !important;
                    flex-wrap: wrap !important;
                    justify-content: center !important;
                    gap: 1.5rem !important;
                }

                .gbfs-grid-5 .gbfs-card {
                    flex: 0 0 calc(33.333% - 1rem) !important;
                    max-width: calc(33.333% - 1rem) !important;
                }

                .gbfs-grid-5 .gbfs-card:nth-child(4),
                .gbfs-grid-5 .gbfs-card:nth-child(5) {
                    flex: 0 0 calc(33.333% - 1rem) !important;
                    max-width: calc(33.333% - 1rem) !important;
                }
            }

            /* Feature Cards */
            .gbfs-card {
                text-align: left !important;
            }

            /* Icon */
            .gbfs-icon {
                margin-bottom: 1.25rem !important;
                line-height: 1 !important;
            }

            .gbfs-icon svg {
                display: inline-block !important;
            }

            /* Feature Title */
            .gbfs-card-title {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.8rem !important;
                font-weight: 700 !important;
                letter-spacing: 0.08em !important;
                text-transform: uppercase !important;
                margin: 0 0 0.75rem 0 !important;
            }

            /* Feature Description */
            .gbfs-card-desc {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
                font-size: 0.85rem !important;
                line-height: 1.65 !important;
                color: #5f524d !important;
                margin: 0 !important;
            }


/* Source: widgets\restaurant-history\widget.php */
/* Floating Animation for G Badge */
            @keyframes float {
                0%, 100% { transform: translateY(0px) rotate(0deg); }
                50% { transform: translateY(-15px) rotate(5deg); }
            }
            .animate-float {
                animation: float 4s ease-in-out infinite;
            }

            /* Rotating G Border Animation */
            @keyframes rotateBorder {
                from { transform: rotate(0deg); }
                to { transform: rotate(360deg); }
            }
            .rotating-g-border {
                animation: rotateBorder 20s linear infinite;
            }
            
            /* Grid Pattern Responsive */
            @media (max-width: 768px) {
                .grid-pattern-container {
                    grid-template-columns: repeat(8, 1fr) !important;
                    font-size: 1.5rem !important;
                }
            }

/* Accessibility contrast hardening for Elementor-saved legacy widget output. */
.gbah-award-label,
.gbfs-label {
    color: #573a36 !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.gbdf-dish-desc {
    color: #4f403d !important;
    opacity: 1 !important;
}

.gbnu-date {
    color: #f7eadc !important;
    opacity: 1 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.65) !important;
}
