.elementor-1483 .elementor-element.elementor-element-5587dab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1483 .elementor-element.elementor-element-d60a678{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1483 .elementor-element.elementor-element-eaa6340{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1483 .elementor-element.elementor-element-ec84f0b{--display:flex;}/* Start custom CSS for global, class: .elementor-global-1491 *//* ========================================================================
   Complete Navigation Section - Strictly Scoped CSS
   ======================================================================== */
#gmb-nav-section {
    --gmb-nav-orange: #ff6b00;
    --gmb-nav-orange-hover: #e65c00;
    --gmb-nav-text-gray: #4b5563;
    --gmb-nav-bg: #ffffff;
    
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
}

#gmb-nav-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top Orange Banner */
#gmb-nav-section .gmb-nav-top-banner {
    background-color: var(--gmb-nav-orange);
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Main Header */
#gmb-nav-section .gmb-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--gmb-nav-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999; /* Critical: keeps dropdown above the hero section */
}

#gmb-nav-section .gmb-nav-logo img {
    height: 50px;
    background-color: #f3f4f6;
    border-radius: 4px;
    display: block;
}

/* Navigation Links */
#gmb-nav-section .gmb-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

#gmb-nav-section .gmb-nav-links a {
    text-decoration: none;
    color: var(--gmb-nav-text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

#gmb-nav-section .gmb-nav-links > li > a:hover {
    color: var(--gmb-nav-orange);
}

/* =========================================================
   Dropdown Menu Mechanics
   ========================================================= */
#gmb-nav-section .gmb-dropdown {
    position: relative;
    /* This padding creates an invisible bridge so the hover doesn't break */
    padding: 20px 0; 
    margin: -20px 0;
}

#gmb-nav-section .gmb-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px; /* Aligns visually with the text */
    background-color: var(--gmb-nav-bg);
    min-width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    
    /* Animation defaults (Hidden) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
}

/* Hover State: Shows the menu */
#gmb-nav-section .gmb-dropdown:hover .gmb-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#gmb-nav-section .gmb-dropdown-menu li {
    width: 100%;
}

#gmb-nav-section .gmb-dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--gmb-nav-text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

#gmb-nav-section .gmb-dropdown-menu a:hover {
    background-color: #f8fafc;
    color: var(--gmb-nav-orange);
}

/* Call to Action Button */
#gmb-nav-section .gmb-nav-btn {
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    display: inline-block;
    background-color: var(--gmb-nav-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

#gmb-nav-section .gmb-nav-btn:hover {
    background-color: var(--gmb-nav-orange-hover);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    #gmb-nav-section .gmb-nav-links { 
        display: none; 
    } 
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9128ed8 *//* ========================================================================
   Website Design Section - Strictly Scoped CSS
   ======================================================================== */
#gmb-web-design-section {
    --web-orange: #ff6b00;
    --web-orange-hover: #e65c00;
    --web-dark: #0d1b2a;
    --web-text: #1f2937;
    --web-gray: #4b5563;
    --web-bg: #fdfdfd;
    --web-grid: rgba(0, 0, 0, 0.04);

    background-color: var(--web-bg);
    width: 100%;
    padding: 80px 5%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Subtle Grid Background */
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, var(--web-grid) 1px, transparent 1px), 
        linear-gradient(to bottom, var(--web-grid) 1px, transparent 1px);
}

#gmb-web-design-section * { box-sizing: border-box; margin: 0; padding: 0; }

#gmb-web-design-section .web-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
#gmb-web-design-section .web-badge {
    background: #fff0e6;
    color: var(--web-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}
#gmb-web-design-section h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; color: #111; letter-spacing: -1px; }
#gmb-web-design-section h2 span { color: var(--web-orange); }
#gmb-web-design-section p { color: var(--web-gray); font-size: 1.1rem; line-height: 1.6; margin-bottom: 25px; }

/* Buttons */
#gmb-web-design-section .web-btns { display: flex; gap: 15px; margin-bottom: 30px; }
#gmb-web-design-section .btn { padding: 12px 24px; border-radius: 30px; font-weight: 700; text-decoration: none; display: inline-block; }
#gmb-web-design-section .btn-primary { background: var(--web-orange); color: white; }
#gmb-web-design-section .btn-secondary { background: white; border: 1px solid #ddd; color: #333; }

