/*
 * THE HUB OFFICE SUITES – GLOBAL DESIGN SYSTEM
 * =============================================
 * Unified styles for all pages. Add to Divi → Theme Options → Custom CSS
 * 
 * Prefix: .hub- (avoids Divi conflicts)
 * Based on Work Club aesthetic + Hub Office Suites brand colors
 */

/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========== DESIGN TOKENS ========== */
:root {
    /* Primary Colors */
    --hub-navy: #1a3d6d;
    --hub-navy-dark: #0d2444;
    --hub-navy-light: #2d5a9e;

    /* Accent Colors */
    --hub-orange: #f28c38;
    --hub-orange-light: #ffd2a8;
    --hub-orange: #f28c38;
    --hub-orange-light: #dcc185;

    /* Neutrals */
    --hub-white: #ffffff;
    --hub-cream: #f8f7f4;
    --hub-cream-dark: #f0efe9;
    --hub-gray-100: #f5f7fa;
    --hub-gray-200: #e5e7eb;
    --hub-gray-400: #9ca3af;
    --hub-gray-500: #6b7280;
    --hub-gray-600: #4b5563;
    --hub-gray-700: #374151;

    /* Shadows */
    --hub-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --hub-shadow-md: 0 16px 50px rgba(0, 0, 0, 0.10);
    --hub-shadow-lg: 0 26px 75px rgba(0, 0, 0, 0.18);
    --hub-shadow-orange: 0 14px 28px rgba(242, 140, 56, 0.22);

    /* Transitions */
    --hub-transition: all 0.35s ease;
}

/* ========== BASE TYPOGRAPHY ========== */
.hub-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--hub-navy);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.hub-page h1,
.hub-page h2,
.hub-page h3,
.hub-headline {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    line-height: 1.15;
    color: var(--hub-navy);
}

.hub-page h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.hub-page h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.hub-page h3 {
    font-size: 1.35rem;
}

.hub-page p {
    color: var(--hub-gray-600);
    line-height: 1.65;
}

/* ========== LAYOUT ========== */
.hub-section {
    padding: 100px 24px;
    text-align: center;
}

.hub-section.bg-white {
    background: var(--hub-white);
}

.hub-section.bg-cream {
    background: var(--hub-cream);
}

.hub-section.bg-gray {
    background: var(--hub-gray-100);
}

.hub-section.bg-navy {
    background: var(--hub-navy);
}

.hub-section.bg-navy-dark {
    background: var(--hub-navy-dark);
}

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

.hub-container.narrow {
    max-width: 900px;
}

.hub-container.wide {
    max-width: 1400px;
}

/* ========== EYEBROW / LABELS ========== */
.hub-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--hub-orange);
    margin-bottom: 16px;
    display: block;
}

.hub-eyebrow.orange {
    color: var(--hub-orange);
}

/* ========== SUB TEXT ========== */
.hub-subtext {
    font-size: 1.15rem;
    color: var(--hub-gray-500);
    max-width: 680px;
    margin: 0 auto 40px;
    font-weight: 300;
    opacity: 0.9;
}

/* ========== PROSE (Long-form content) ========== */
.hub-prose {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.hub-prose p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--hub-gray-600);
    margin-bottom: 24px;
}

.hub-prose p:last-child {
    margin-bottom: 0;
}

.hub-prose strong {
    color: var(--hub-navy);
    font-weight: 600;
}

.hub-prose a {
    color: var(--hub-orange);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted var(--hub-orange);
    transition: all 0.2s ease;
}

.hub-prose a:hover {
    border-bottom-style: solid;
}

/* ========== BUTTONS ========== */
.hub-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--hub-orange);
    color: var(--hub-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: var(--hub-transition);
    cursor: pointer;
}

