/* GetBackMyTime Custom Styling v8 - Fix Navigation Visibility */

/* --- OVERRIDE GENERATEPRESS THEME DEFAULTS --- */
body, .site, .site-content, .inside-article, .site-main, .content-area, #primary, .entry-content {
    background-color: #050a15 !important; /* Deep Navy instead of Black */
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide the default theme sidebar, footer, AND SEARCH WIDGETS, but KEEP the main navigation */
.sidebar, .site-footer, .page-header, .widget_search, .search-form {
    display: none !important;
}

/* Force the navigation menu to actually display over our black background */
.main-navigation {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 80px;
    background-color: transparent !important;
    /* backdrop-filter removed */
    -webkit-/* backdrop-filter removed */
    z-index: 999 !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
    border-bottom: none !important;
}

.main-navigation .main-nav > ul {
    display: flex;
    gap: 20px;
}

.main-navigation .main-nav ul li a {
    color: #94a3b8 !important;
    font-weight: 500;
    transition: color 0.2s;
    background: transparent !important;
}

.main-navigation .main-nav ul li a:hover {
    color: #ffffff !important;
    background: transparent !important;
}

/* Force full width container */
.container.grid-container {
    max-width: 100% !important;
    padding: 0 !important;
}

.site-content,
.inside-article,
.entry-content,
.separate-containers .inside-article,
.one-container .site-content,
.content-area,
#primary {
    background: transparent !important;
}