/* Feature tags */
#gmb-web-design-section .web-tags { display: flex; flex-wrap: wrap; gap: 10px; }
#gmb-web-design-section .tag { background: white; padding: 8px 15px; border: 1px solid #eee; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }

/* Right Visual Card */
#gmb-web-design-section .web-visual-card {
    background: var(--web-dark);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #ff6b00; /* Border styling to match visual */
}

#gmb-web-design-section .web-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
}
#gmb-web-design-section .web-icon { background: var(--web-orange); padding: 5px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: 800; min-width: 40px; text-align: center; }
#gmb-web-design-section .web-item h4 { margin-bottom: 5px; }
#gmb-web-design-section .web-item p { font-size: 0.85rem; color: #cbd5e1; margin: 0; }
#gmb-web-design-section .check { margin-left: auto; color: white; font-weight: bold; }

@media (max-width: 992px) {
    #gmb-web-design-section .web-container { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1fc5a30 *//* ========================================================================
   Website Matters Section - Strictly Scoped CSS
   ======================================================================== */
#gmb-website-matters-section {
    --gmb-wm-bg: #ffffff;
    --gmb-wm-dark: #0c1427; /* Deep Navy */
    --gmb-wm-orange: #ff6b00;
    --gmb-wm-text: #1f2937;
    --gmb-wm-gray: #475569;
    
    background-color: var(--gmb-wm-bg);
    padding: 80px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
}

#gmb-website-matters-section * { box-sizing: border-box; margin: 0; padding: 0; }

#gmb-website-matters-section .gmb-wm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

/* --- Left Column: The Dark Card --- */
#gmb-website-matters-section .gmb-wm-left {
    flex: 1;
    min-width: 350px;
    background-color: var(--gmb-wm-dark);
    color: white;
    padding: 50px;
    border-radius: 20px;
    border-top: 4px solid var(--gmb-wm-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

#gmb-website-matters-section .gmb-wm-kicker {
    color: var(--gmb-wm-orange);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 20px;
}

#gmb-website-matters-section .gmb-wm-left h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

#gmb-website-matters-section .gmb-wm-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* --- Right Column: The Details --- */
#gmb-website-matters-section .gmb-wm-right {
    flex: 1;
    min-width: 350px;
}

#gmb-website-matters-section .gmb-wm-right h2 {
    font-size: 2.2rem;
    color: var(--gmb-wm-text);
    margin-bottom: 15px;
}

#gmb-website-matters-section .gmb-wm-right p {
    color: var(--gmb-wm-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* --- Checklist Styling --- */
#gmb-website-matters-section .gmb-wm-list {
    list-style: none;
}

#gmb-website-matters-section .gmb-wm-list li {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

#gmb-website-matters-section .gmb-wm-list li::before {
    content: "\2713"; /* Unicode Checkmark */
    color: var(--gmb-wm-orange);
    font-weight: bold;
    margin-right: 12px;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    #gmb-website-matters-section .gmb-wm-container { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2f64a85 *//* ========================================================================
   Services Steps Section - Strictly Scoped CSS
   ======================================================================== */
#gmb-services-steps-section {
    --gmb-ss-orange: #ff6b00;
    --gmb-ss-text-dark: #0f172a;
    --gmb-ss-text-gray: #475569;
    --gmb-ss-bg: #ffffff;
    --gmb-ss-card-bg: #ffffff;
    --gmb-ss-border: #e2e8f0;
    
    background-color: var(--gmb-ss-bg);
    padding: 80px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
}

#gmb-services-steps-section * { box-sizing: border-box; margin: 0; padding: 0; }

#gmb-services-steps-section .gmb-ss-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#gmb-services-steps-section .gmb-ss-kicker {
    color: var(--gmb-ss-orange);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