.hub-btn:hover {
    background: var(--hub-white);
    color: var(--hub-orange);
    border-color: var(--hub-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hub-btn.square {
    border-radius: 0;
}

.hub-btn.gold {
    background: var(--hub-orange);
}

.hub-btn.gold:hover {
    color: var(--hub-orange);
    border-color: var(--hub-orange);
}

.hub-btn.navy {
    background: var(--hub-navy);
}

.hub-btn.navy:hover {
    color: var(--hub-navy);
    border-color: var(--hub-navy);
}

.hub-btn.outline {
    background: transparent;
    border: 2px solid var(--hub-white);
    color: var(--hub-white);
}

.hub-btn.outline:hover {
    background: var(--hub-white);
    color: var(--hub-navy);
}

.hub-btn.outline-navy {
    background: transparent;
    border: 2px solid var(--hub-navy);
    color: var(--hub-navy);
}

.hub-btn.outline-navy:hover {
    background: var(--hub-navy);
    color: var(--hub-white);
}

.hub-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========== HERO SECTION ========== */
.hub-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    color: var(--hub-white);
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Animated accent line at top */
.hub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--hub-orange) 20%,
            var(--hub-orange-light) 50%,
            var(--hub-orange) 80%,
            transparent 100%);
    z-index: 10;
}

/* Premium dark overlay with vignette effect */
.hub-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(13, 36, 68, 0.55) 0%, rgba(13, 36, 68, 0.85) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(13, 36, 68, 0.4) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hub-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    padding: 80px 60px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism hero card variant */
.hub-hero-content.glass {
    background: rgba(13, 36, 68, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hub-hero h1 {
    color: var(--hub-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hub-hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 48px;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Ensure all text in hero is white */
.hub-hero p,
.hub-hero-content p {
    color: var(--hub-white);
}

/* Hero badge - premium styling */
.hub-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2) 0%, rgba(201, 169, 98, 0.1) 100%);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 50px;
    color: var(--hub-orange-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

.hub-hero-badge svg {
    width: 16px;
    height: 16px;
}

/* Scroll indicator */
.hub-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

.hub-hero-scroll svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========== BANNER SECTIONS ========== */
.hub-banner {
    background: var(--hub-navy);
    padding: 72px 24px;
    text-align: center;
}

.hub-banner h2 {
    color: var(--hub-white);
}

.hub-banner p {
    color: rgba(255, 255, 255, 0.65);
}

.hub-banner-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--hub-orange);
    color: var(--hub-navy-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hub-banner-perks {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hub-banner-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.hub-banner-perk svg {
    color: var(--hub-orange);
    width: 18px;
    height: 18px;
}

/* Founders Urgency Counter */
.hub-founders-counter {
    margin: 32px auto 0;
    max-width: 320px;
}

.hub-founders-count {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.hub-founders-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--hub-orange);
    line-height: 1;
}

.hub-founders-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.hub-founders-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.hub-founders-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--hub-orange), var(--hub-orange-light));
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* ========== TESTIMONIALS ========== */
.hub-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 48px;
    margin-bottom: 40px;
}

.hub-testimonial-card {
    background: var(--hub-cream);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: left;
    border: 1px solid var(--hub-gray-200);
    transition: all 0.3s ease;
}

.hub-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.hub-testimonial-stars {
    color: var(--hub-orange);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hub-testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--hub-gray-600);
    font-style: italic;
    margin: 0 0 24px 0;
    padding: 0;
    border: none;
}

.hub-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hub-testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--hub-navy), var(--hub-navy-light));
    color: var(--hub-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.hub-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hub-testimonial-info strong {
    color: var(--hub-navy);
    font-size: 1rem;
}

.hub-testimonial-info span {
    color: var(--hub-gray-500);
    font-size: 0.85rem;
}

.hub-testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hub-gray-500);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hub-testimonial-link:hover {
    color: var(--hub-navy);
}

/* ========== GRIDS ========== */
.hub-grid {
    display: grid;
    gap: 30px;
}

/* Force SVG Visibility */
.hub-page svg,
.hub-card-icon svg,
.hub-amenity-icon svg {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 24px;
    height: 24px;
}

.hub-amenity-icon svg {
    width: 28px;
    height: 28px;
}

.hub-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.hub-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.hub-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.hub-flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* ========== CARDS – IMAGE CARDS ========== */
.hub-card {
    position: relative;
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--hub-white);
    border-radius: 18px;
    box-shadow: var(--hub-shadow-md);
    transition: var(--hub-transition);
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(26, 61, 109, 0.08);
}