/* --- LANDING PAGE STYLES --- */
:root {
  --bg-body: #050a15; /* Deep Navy */
  --bg-surface: rgba(255, 255, 255, .02);
  --bg-surface-hover: rgba(255, 255, 255, .05);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8; /* Slightly cooler gray */
  --text-tertiary: #64748b;
  --accent-primary: #3b82f6; /* True Blue */
  --accent-glow: rgba(59, 130, 246, .4);
  --border-color: rgba(255, 255, 255, .06);
  --border-hover: rgba(255, 255, 255, .12);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gbmt-landing-page {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 40px;
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 3rem;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

body {
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: -10vw;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: var(--accent-primary, #3b82f6);
    filter: blur(140px);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.beam-glow {
    display: none !important;
}


.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.hero-wrapper h2 {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #e2e8f0; /* Light gray-white */
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-wrapper h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
}

.text-gradient-accent {
  background: linear-gradient(90deg, #93c5fd, #ffffff); /* Bright ice blue to pure white */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-wrapper p {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  color: #f1f5f9; /* Bright off-white */
  line-height: 1.7;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.hero-bullets li::before {
  content: "→"; 
  color: var(--accent-primary);
  font-weight: bold;
}

/* Quiz Container */
#custom-quiz-container {
  max-width: 600px;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 1;
  background: #0a1329; 
  border: 1px solid rgba(255, 255, 255, 0.15); 
  border-radius: 16px;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(59, 130, 246, 0.2); 
}

#custom-quiz-container::before {
  content: "Take our Free 3 Minute AI Assessment";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.quiz-step { display: none; animation: fadeIn 0.3s ease-out; }
.quiz-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.quiz-header h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.quiz-option {
  display: block;
  width: 100%;
  padding: 1.1rem;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.15); 
  border: 1px solid rgba(255, 255, 255, 0.25); 
  border-radius: 6px;
  text-align: left;
  font-size: 1.05rem; 
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quiz-option:hover {
  border-color: #ffffff; 
  background: rgba(255, 255, 255, 0.25); 
  color: #fff;
  transform: translateX(4px); 
}

.quiz-progress { height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; margin-bottom: 2rem; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, #3b82f6, #60a5fa); width: 20%; transition: width 0.3s ease; }

.lead-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  color: var(--text-primary);
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.lead-form input:focus { outline: none; border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--text-primary);
  color: #000;
  border: none;
  border-radius: 6px; 
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.submit-btn:hover { background: #e2e8f0; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,255,255,0.1); }

.back-btn { background: none; border: none; color: var(--text-tertiary); font-size: 0.9rem; cursor: pointer; padding: 0; margin-top: 1.5rem; display: inline-flex; width: 100%; justify-content: center; }
.back-btn:hover { color: var(--text-primary); }

/* The 3-Step Process Section */
.process-section {
  padding: 3rem 0 8rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.process-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 500;
}

.process-badge {
  background: var(--text-primary);
  color: #000;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  padding: 2rem;
  border-radius: 12px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  background: #080f1e;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
}

.step-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px; 
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-weight: bold;
  font-size: 1.1rem;
}

.step-card-content { margin-top: auto; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 0.85rem; font-weight: 600; color: #fff; }
.step-card p { font-size: 0.95rem; color: #94a3b8; line-height: 1.6; margin: 0; }

@media(max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}
/* Force hide mobile toggle */
.menu-toggle { display: none !important; }

/* Force menu wrapper to display */
.main-navigation .main-nav,
.main-navigation .inside-navigation,
#primary-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure flex layout for the links */
.main-navigation .main-nav > ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.hero-wrapper h1 {
    color: #ffffff !important;
}
.hero-wrapper p.hero-subtitle {
    color: #f8fafc !important; /* Lighter white/gray */
}
.quiz-option {
    background: rgba(255, 255, 255, 0.18) !important; /* Lightened background */
    border: 1px solid rgba(255, 255, 255, 0.4) !important; /* Pronounced border */
}
#custom-quiz-container {
    border: 2px solid rgba(255, 255, 255, 0.25) !important; /* Pronounced border */
    background: rgba(20, 30, 55, 0.95) !important; /* Lighter quiz background */
}

/* Force hide the default site-header that is rendering white */
header#masthead, .site-header {
    display: none !important;
}

/* Hide the generated entry-title (Page name) on all pages */
header.entry-header {
    display: none !important;
}
.entry-title {
    display: none !important;
}

/* --- 2026-05-22 BATCH UPDATES --- */

/* TASK 2: Hide page titles globally */
header.entry-header, .entry-title, .page-title { 
    display: none !important; 
}

/* TASK 3: Top-of-fold spacing alignment across all pages */
.hero-wrapper {
    padding-top: 9rem !important; 
}

/* TASK 6: Mobile Responsiveness for Nav & Logo */
@media (max-width: 768px) {
    /* Stack the absolutely positioned logo container */
    div[style*="position: absolute; top: 1.5rem; left: 2rem;"] {
        position: relative !important;
        top: 1rem !important;
        left: 0 !important;
        justify-content: center !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
    }
    /* Stack the absolutely positioned menu under the logo */
    .main-navigation {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    .main-navigation .main-nav > ul {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }
    .main-navigation .main-nav ul li a {
        font-size: 0.9rem !important;
        padding: 5px 8px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 6px;
    }
}

/* TASK: Update process-badge styling (AI to ROI) */
.process-section h2 .process-badge {
    background-color: #f1f5f9 !important; /* Slightly off-white */
    color: #059669 !important; /* Middle green for contrast */
    padding: 4px 24px !important;
    border-radius: 50px !important; /* Long oval shape */
    display: inline-block;
    vertical-align: middle;
}

/* Style the last item (Book Assessment) as a white button */
.main-navigation .main-nav > ul > li:last-child > a {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    display: inline-block;
}

.main-navigation .main-nav > ul > li:last-child > a:hover {
    background: #f1f5f9 !important;
    color: #000000 !important;
    opacity: 0.9;
}

.main-navigation .inside-navigation {
    display: flex !important;
    width: 100%;
    justify-content: flex-end !important;
    align-items: center;
}
.main-navigation .main-nav {
    display: flex !important;
    justify-content: flex-end !important;
}

/* Fix Dropdown Vertical Stacking & Styling */
.main-navigation .main-nav > ul > li {
    position: relative;
}
.main-navigation ul.sub-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #0f172a !important; /* solid navy */
    min-width: 220px !important;
    padding: 10px 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    flex-direction: column !important;
    gap: 0 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
    z-index: 99999 !important;
}

/* Show on hover */
.main-navigation li:hover > ul.sub-menu {
    display: flex !important;
}

/* Ensure sub-dropdowns open to the side */
.main-navigation ul.sub-menu ul.sub-menu {
    top: 0 !important;
    left: 100% !important;
}

.main-navigation ul.sub-menu li {
    width: 100% !important;
    display: block !important;
}

.main-navigation ul.sub-menu li a {
    display: block !important;
    padding: 12px 20px !important;
    white-space: nowrap !important;
    width: 100% !important;
    text-align: left !important;
}

.main-navigation ul.sub-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Force GeneratePress 75% content area to 100% so inner containers center properly */
.content-area {
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

/* Hide left nav buttons on mobile */
@media (max-width: 900px) {
    .nav-left-buttons {
        display: none !important;
    }
}

.nav-left-buttons a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}