#gmb-services-steps-section h2 {
    font-size: 2.5rem;
    color: var(--gmb-ss-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

#gmb-services-steps-section .gmb-ss-desc {
    color: var(--gmb-ss-text-gray);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* --- Grid Layout --- */
#gmb-services-steps-section .gmb-ss-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* --- Cards --- */
#gmb-services-steps-section .gmb-ss-card {
    background: var(--gmb-ss-card-bg);
    border: 1px solid var(--gmb-ss-border);
    padding: 40px 25px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#gmb-services-steps-section .gmb-ss-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

#gmb-services-steps-section .gmb-ss-number {
    color: var(--gmb-ss-orange);
    background: #fff0e6;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

#gmb-services-steps-section .gmb-ss-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--gmb-ss-text-dark);
}

#gmb-services-steps-section .gmb-ss-card p {
    font-size: 0.9rem;
    color: var(--gmb-ss-text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    #gmb-services-steps-section .gmb-ss-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    #gmb-services-steps-section .gmb-ss-grid { grid-template-columns: 1fr; }
    #gmb-services-steps-section h2 { font-size: 2rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8f950b2 *//* ========================================================================
   Build Process Section - Strictly Scoped CSS
   ======================================================================== */
#gmb-build-process-section {
    --gmb-bp-bg: #0c1427; /* Dark navy background */
    --gmb-bp-orange: #ff6b00;
    --gmb-bp-text-white: #ffffff;
    --gmb-bp-text-gray: #94a3b8;
    --gmb-bp-card-bg: rgba(255, 255, 255, 0.05);
    
    background-color: var(--gmb-bp-bg);
    padding: 100px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--gmb-bp-text-white);
    width: 100%;
}

#gmb-build-process-section * { box-sizing: border-box; margin: 0; padding: 0; }

#gmb-build-process-section .gmb-bp-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#gmb-build-process-section .gmb-bp-kicker {
    color: var(--gmb-bp-orange);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

#gmb-build-process-section .gmb-bp-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layout */
#gmb-build-process-section .gmb-bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Cards */
#gmb-build-process-section .gmb-bp-card {
    background-color: var(--gmb-bp-card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#gmb-build-process-section .gmb-bp-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

#gmb-build-process-section .gmb-bp-number {
    color: var(--gmb-bp-orange);
    background: #ff6b0033; /* Light transparent orange */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

#gmb-build-process-section .gmb-bp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

#gmb-build-process-section .gmb-bp-card p {
    font-size: 0.9rem;
    color: var(--gmb-bp-text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    #gmb-build-process-section .gmb-bp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    #gmb-build-process-section .gmb-bp-grid { grid-template-columns: 1fr; }
    #gmb-build-process-section .gmb-bp-title { font-size: 2rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-794329d *//* ========================================================================
   Project Request Section - Strictly Scoped CSS
   ======================================================================== */
#gmb-project-request-section {
    --gmb-pr-orange: #ff6b00;
    --gmb-pr-orange-hover: #e65c00;
    --gmb-pr-dark: #0f172a;
    --gmb-pr-text: #1f2937;
    --gmb-pr-gray: #475569;
    --gmb-pr-white: #ffffff;
    --gmb-pr-bg: #fdfdfd;

    background-color: var(--gmb-pr-bg);
    padding: 80px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
}

#gmb-project-request-section * { box-sizing: border-box; margin: 0; padding: 0; }

#gmb-project-request-section .gmb-pr-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
}

/* --- Left Column --- */
#gmb-project-request-section .gmb-pr-left { flex: 1; min-width: 350px; }
#gmb-project-request-section .gmb-pr-kicker { color: var(--gmb-pr-orange); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; display: block; }
#gmb-project-request-section h2 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 25px; color: var(--gmb-pr-dark); }
#gmb-project-request-section p { color: var(--gmb-pr-gray); margin-bottom: 30px; line-height: 1.6; }

#gmb-project-request-section .gmb-pr-checklist { list-style: none; }
#gmb-project-request-section .gmb-pr-checklist li { margin-bottom: 12px; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; color: var(--gmb-pr-dark); }
#gmb-project-request-section .gmb-pr-checklist li::before { content: "\2713"; color: var(--gmb-pr-orange); font-weight: bold; margin-right: 10px; }