/* Card gradient overlay */
.hub-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 400px at 50% -20%, rgba(242, 140, 56, 0.14), transparent 60%),
        linear-gradient(135deg, rgba(26, 61, 109, 0.05), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Top accent bar */
.hub-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hub-orange), var(--hub-orange-light));
    z-index: 1;
}

.hub-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hub-shadow-lg);
}

/* Card image */
.hub-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.hub-card-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

.hub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hub-card:hover .hub-card-image img {
    transform: scale(1.06);
}

/* Card content */
.hub-card-content {
    padding: 28px 26px 32px;
    position: relative;
    z-index: 3;
}

.hub-card-content h3 {
    color: var(--hub-navy);
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hub-card-content p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 20px;
    color: var(--hub-gray-600);
}

/* Card icon */
.hub-card-icon {
    width: 50px;
    height: 50px;
    color: var(--hub-orange);
    background: var(--hub-gray-100);
    border: 1px solid rgba(242, 140, 56, 0.25);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--hub-transition);
}

.hub-card:hover .hub-card-icon {
    transform: translateY(-2px) scale(1.08) rotate(6deg);
    color: var(--hub-navy);
    background: var(--hub-white);
}

.hub-card-icon svg {
    width: 24px;
    height: 24px;
}

/* ========== CARDS – ICON/FEATURE CARDS ========== */
.hub-feature-card {
    position: relative;
    flex: 1 1 300px;
    /* max-width: 380px;  Removed to allow stretching in grid */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--hub-white);
    border-radius: 18px;
    padding: 44px 28px 40px;
    box-shadow: var(--hub-shadow-md);
    transition: var(--hub-transition);
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(26, 61, 109, 0.08);
}

.hub-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 360px at 50% -10%, rgba(242, 140, 56, 0.12), transparent 60%),
        linear-gradient(135deg, rgba(26, 61, 109, 0.05), transparent 55%);
    pointer-events: none;
}

.hub-feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hub-orange), var(--hub-orange-light));
}

.hub-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hub-shadow-lg);
}

.hub-feature-card .hub-card-icon {
    margin: 0 auto 20px;
}

.hub-feature-card h3 {
    color: var(--hub-navy);
    font-size: 1.25rem;
    margin-bottom: 12px;
    position: relative;
}

.hub-feature-card p {
    color: var(--hub-gray-600);
    font-size: 1rem;
    line-height: 1.65;
    position: relative;
}

.hub-feature-card a {
    color: var(--hub-navy);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted rgba(26, 61, 109, 0.5);
}

.hub-feature-card a:hover {
    border-bottom-style: solid;
}

/* ========== CARDS – AMENITY CARDS (Gold icons) ========== */
.hub-amenity-card {
    background: var(--hub-white);
    padding: 40px 32px;
    transition: var(--hub-transition);
    border: 1px solid transparent;
}

.hub-amenity-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.hub-amenity-icon {
    width: 52px;
    height: 52px;
    background: var(--hub-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.hub-amenity-icon svg {
    color: var(--hub-white);
    stroke: var(--hub-white);
    width: 24px;
    height: 24px;
}

.hub-amenity-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hub-navy);
    margin-bottom: 10px;
}

.hub-amenity-card p {
    font-size: 0.9rem;
    color: var(--hub-gray-500);
    font-weight: 300;
}

/* ========== CARDS – PRICING CARDS ========== */
.hub-pricing-card {
    background: var(--hub-cream);
    padding: 44px 28px;
    text-align: center;
    border: 1px solid var(--hub-gray-200);
    transition: var(--hub-transition);
    position: relative;
    /* Flex alignment */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hub-pricing-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    transform: translateY(-4px);
}

.hub-pricing-card.featured {
    background: var(--hub-navy);
    border-color: var(--hub-navy);
}

.hub-pricing-card.featured:hover {
    transform: translateY(-6px);
}

.hub-pricing-card.featured h3,
.hub-pricing-card.featured .hub-price,
.hub-pricing-card.featured .hub-period {
    color: var(--hub-white);
}

.hub-pricing-card.featured .hub-card-desc {
    color: rgba(255, 255, 255, 0.65);
}

.hub-pricing-card.featured .hub-features li {
    color: rgba(255, 255, 255, 0.8);
}

