/* =========================================
   MASTER MAP PAGE STYLES (SommGeo)
   Target: Pages tagged 'map'
   ========================================= */

/* --- 1. UNLOCK PAGE WIDTH --- */
body.tag-map .content-container,
body.tag-map .entry-content,
body.tag-map .wp-block-group {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* --- 2. MAXIMIZED MAP HEIGHT --- */
body.tag-map iframe {
    width: 100% !important;       
    height: 92vh !important;      
    display: block;
    border: none;
    margin: 0 auto 40px auto;     
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* --- 3. NAVIGATION MENU BAR --- */
.sub-nav-container ul,
body.tag-map .entry-content > ul:first-of-type {
    list-style: none !important;
    padding: 15px;
    margin: 0 auto 40px auto;     
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background: #f7f7f7;
    max-width: 1200px;            
    border-radius: 5px;
}

.sub-nav-container li,
body.tag-map .entry-content > ul:first-of-type li {
    margin: 0;
}

.sub-nav-container a,
body.tag-map .entry-content > ul:first-of-type a {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
    letter-spacing: 0.5px;
}

.sub-nav-container a:hover,
body.tag-map .entry-content > ul:first-of-type a:hover {
    color: #0073e6;
}

/* --- 4. TEXT READABILITY --- */
body.tag-map .entry-content p,
body.tag-map .entry-content h1,
body.tag-map .entry-content h2,
body.tag-map .entry-content h3,
body.tag-map .entry-content form,
body.tag-map .entry-content div.wp-block-group { 
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
/* Exception: Allow the map group to stay full width */
body.tag-map .entry-content > .wp-block-group:first-child {
    max-width: 100% !important;
}

/* --- 5. JETPACK FORM FIXES (Left Align) --- */

/* A. Container Box */
body.tag-map .wp-block-jetpack-contact-form {
    max-width: 600px !important;
    margin: 40px auto !important;
    padding: 30px;
    background: #fdfdfd; 
    border: 1px solid #eee;
    border-radius: 8px;
    /* Ensure text inside aligns left */
    text-align: left !important; 
}

/* B. Reset the List Container (The Alignment Fix) */
body.tag-map .wp-block-jetpack-options,
body.tag-map .wp-block-jetpack-contact-form ul {
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

/* C. Force Individual Items to snap Left */
body.tag-map .wp-block-jetpack-option {
    display: flex !important; 
    justify-content: flex-start !important; /* Force Left Alignment */
    align-items: center !important;
    margin-bottom: 10px !important;
    margin-left: 0 !important; 
    padding-left: 0 !important;
    width: 100% !important;
}

/* D. The Radio Button itself */
body.tag-map .wp-block-jetpack-option input[type="radio"] {
    margin: 0 12px 0 0 !important; /* Right margin only */
    width: 16px !important;
    height: 16px !important;
    transform: none !important;
    flex-shrink: 0; /* Prevents button from squishing */
}

/* E. The Button (Kept Blue & Normal Size) */
body.tag-map .wp-block-jetpack-button {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important; /* Aligns button to Left */
    margin-top: 20px !important;
}

body.tag-map .wp-block-jetpack-button .wp-block-button__link {
    width: auto !important;        
    display: inline-block !important;
    background-color: #0A2454 !important; 
    color: #ffffff !important;
    border-radius: 5px !important;
    padding: 12px 30px !important; 
    font-size: 16px !important;
    text-align: center !important;
}

body.tag-map .wp-block-jetpack-button .wp-block-button__link:hover {
    background-color: #183cf0 !important;
}
/* 1. Force Modula Titles to be INVISIBLE by default */
.modula-gallery .modula-item .figc, 
.modula-gallery .modula-item .jtc {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease-in-out !important;
}

/* 2. Force Modula Titles to be VISIBLE on Hover */
.modula-gallery .modula-item:hover .figc, 
.modula-gallery .modula-item:hover .jtc {
    opacity: 1 !important;
    visibility: visible !important;
}
/* =========================================
   SommGeo Paywall - MASTER VERSION (Responsive + Animated)
   ========================================= */

/* 1. Container */
.sommgeo-paywall-container {
    position: relative;
    width: 100%;
    height: 450px; 
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* 2. Background: High Visibility Map */
.sommgeo-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(3px); 
    opacity: 1.0;      
    transform: scale(1.05); 
}

/* 3. The Glass Card (Desktop Default) */
.sommgeo-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* Desktop Spacing */
    padding: 2.5rem 3rem; 
    max-width: 480px; 
    width: 90%; /* Safety net for smaller tablets */
    
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);

    /* ANIMATION SETUP */
    opacity: 0; /* Start hidden for animation */
    animation: slideUpFade 0.8s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%; /* Triggers quickly as it enters view */
}

/* 4. Typography (Desktop) */
.sommgeo-glass-card h3 {
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
}

.sommgeo-glass-card p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* 5. Button Styling */
.glass-button {
    background: #005b96; /* SommGeo Blue */
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 91, 150, 0.4);
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
}

.glass-button:hover {
    background: #003d66; 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 91, 150, 0.5);
}

/* =========================================
   MOBILE FIXES (Screens smaller than 768px)
   ========================================= */
@media screen and (max-width: 768px) {
    .sommgeo-glass-card {
        padding: 1.5rem; /* Reduce padding significantly */
        max-width: 90%;  /* Ensure 5% gap on each side so map shows */
        width: 90%;
    }

    .sommgeo-glass-card h3 {
        font-size: 1.3rem; /* Smaller Title */
        margin-bottom: 0.8rem;
    }

    .sommgeo-glass-card p {
        font-size: 0.95rem; /* Smaller Text */
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .glass-button {
        padding: 10px 20px; /* Compact Button */
        font-size: 0.8rem;
    }
}

/* =========================================
   ANIMATION KEYFRAMES
   ========================================= */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================
   Member "Thank You" Note Styling
   ========================================= */

.sommgeo-member-notice {
    margin-top: 12px;       /* Spacing between map and text */
    padding: 8px 0;
    text-align: right;      /* Aligns to bottom right of map */
    font-size: 0.85rem;     /* Small, subtle text */
    color: #666;            /* Muted grey, not distracting black */
    font-family: inherit;   /* Matches your site font */
    border-top: 1px solid #eee; /* Optional: subtle separator line */
}

/* The open lock icon */
.member-lock-icon {
    font-size: 1rem;
    margin-right: 5px;
    vertical-align: middle;
    opacity: 0.7;
}

/* Highlighting the User's Name */
.sommgeo-member-notice strong {
    color: #005b96; /* Uses your SommGeo Blue for their name */
    font-weight: 600;
}
/* --- SOMMGEO GLOBAL CARD "POP" FIX --- */

/* Targets all cards across your different templates */
.sommgeo-card, .sg-card {
    /* 1. Darker Border: Changed from #e5e5e5 to #d1d1d1 so it survives low-contrast screens */
    border: 1px solid #d1d1d1 !important; 

    /* 2. Permanent Shadow: Added a default shadow (opacity 0.12) so they float even without hovering */
    box-shadow: 0 4px 12px rgba(0,0,0, 0.12) !important;
}

/* Makes the hover effect more dramatic */
.sommgeo-card:hover, .sg-card:hover {
    /* 3. Stronger Hover Shadow: Increased opacity from ~0.08 to 0.20 */
    box-shadow: 0 15px 30px rgba(0,0,0, 0.20) !important;
    
    /* Darken border slightly more on hover */
    border-color: #999 !important;
    transform: translateY(-5px) !important;
}
/* --- SOMMGEO LOGIN FINAL FIX (Transparent Background) --- */

/* 1. The Background - Applied to the body */
body.page-id-4693 {
    background-color: #0b162a;
    background-image: linear-gradient(rgba(11, 22, 42, 0.85), rgba(11, 22, 42, 0.9)), url('https://sommgeo.com/wp-content/uploads/2026/01/SommGeo-Mosaic-Business.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
}

/* 2. THE NUCLEAR FIX: Force ALL Kadence Containers to be Transparent */
/* This targets every possible wrapper Kadence uses and strips the white background */
.page-id-4693 .site,
.page-id-4693 .site-inner,
.page-id-4693 .content-area,
.page-id-4693 .site-content,
.page-id-4693 .entry-content,
.page-id-4693 .content-container,
.page-id-4693 .site-container {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 3. The Login Card Design */
.page-id-4693 .mp_wrapper {
    background: rgba(255, 255, 255, 0.98); /* Solid white (slight glass effect) */
    max-width: 400px;
    width: 90%;
    margin: 15vh auto; /* Pushes it down a bit for better centering */
    padding: 40px;
    border-radius: 8px;
    
    /* Somm Gold Top Bar */
    border-top: 5px solid #c5a059; 
    
    /* Deep Shadow */
    box-shadow: 0 20px 60px rgba(0,0,0,0.7); 
    
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* 4. The Logo Area */
.page-id-4693 .mp_wrapper::before {
    content: "";
    display: block;
    width: 100%;       
    height: 90px;
    background-image: url('https://sommgeo.com/wp-content/uploads/2024/10/cropped-Somm-Geo-Logo-One-Word.-Black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 25px auto;
}

/* 5. Form Inputs */
.page-id-4693 .mp_wrapper label {
    display: block;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-id-4693 .mp_wrapper input[type="text"], 
.page-id-4693 .mp_wrapper input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fdfdfd;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.page-id-4693 .mp_wrapper input[type="text"]:focus, 
.page-id-4693 .mp_wrapper input[type="password"]:focus {
    border-color: #c5a059; /* Focus color matches gold bar */
    outline: none;
}

/* 6. The Button */
.page-id-4693 .mp_wrapper .mepr-submit {
    width: 100%;
    background-color: #0b162a;
    color: #fff;
    height: 55px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.page-id-4693 .mp_wrapper .mepr-submit:hover {
    background-color: #1a2f55;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 7. Links & 'Remember Me' */
.page-id-4693 .mp_wrapper a {
    color: #888;
    font-size: 13px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}
.page-id-4693 .mp_wrapper a:hover {
    color: #c5a059;
}

.page-id-4693 .mepr-login-remember-me {
    text-align: center; /* I assumed you wanted this, or just delete this line */
}
/* --- SOMMGEO ACCOUNT PAGE STYLING --- */

/* 1. Background Setup */
body.page-id-433 {
    background-color: #0b162a;
    background-image: linear-gradient(rgba(11, 22, 42, 0.85), rgba(11, 22, 42, 0.9)), url('https://sommgeo.com/wp-content/uploads/2026/01/SommGeo-Mosaic-Business.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
}

/* 2. Make Theme Containers Transparent */
body.page-id-433 .site,
body.page-id-433 .site-inner,
body.page-id-433 .content-area,
body.page-id-433 .site-content,
body.page-id-433 .site-container {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* 3. Main White Card Container */
body.page-id-433 .entry-content {
    background: rgba(255, 255, 255, 0.98) !important;
    max-width: 800px; /* Kept it tight for a focused look */
    width: 95%;
    margin: 8vh auto;
    padding: 40px;
    border-radius: 8px;
    border-top: 5px solid #c5a059; /* Gold Bar */
    box-shadow: 0 20px 60px rgba(0,0,0,0.7); 
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

/* 4. Logo Positioning */
body.page-id-433 .mp_wrapper::before { display: none !important; }
body.page-id-433 .entry-content::before {
    content: "";
    display: block;
    width: 100%;        
    height: 80px;
    background-image: url('https://sommgeo.com/wp-content/uploads/2024/10/cropped-Somm-Geo-Logo-One-Word.-Black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 10px auto;
}

/* --- 5. FIXED NAVIGATION TABS (AGGRESSIVE OVERRIDE) --- */

/* A. Target the Container */
body.page-id-433 .mp_wrapper .mepr-account-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important; /* Forces space between buttons */
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #eee !important;
    background: transparent !important;
}

/* B. Target the Links (The Buttons) */
/* We target 'a' directly AND 'span a' to catch hidden wrappers */
body.page-id-433 .mp_wrapper .mepr-account-nav a,
body.page-id-433 .mp_wrapper .mepr-account-nav span a {
    display: inline-block !important;
    background-color: #f4f4f4 !important; /* Light Grey Background */
    color: #0b162a !important; /* Dark Blue Text */
    padding: 12px 24px !important; /* Bigger click area */
    border-radius: 4px !important;
    text-decoration: none !important; /* Removes underline */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    border: 1px solid #ddd !important;
    transition: all 0.2s ease !important;
    margin: 5px !important; /* Backup spacing if flex gap fails */
    line-height: normal !important;
    box-shadow: none !important;
}

/* C. Hover State (Dark Blue) */
body.page-id-433 .mp_wrapper .mepr-account-nav a:hover,
body.page-id-433 .mp_wrapper .mepr-account-nav span a:hover {
    background-color: #0b162a !important;
    color: #ffffff !important;
    border-color: #0b162a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
}

/* D. The "Active" Tab (Current Page) */
/* This styles the button you are currently clicking on */
body.page-id-433 .mp_wrapper .mepr-account-nav a.mepr-active-nav-tab,
body.page-id-433 .mp_wrapper .mepr-account-nav span.mepr-active-nav-tab a {
    background-color: #0b162a !important;
    color: #ffffff !important;
    border-color: #0b162a !important;
    font-weight: 800 !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3) !important; /* Pressed effect */
}

/* --- 6. "CHANGE PASSWORD" BUTTON --- */
/* Transforms the bottom link into a button */
body.page-id-433 .mepr-account-change-password a {
    display: block !important;
    width: fit-content;
    margin: 30px auto 0 auto !important; /* Center it */
    padding: 12px 25px !important;
    border: 2px solid #0b162a !important; /* Outline Style */
    background-color: transparent !important;
    color: #0b162a !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    transition: all 0.2s ease;
}

body.page-id-433 .mepr-account-change-password a:hover {
    background-color: #0b162a !important;
    color: #fff !important;
}

/* 7. Input Fields */
body.page-id-433 .entry-content input[type="text"], 
body.page-id-433 .entry-content input[type="email"], 
body.page-id-433 .entry-content input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fdfdfd;
    box-sizing: border-box;
    font-size: 16px;
}
/* Focus color */
body.page-id-433 .entry-content input:focus {
    border-color: #c5a059;
    outline: none;
}

/* 8. Main "Save" Button */
body.page-id-433 .mp_wrapper .mepr-submit {
    background-color: #0b162a !important;
    color: #fff !important;
    padding: 15px 30px !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: 20px !important;
    letter-spacing: 1px;
}
body.page-id-433 .mp_wrapper .mepr-submit:hover {
    background-color: #c5a059 !important;
    color: #0b162a !important;
}

/* 9. RETURN TO SOMMGEO BUTTON (Gold Pill) */
a.somm-return-btn {
    display: table;
    margin: 0 auto 20px auto;
    background-color: #c5a059 !important;
    color: #0b162a !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    transition: all 0.3s ease;
}
a.somm-return-btn:hover {
    background-color: #0b162a !important;
    color: #fff !important;
    transform: translateY(-3px);
}
/* --- SOMMGEO THANK YOU PAGE REDESIGN --- */

/* 1. The Background - Applied to the body */
body.page-id-432 {
    background-color: #0b162a;
    background-image: linear-gradient(rgba(11, 22, 42, 0.85), rgba(11, 22, 42, 0.9)), url('https://sommgeo.com/wp-content/uploads/2026/01/SommGeo-Mosaic-Business.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
}

/* 2. THE NUCLEAR FIX: Force Kadence Containers Transparent */
.page-id-432 .site,
.page-id-432 .site-inner,
.page-id-432 .content-area,
.page-id-432 .site-content,
.page-id-432 .entry-content,
.page-id-432 .content-container,
.page-id-432 .site-container {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 3. The "Card" Design (Matching the Login Box) */
.page-id-432 .sommgeo-auth-card {
    background: rgba(255, 255, 255, 0.98);
    max-width: 500px;
    width: 90%;
    margin: 15vh auto;
    padding: 50px 40px;
    border-radius: 8px;
    
    /* Somm Gold Top Bar */
    border-top: 5px solid #c5a059; 
    
    /* Deep Shadow */
    box-shadow: 0 20px 60px rgba(0,0,0,0.7); 
    
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

/* 4. The Logo Area */
.page-id-432 .sommgeo-auth-card::before {
    content: "";
    display: block;
    width: 100%;        
    height: 90px;
    background-image: url('https://sommgeo.com/wp-content/uploads/2024/10/cropped-Somm-Geo-Logo-One-Word.-Black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 30px auto;
}

/* 5. Typography Styling */
.page-id-432 .sommgeo-auth-card h2 {
    color: #0b162a;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-id-432 .sommgeo-auth-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 6. Button Styling (Primary - "Go to My Account") */
.page-id-432 .sommgeo-btn {
    display: block;
    width: 100%;
    background-color: #0b162a;
    color: #fff !important; /* Force white text */
    padding: 15px 0;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.page-id-432 .sommgeo-btn:hover {
    background-color: #1a2f55;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 7. Secondary Button (Launch SommGeo - UPDATED to Solid Blue) */
.page-id-432 .sommgeo-btn-secondary {
    display: inline-block;
    width: 100%; /* Makes it full width like the primary button */
    background-color: #0b162a; /* SommGeo Dark Blue */
    color: #ffffff !important; /* Force White Text */
    padding: 15px 0;
    margin-top: 20px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #0b162a;
    box-sizing: border-box; 
}

.page-id-432 .sommgeo-btn-secondary:hover {
    background-color: #1a2f55; /* Slightly lighter blue on hover */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}
/* --- 1. THE WRAPPER --- */
.sommgeo-signup-wrapper {
    /* Break out of container to be full width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    /* THE FIX: Force it to be at least as tall as the screen */
    min-height: 100vh;
    
    /* Center vertically on large screens */
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Standard Padding */
    padding: 60px 20px;
    
    /* Background Image */
    background-image: url('https://sommgeo.com/wp-content/uploads/2026/01/SommGeo-Mosaic-Business.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: 1;
}

/* Dark Overlay */
.sommgeo-signup-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* --- 2. THE CARD --- */
.sommgeo-signup-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: visible; 
}

/* --- 3. LEFT COLUMN (Visuals) --- */
.sommgeo-col-left {
    width: 50%;
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
}

.sommgeo-image-container {
    width: 100%; 
    height: 250px; 
}
.sommgeo-image-container img {
    width: 100%; height: 100%; object-fit: cover;
}

.sommgeo-content-box {
    padding: 30px 40px;
}

/* Typography & Lists */
.sommgeo-content-box h2 { margin-top: 0; font-size: 24px; color: #1e293b; }
.sommgeo-content-box .subhead { color: #64748b; font-size: 15px; margin-bottom: 20px; }
.sommgeo-benefits-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
.sommgeo-benefits-list li { display: flex; align-items: center; margin-bottom: 12px; font-size: 14px; color: #334155; }
.sommgeo-benefits-list .icon { margin-right: 10px; display: flex; }

/* SVG Icon Styling */
.sommgeo-benefits-list .icon svg {
    width: 20px;
    height: 20px;
    stroke: #334155;
}

/* Price Tag */
.sommgeo-price-tag {
    background: #f1f5f9; padding: 10px 15px; border-radius: 6px;
    border: 1px solid #e2e8f0; margin-bottom: 10px; display: inline-block;
}
.sommgeo-price-tag .price-big { font-weight: 800; color: #0f172a; margin-right: 5px; }
.sommgeo-price-tag .price-small { font-size: 11px; text-transform: uppercase; color: #64748b; }
.sommgeo-login-footer { margin-top: 20px; padding-top: 15px; border-top: 1px solid #ddd; font-size: 13px; }

/* --- 4. RIGHT COLUMN (The Form) --- */
.sommgeo-col-right {
    width: 50%;
    padding: 40px;
    background: #fff;
}

/* --- 5. MEMBERPRESS FIXES --- */
.sommgeo-signup-wrapper .mepr_price_cell_label, 
.sommgeo-signup-wrapper .mepr_price {
    display: none !important;
}

/* KILL THE SPAM TRAP */
.sommgeo-signup-wrapper .mepr-form .mepr_human_test, 
.sommgeo-signup-wrapper .mepr-form .mepr-spacestation {
    display: none !important;
}

/* Styling Inputs */
.sommgeo-signup-wrapper .mepr-form label {
    font-size: 12px; font-weight: 700; text-transform: uppercase; color: #64748b; display: block; margin-bottom: 5px;
}
.sommgeo-signup-wrapper .mepr-form input:not([type="submit"]):not([type="checkbox"]) {
    width: 100%; padding: 10px; border: 1px solid #cbd5e1; border-radius: 4px; background: #f8fafc; margin-bottom: 15px;
}

/* The Button */
.sommgeo-signup-wrapper .mepr-submit {
    width: 100%; background: #000 !important; color: #fff !important;
    padding: 15px; border-radius: 4px; text-transform: uppercase; font-weight: bold;
    margin-top: 10px; cursor: pointer; border: none;
}

/* --- MOBILE STACKING --- */
@media (max-width: 900px) {
    .sommgeo-signup-card { flex-direction: column; }
    .sommgeo-col-left, .sommgeo-col-right { width: 100%; }
    .sommgeo-image-container { height: 150px; }
    /* On mobile, let it scroll naturally, don't force min-height */
    .sommgeo-signup-wrapper { min-height: auto; }
}
/* Container for the price box */
.sommgeo-price-tag {
    position: relative;
    background: #f8f9fa; /* Light grey background to separate it */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 20px;
}

/* The Gold Badge */
.price-badge {
    background-color: #bfa05d; /* SommGeo Gold-ish tone */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Container to align strike price next to real price */
.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between $10 and $5 */
}

/* The old price crossed out */
.price-strike {
    text-decoration: line-through;
    color: #adb5bd; /* Muted grey */
    font-size: 1.3rem;
    font-weight: 500;
}

/* The main price */
.price-big {
    display: block;
    font-weight: 800;
    color: #212529;
    font-size: 2.2rem; /* Made slightly larger */
    line-height: 1;
}

/* The subtext below */
.price-small {
    display: block;
    margin-top: 8px;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}
/* ── Map Maker Feature List: Aligned Labels ── */
.sommgeo-features li {
    display: block !important;
    padding-left: 16px;
    position: relative;
}
.sommgeo-features li::before {
    position: absolute;
    left: 0;
    top: 7px;
    margin-top: 0;
}
.sommgeo-features li strong {
    display: block;
    margin-bottom: 2px;
}
/* --- SOMMGEO SCREENSHOT GRID: Kill grey space padding --- */
.sommgeo-page .sommgeo-screenshots {
    align-items: start;
}