/* --- Right Column (The Form Card) --- */
#gmb-project-request-section .gmb-pr-right { flex: 1; min-width: 350px; }
#gmb-project-request-section .gmb-pr-form-card {
    background: var(--gmb-pr-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}

#gmb-project-request-section .gmb-pr-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
#gmb-project-request-section .gmb-pr-full { grid-column: span 2; }
#gmb-project-request-section label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: var(--gmb-pr-dark); }
#gmb-project-request-section input, 
#gmb-project-request-section select,
#gmb-project-request-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
}
#gmb-project-request-section textarea { height: 120px; }

#gmb-project-request-section .gmb-pr-submit {
    width: 100%;
    background: var(--gmb-pr-orange);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}
#gmb-project-request-section .gmb-pr-submit:hover { background: var(--gmb-pr-orange-hover); }
#gmb-project-request-section .gmb-pr-disclaimer { text-align: center; font-size: 0.8rem; color: #64748b; margin-top: 15px; }

@media (max-width: 768px) {
    #gmb-project-request-section .gmb-pr-form-grid { grid-template-columns: 1fr; }
    #gmb-project-request-section .gmb-pr-full { grid-column: span 1; }
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-1523 */.gmbg-footer-wrap {
  box-sizing: border-box;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.gmbg-footer-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.gmbg-footer-wrap a { color: inherit; text-decoration: none; }

.gmbg-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.gmbg-footer-showcase {
  padding: 28px 0 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.gmbg-footer-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.gmbg-footer-promo-card {
  position: relative;
  min-height: 300px;
  border-radius: 16px;
  background: linear-gradient(120deg, #06142b 0%, #081a36 48%, #112745 100%);
  border: 1px solid rgba(7, 22, 45, 0.08);
  isolation: isolate;
  overflow: hidden;
}

.gmbg-footer-promo-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 84% 18%, rgba(255, 191, 31, 0.25), transparent 18%),
              linear-gradient(90deg, rgba(6, 20, 43, 0.98) 0%, rgba(6, 20, 43, 0.50) 62%, rgba(6, 20, 43, 0.18) 100%);
}

.gmbg-footer-promo-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 0.52fr 0.48fr; height: 100%;
}

.gmbg-footer-copy { padding: 22px 26px; color: #ffffff; display: flex; flex-direction: column; justify-content: center; }
.gmbg-footer-copy h3 { font-size: clamp(28px, 3vw, 40px); text-transform: uppercase; margin-bottom: 10px; }
.gmbg-footer-copy p { color: rgba(255,255,255,0.78); font-size: 14px; margin-bottom: 16px; }

.gmbg-footer-service-list { list-style: none; display: grid; gap: 9px; }
.gmbg-footer-service-list li { display: flex; gap: 10px; font-size: 14px; font-weight: 800; color: #ffffff; }
.gmbg-footer-service-list li::before {
  content: "✓"; background: #ff5a00; width: 18px; height: 18px; border-radius: 999px;
  display: grid; place-items: center; font-size: 11px; flex: 0 0 auto;
}

.gmbg-footer-photo-panel { display: flex; align-items: flex-end; padding: 18px; }
.gmbg-footer-photo-placeholder {
  width: 100%; min-height: 220px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.82);
  display: flex; align-items: flex-end; justify-content: center; padding: 16px;
}
.gmbg-footer-photo-placeholder.van { background: radial-gradient(circle at 18% 70%, rgba(255, 90, 0, 0.18), transparent 18%); }

.gmbg-footer-mini-form { display: grid; grid-template-columns: 1fr; gap: 10px; }
.gmbg-footer-mini-form input {
  min-height: 42px; border-radius: 6px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 11px 12px;
}
.gmbg-btn-primary {
  background: linear-gradient(135deg, #ff5a00, #ff7a00); color: #fff;
  border: none; border-radius: 6px; padding: 12px; font-weight: 800; cursor: pointer; text-transform: uppercase;
}

.gmbg-footer-trustbar { margin-top: 12px; background: #06142b; border-block: 1px solid rgba(255,255,255,0.05); }
.gmbg-footer-trustbar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); min-height: 78px; }
.gmbg-footer-trust-item { display: flex; align-items: center; gap: 12px; padding: 16px 0; color: #fff; }
.gmbg-footer-trust-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); padding-right: 18px; margin-right: 18px; }
.gmbg-footer-trust-icon { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22); display: grid; place-items: center; font-weight: 900; }
.gmbg-footer-trust-text strong { display: block; font-size: 14px; font-weight: 900; }
.gmbg-footer-trust-text span { color: rgba(255,255,255,0.72); font-size: 12px; }