.hub-pricing-card.featured .hub-features li::before {
    color: var(--hub-orange);
}

.hub-card-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hub-orange);
    color: var(--hub-navy-dark);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    white-space: nowrap;
}

.hub-pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.hub-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--hub-navy);
    line-height: 1;
    margin: 16px 0 4px;
}

.hub-price span {
    font-size: 1.1rem;
}

.hub-period {
    font-size: 0.8rem;
    color: var(--hub-gray-400);
    margin-bottom: 16px;
}

.hub-card-desc {
    font-size: 0.9rem;
    color: var(--hub-gray-500);
    margin-bottom: 20px;
    min-height: 44px;
}

.hub-features {
    list-style: none;
    text-align: left;
    padding: 20px 0 0 0;
    margin: 0;
    border-top: 1px solid var(--hub-gray-200);
}

.hub-pricing-card.featured .hub-features {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.hub-features li {
    font-size: 0.85rem;
    color: var(--hub-gray-700);
    padding: 7px 0 7px 22px;
    position: relative;
}

.hub-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hub-navy);
    font-weight: 600;
    font-size: 0.8rem;
}

.hub-features li.highlight {
    font-weight: 600;
    color: var(--hub-navy);
}

.hub-pricing-card.featured .hub-features li.highlight {
    color: var(--hub-orange);
}

/* ========== TWO-COLUMN LAYOUTS ========== */
.hub-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}

.hub-split.reverse {
    direction: rtl;
}

.hub-split.reverse>* {
    direction: ltr;
}

.hub-split-image {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    box-shadow: 24px 24px 0 var(--hub-cream-dark);
}

.hub-split h2 {
    margin-bottom: 28px;
}

.hub-split p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 300;
}

/* ========== FORMS ========== */
.hub-form-section {
    padding: 120px 24px;
    background: var(--hub-navy-dark);
    text-align: center;
}

.hub-form-section h2 {
    color: var(--hub-white);
    margin-bottom: 12px;
}

.hub-form-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-weight: 300;
}

.hub-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--hub-gray-100);
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(26, 61, 109, 0.08);
}

.hub-form-card.dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Form elements */
.hub-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.hub-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hub-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hub-form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--hub-gray-500);
}

.hub-form-card.dark .hub-form-group label {
    color: rgba(255, 255, 255, 0.5);
}

.hub-form-group input,
.hub-form-group select,
.hub-form-group textarea {
    padding: 16px 18px;
    background: var(--hub-white);
    border: 1px solid var(--hub-gray-200);
    border-radius: 10px;
    color: var(--hub-navy);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--hub-transition);
}

.hub-form-card.dark .hub-form-group input,
.hub-form-card.dark .hub-form-group select,
.hub-form-card.dark .hub-form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--hub-white);
}

.hub-form-group input::placeholder {
    color: var(--hub-gray-400);
}

.hub-form-card.dark .hub-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.hub-form-group input:focus,
.hub-form-group select:focus,
.hub-form-group textarea:focus {
    outline: none;
    border-color: var(--hub-orange);
}

.hub-form-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--hub-gray-400);
    text-align: center;
}

.hub-form-card.dark .hub-form-note {
    color: rgba(255, 255, 255, 0.4);
}

/* Trial badge */
.hub-form-trial {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(201, 169, 98, 0.12);
    color: var(--hub-orange);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(201, 169, 98, 0.25);
    margin-bottom: 20px;
}

.hub-form-card.dark .hub-form-note {
    color: rgba(255, 255, 255, 0.4);
}

/* Forminator overrides (for WordPress) */
.hub-form-card .forminator-input,
.hub-form-card textarea,
.hub-form-card select {
    border-radius: 10px !important;
    padding: 14px !important;
    font-size: 1rem !important;
}

.hub-form-card .forminator-button {
    background: var(--hub-orange) !important;
    color: var(--hub-white) !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    padding: 14px 32px !important;
    border: 2px solid transparent !important;
    text-transform: uppercase !important;
    transition: 0.3s !important;
}

.hub-form-card .forminator-button:hover {
    background: var(--hub-white) !important;
    color: var(--hub-orange) !important;
    border-color: var(--hub-orange) !important;
    transform: translateY(-2px) !important;
}