.gmbg-footer { background: #07162d; color: rgba(255, 255, 255, 0.72); padding: 34px 0 30px; }
.gmbg-footer-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 0.75fr); gap: 30px; }
.gmbg-footer h3 { color: #ffffff; }
.gmbg-footer ul { list-style: none; display: grid; gap: 9px; margin-top: 14px; }
.gmbg-footer a:hover { color: #ffffff; }
.gmbg-logo-image-footer { width: 300px; max-width: 100%; }
.gmbg-copyright { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; justify-content: space-between; font-size: 14px; }

@media (max-width: 980px) {
  .gmbg-footer-cta-grid { grid-template-columns: 1fr; }
  .gmbg-footer-trustbar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gmbg-footer-trust-item:nth-child(2) { border-right: none; margin-right: 0; padding-right: 0; }
}

@media (max-width: 720px) {
  .gmbg-footer-promo-inner { grid-template-columns: 1fr; }
  .gmbg-footer-trustbar-grid { grid-template-columns: 1fr; }
  .gmbg-footer-trust-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); margin-right: 0; padding-right: 0; }
  .gmbg-footer-grid { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-1491 *//* ========================================================================
   Complete Navigation Section - Strictly Scoped CSS
   ======================================================================== */
#gmb-nav-section {
    --gmb-nav-orange: #ff6b00;
    --gmb-nav-orange-hover: #e65c00;
    --gmb-nav-text-gray: #4b5563;
    --gmb-nav-bg: #ffffff;
    
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
}

#gmb-nav-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top Orange Banner */
#gmb-nav-section .gmb-nav-top-banner {
    background-color: var(--gmb-nav-orange);
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Main Header */
#gmb-nav-section .gmb-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--gmb-nav-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999; /* Critical: keeps dropdown above the hero section */
}

#gmb-nav-section .gmb-nav-logo img {
    height: 50px;
    background-color: #f3f4f6;
    border-radius: 4px;
    display: block;
}

/* Navigation Links */
#gmb-nav-section .gmb-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

#gmb-nav-section .gmb-nav-links a {
    text-decoration: none;
    color: var(--gmb-nav-text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

#gmb-nav-section .gmb-nav-links > li > a:hover {
    color: var(--gmb-nav-orange);
}

/* =========================================================
   Dropdown Menu Mechanics
   ========================================================= */
#gmb-nav-section .gmb-dropdown {
    position: relative;
    /* This padding creates an invisible bridge so the hover doesn't break */
    padding: 20px 0; 
    margin: -20px 0;
}

#gmb-nav-section .gmb-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px; /* Aligns visually with the text */
    background-color: var(--gmb-nav-bg);
    min-width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    
    /* Animation defaults (Hidden) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
}

/* Hover State: Shows the menu */
#gmb-nav-section .gmb-dropdown:hover .gmb-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#gmb-nav-section .gmb-dropdown-menu li {
    width: 100%;
}

#gmb-nav-section .gmb-dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--gmb-nav-text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

#gmb-nav-section .gmb-dropdown-menu a:hover {
    background-color: #f8fafc;
    color: var(--gmb-nav-orange);
}

/* Call to Action Button */
#gmb-nav-section .gmb-nav-btn {
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    display: inline-block;
    background-color: var(--gmb-nav-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

#gmb-nav-section .gmb-nav-btn:hover {
    background-color: var(--gmb-nav-orange-hover);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    #gmb-nav-section .gmb-nav-links { 
        display: none; 
    } 
}/* End custom CSS */