/* ========== FOOTER ========== */
.hub-footer {
    padding: 48px 24px;
    background: var(--hub-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.hub-footer-logo {
    height: 36px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.hub-footer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.hub-footer-text a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hub-footer-text a:hover {
    color: var(--hub-white);
}

/* ========== UTILITIES ========== */
.hub-text-center {
    text-align: center;
}

.hub-text-left {
    text-align: left;
}

.hub-text-white {
    color: var(--hub-white) !important;
}

.hub-text-navy {
    color: var(--hub-navy) !important;
}

.hub-text-orange {
    color: var(--hub-orange) !important;
}

.hub-text-gold {
    color: var(--hub-orange) !important;
}

.hub-mb-0 {
    margin-bottom: 0 !important;
}

.hub-mb-20 {
    margin-bottom: 20px !important;
}

.hub-mb-40 {
    margin-bottom: 40px !important;
}

.hub-mb-60 {
    margin-bottom: 60px !important;
}

.hub-mt-20 {
    margin-top: 20px !important;
}

.hub-mt-40 {
    margin-top: 40px !important;
}

/* ========== ANIMATIONS ========== */
@keyframes hub-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hub-float {
    animation: hub-float 7.5s ease-in-out infinite;
}

/* ========== CTA SECTION ========== */
.hub-cta {
    position: relative;
    background: linear-gradient(135deg, var(--hub-navy), var(--hub-navy-dark));
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
}

.hub-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 400px at 50% -10%, rgba(242, 140, 56, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

.hub-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hub-cta h2 {
    color: var(--hub-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    margin-bottom: 16px;
}

.hub-cta p {
    color: var(--hub-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

/* ========== MAP / FLOORPLAN SECTION ========== */
.hub-map-section {
    background: var(--hub-white);
    padding: 100px 24px;
    text-align: center;
}

.hub-map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hub-map-subtext {
    font-size: 1.1rem;
    color: var(--hub-gray-500);
    margin-bottom: 30px;
}

/* Legend */
.hub-legend {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--hub-gray-600);
}

.hub-legend>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hub-legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

.hub-legend-box.available {
    background: rgba(96, 186, 86, 0.34);
    border: 1px solid #4a8d43;
}

.hub-legend-box.pending {
    background: rgba(176, 186, 86, 0.54);
    border: 1px solid #8a8f45;
}

.hub-legend-box.leased {
    background: rgba(186, 86, 111, 0.34);
    border: 1px solid #8f4552;
}

/* Map container */
.hub-map-frame {
    background: var(--hub-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* ========== AUTO-FIT GRID ========== */
.hub-grid.auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hub-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hub-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .hub-grid.cols-4,
    .hub-grid.cols-3,
    .hub-grid.cols-2 {
        grid-template-columns: 1fr;
        /* max-width removed to allow full width */
        margin-left: auto;
        margin-right: auto;
    }

    .hub-split {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hub-split-image {
        order: -1;
        aspect-ratio: 16/9;
        box-shadow: none;
    }

    .hub-split.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .hub-section {
        padding: 70px 20px;
    }

    .hub-form-row {
        grid-template-columns: 1fr;
    }

    .hub-hero {
        min-height: 75vh;
    }

    .hub-hero-content {
        padding: 40px 25px;
    }

    .hub-hero h1 {
        font-size: 2.2rem;
    }

    .hub-hero-tagline {
        font-size: 1rem;
    }

    .hub-banner-perks {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hub-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hub-card,
    .hub-feature-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hub-page h1 {
        font-size: 2rem;
    }

    .hub-page h2 {
        font-size: 1.8rem;
    }

    .hub-btn {
        width: 100%;
        text-align: center;
    }

    .hub-price {
        font-size: 2.2rem;
    }
}

/* ========== PREMIUM FOOTER ========== */
.hub-footer-main {
    background: radial-gradient(ellipse at top left, #1a3d6d 0%, #0e2542 60%, #091a30 100%);
    color: #fff;
    padding: 100px 24px 50px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Animated accent bar */
.hub-footer-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f28c38, #ffd2a8, #f28c38, #ffd2a8);
    background-size: 300% 100%;
    animation: hub-footer-glow 8s ease-in-out infinite;
}

@keyframes hub-footer-glow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Grid layout */
.hub-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    text-align: left;
}

/* Column cards */
.hub-footer-col {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle glow on hover */
.hub-footer-col::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 140, 56, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hub-footer-col:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 140, 56, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hub-footer-col:hover::before {
    opacity: 1;
}

/* Logo */
.hub-footer-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

/* Headings */
.hub-footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff !important;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hub-footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Address */
.hub-footer-address {
    color: #ffffff !important;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Contact links */
.hub-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.hub-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f28c38;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hub-footer-contact a:hover {
    color: #fff;
    transform: translateX(4px);
}

.hub-footer-contact svg {
    opacity: 0.8;
}

/* Social icons */
.hub-footer-social {
    display: flex;
    gap: 12px;
}

.hub-footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.hub-footer-social a:hover {
    background: #f28c38;
    border-color: #f28c38;
    color: #fff;
    transform: translateY(-3px);
}

/* Quick Links */
.hub-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.hub-footer-links li {
    margin: 0;
}

.hub-footer-links a {
    display: block;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.hub-footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: #f28c38;
    transition: width 0.3s ease;
}

.hub-footer-links a:hover {
    color: var(--hub-orange);
    padding-left: 12px;
}

.hub-footer-links a:hover::before {
    width: 30px;
}

/* Map */
.hub-footer-map-frame {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-footer-map-frame iframe {
    display: block;
}

.hub-footer-directions {
    margin-top: 16px;
}

.hub-footer-directions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f28c38;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hub-footer-directions a:hover {
    color: #fff;
}

/* Divider */
.hub-footer-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 60px auto 30px;
}

/* Bottom bar */
.hub-footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.hub-footer-bottom strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hub-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hub-footer-map {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hub-footer-main {
        padding: 80px 20px 40px;
    }

    .hub-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hub-footer-map {
        grid-column: span 1;
    }

    .hub-footer-col {
        text-align: center;
        padding: 32px 24px;
    }

    .hub-footer-logo {
        margin: 0 auto 20px;
    }

    .hub-footer-contact {
        align-items: center;
    }

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

    .hub-footer-links a {
        text-align: center;
    }

    .hub-footer-links a:hover {
        padding-left: 0;
    }
}

/* ========== TESTIMONIALS ========== */
#hub-testimonials-force-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    margin-top: 40px;
    width: 100% !important;
}

/* Hide ALL WordPress auto-inserted p tags */
#hub-testimonials-force-grid>p {
    display: none !important;
}

.hub-testimonial-card {
    background: var(--hub-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: auto !important;
    /* Let grid handle width */
    margin: 0 !important;
}



.hub-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hub-testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--hub-orange);
}

.hub-testimonial-text {
    color: var(--hub-gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.hub-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--hub-gray-200);
}

.hub-testimonial-author strong {
    color: var(--hub-navy);
    font-size: 1rem;
    font-weight: 600;
}

.hub-testimonial-source {
    color: var(--hub-gray-500);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hub-testimonials-grid {
        flex-direction: column !important;
    }

    .hub-testimonial-card {
        padding: 24px;
        width: 100%;
        flex: 0 0 100%;
    }
}

/* Premium Glass Card (for Hero Cards matching height/color) */
.hub-glass-card {
    background: rgba(15, 15, 15, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff !important;
    width: 100%;
    height: 100%;
    /* Ensure it fills the flex container */
}

/* Glass Card Content Overrides */
.hub-glass-card h1,
.hub-glass-card h2,
.hub-glass-card h3,
.hub-glass-card h4,
.hub-glass-card p,
.hub-glass-card span,
.hub-glass-card label {
    color: #ffffff !important;
}

/* Ensure flex container stretches items */
.hub-hero-container {
    align-items: stretch !important;
}

/* Adjust mobile stacking */
@media (max-width: 900px) {
    .hub-hero-container {
        flex-direction: column;
        height: auto !important;
        gap: 30px !important;
    }

    .hub-glass-card {
        height: auto !important;
        min-height: auto !important;
    }
}