.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}/* CSS Custom Properties */
:root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --light-gray: #f8f9fa;
            --border-color: #ddd;
            --shadow: 0 0 20px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --free-color: #27ae60;
            --platinum-color: #c0c0c0;
            --golden-color: #ffd700;
            --vip-color: #ff6b35;
            --primary: #003366; 
            --secondary: #6c757d; 
            --accent: #28a745;
            --light: #f5f7fa; 
            --text: #333; 
            --radius: 8px;
}

/* Global Styles */


body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            font-family: 'Montserrat', sans-serif;
            background: var(--light);
            color: var(--text);
}

/* Enhanced Tiers Row Layout - Fixed for Desktop 4-Card Row */
.tiers-row {
    display: flex;
    gap: 1.0rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tier {
    flex: 1 1 calc(25% - 0.75rem); /* Force 4 equal cards per row */
    min-width: 220px; /* Keep your original minimum */
    max-width: none; /* Remove max-width constraint for desktop */
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Keep all your existing tier styling exactly as is */
.tier::before {
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(135deg, transparent 40%, rgba(0,51,102,0.15)); 
    pointer-events: none;
}

.tier-header { 
    padding: 1.5rem 1rem; 
    text-align: center; 
    color: #fff; 
}

/* Preserve all existing color schemes */
.tier-header.free { 
    background: linear-gradient(135deg,#007B27,#000);
    min-height: 122px; 
}

.tier-header.platinum { 
    background: linear-gradient(135deg,#003366,#336699); 
    min-height: 122px; 
}

.tier-header.golden { 
    background: linear-gradient(135deg,gold,#ffd700); 
    min-height: 122px; 
}

.tier-header.vip { 
    background: linear-gradient(135deg,#750B0D,#A32023); 
    min-height: 122px; 
}

.tier-header h2 { 
    font-size: 1.3rem; 
    margin-bottom: 0.5rem; 
}

.tier-price { 
    font-size: 1.5rem; 
    font-weight: 600;
}

.tier-list { 
    list-style: none; 
    padding: 1rem; 
    flex-grow: 1; 
}

.tier-list li { 
    padding: 0.4rem 0; 
    display: flex; 
    align-items: center;
    border-bottom: 1px solid #eee; 
    font-size: 0.9rem; 
    transition: background var(--transition);
}

.tier-list li i { 
    color: var(--accent); 
    margin-right: 0.6rem; 
    width: 18px; 
}

.tier-list li:hover { 
    background: #f0f8ff; 
}

.tier-footer { 
    padding: 1rem; 
    text-align: center; 
}

.tier-footer button {
    background: var(--accent); 
    color: #fff; 
    border: none; 
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius); 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 0.9rem;
    transition: background var(--transition), transform var(--transition);
}

.tier-footer button:hover { 
    background: #218838; 
    transform: translateY(-2px); 
}


/* Responsive Breakpoints - Maintaining Desktop Row */
@media (min-width: 1200px) {
    .tiers-row {
        max-width: 1200px;
        margin: 0 auto 3rem auto;
        padding: 0 0 2rem 0;
    }
    
    .tier {
        flex: 1 1 calc(25% - 0.75rem);
        max-width: 280px; /* Restore max-width only for large screens */
    }
}

/* Large Desktop - Keep 4 cards */
@media (min-width: 1024px) and (max-width: 1199px) {
    .tier {
        flex: 1 1 calc(25% - 0.75rem);
        min-width: 200px; /* Slightly smaller minimum */
    }
}

/* Tablet - 2 cards per row */
@media (min-width: 768px) and (max-width: 1023px) {
    .tiers-row {
        padding: 0 1.5rem;
    }
    
    .tier {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 280px;
        max-width: none;
    }
}

/* Mobile - Single column */
@media (max-width: 767px) {
    .tiers-row {
        flex-direction: column;
        align-items: center;
		width: 100%;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .tier {
        flex: none;
        min-width: 0; /* Remove minimum width constraint */
        max-width: 400px;
        width: 100%;
    }
    
    .tier-header {
        padding: 1.2rem 1rem;
        min-height: 100px;
    }
    
    .tier-header h2 {
        font-size: 1.4rem;
    }
    
    .tier-price {
        font-size: 1.5rem;
    }
    
    .tier-list {
        padding: 1rem;
    }
    
    .tier-list li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .tiers-row {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .tier {
        max-width: none;
    }
    
    .tier-header {
        padding: 1rem 0.8rem;
        min-height: 90px;
    }
    
    .tier-header h2 {
        font-size: 1.3rem;
    }
    
    .tier-list {
        padding: 0.8rem;
    }
    
    .tier-list li {
        font-size: 0.85rem;
    }
}

    /* Tab System */
    .projections-section { 
        margin: 3rem 0; 
        border: 2px solid var(--border-color);
        border-radius: 12px;
        background: white;
        overflow: hidden;
    }
    .tab-container { background:#fff; border-radius:var(--radius); box-shadow:0 2px 5px rgba(0,0,0,0.1); }
    .tab-nav { display:flex; border-bottom:1px solid #ddd; }
    .tab-button {
      flex:1; padding:1rem; background:none; border:none; cursor:pointer;
      font-weight:600; color:var(--secondary); transition:all var(--transition);
    }
    .tab-button.active { background:var(--primary); color:#fff; }
    .tab-button:hover:not(.active) { background:#f8f9fa; }
    .tab-content { padding:2rem; display:none; }
    .tab-content.active { display:block; }
    .chart-container { width:100%; height:400px; position:relative; }
    canvas { max-width:100%; height:auto; }

    /* Comparison Table */
    .comparison { margin:3rem 0; overflow-x:auto; }
    table { width:100%; border-collapse:collapse; background:#fff; box-shadow:0 2px 5px rgba(0,0,0,0.1); }
    th, td { padding:0.75rem; text-align:center; border:1px solid #ddd; }
    th { background:var(--primary); color:#fff; position:sticky; top:0; }
    tr:nth-child(even) { background:#f9f9f9; }

    /* Signup Form */
    form.signup { background:#fff; padding:2rem; border-radius:var(--radius); box-shadow:0 4px 10px rgba(0,0,0,0.1); }
    form.signup h2 { margin-bottom:1rem; color:var(--primary); text-align:center; }
    .form-group { margin-bottom:1rem; }
    label { display:block; margin-bottom:0.5rem; font-weight:600; }
    input, select, textarea { width:100%; padding:0.75rem; border:1px solid #ccc; border-radius:var(--radius); transition:border-color var(--transition); }
    input:focus, select:focus, textarea:focus { border-color:var(--primary); outline:none; }
    .checkbox-group, .radio-group { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:0.5rem; }
    .checkbox-group input, .radio-group input { margin-right:0.2rem; transform:scale(1.1); }
    details.legal { margin:1rem 0; }
    details summary { cursor:pointer; font-weight:600; color:var(--secondary); }
    details div { padding:1rem; border:1px solid #ccc; border-radius:var(--radius); background:#fafafa; }
    button.submit-btn {
      display:block; width:100%; padding:0.75rem; background:var(--primary);
      color:#fff; border:none; border-radius:var(--radius); font-weight:600;
      cursor:pointer; transition:background var(--transition);
    }
    button.submit-btn:hover { background:#002244; }

    /* Responsive Design */
    @media (max-width: 768px) {
      .tiers-row { flex-direction:column; align-items:center; }
      .tier { max-width:100%; }
      .tab-nav { flex-direction:column; }
    }

/* PARALLAX CONTAINER STYLES - FIXED */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.material-parallax {
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    bottom: 0;
    z-index: 0;
}

/* FIX: Show the image in its original color - CHANGED FROM display: none; */
.material-parallax img {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 101%;
    min-height: 101%;
    max-width: none;
    transform: translateX(-50%);
    object-fit: cover;
    z-index: 1;
    /* Ensure no filters or transformations affect image quality */
    filter: none;
    opacity: 1;
    background: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.parallax-content {
    position: relative;
    z-index: 2;
}

/* Remove any potential overlay effects */
.parallax-container::before,
.parallax-container::after,
.material-parallax::before,
.material-parallax::after {
    display: none;
}

/* Mobile Optimization for Parallax */
@media screen and (max-width: 768px) {
    .material-parallax {
        position: static;
        height: 400px;
    }
    
    .material-parallax img {
        position: relative;
        transform: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.parallax-content {
    position: absolute;
    z-index: 2;
}

}

/* Form Container */
.form-container {
            max-width: 1400px;
            margin: 1.5rem auto;
            padding: 1rem;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: var(--shadow);
            width: 98%;
}

/* MEMBERSHIP OVERVIEW SECTION STYLES */
.membership-overview-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 3rem;
	padding-left: 3rem;
	padding-right: 3rem;
	padding-bottom: 0rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid var(--border-color);
}

.overview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.overview-header h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.overview-subtitle {
    font-size: 1.3em;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Value Proposition Grid */
.value-proposition-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    margin-top: -50px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.value-card {
    flex: 1;
    min-width: 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #333;
}

.value-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Quick Comparison Table */
.quick-comparison {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.quick-comparison h2 {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    margin: 0;
    text-align: center;
    font-size: 1.5em;
}

.comparison-table-wrapper {
	padding-top: 20px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 0rem;
    text-align: center;
    border-bottom: 0px solid var(--border-color);
}

.comparison-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--primary-color);
}

.tier-free { background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%); }
.tier-platinum { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.tier-golden { background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%); }
.tier-vip { background: linear-gradient(135deg, #fff9e6 0%, #ffe6b3 100%); }

.savings {
    color: var(--success-color);
    font-weight: bold;
}

.note {
    text-align: center;
    margin: 1.5rem;
    font-weight: 600;
    color: var(--success-color);
}

/* COLLAPSIBLE DETAILED COMPARISON */
.detailed-comparison {
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: white;
    overflow: hidden;
}

.comparison-toggle-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.comparison-toggle-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
}

.comparison-toggle-btn.expanded {
    background: linear-gradient(135deg, var(--success-color) 0%, #219a52 100%);
}

.toggle-text {
    flex: 1;
    text-align: left;
}

.toggle-icon {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.comparison-toggle-btn.expanded .toggle-icon {
    transform: rotate(180deg);
}

.comparison-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background: white;
}

.comparison-content.expanded {
    max-height: 2000px;
    padding: 2rem;
}

.comparison-content h3 {
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    font-size: 1.3em;
    text-align: center;
}

.detailed-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.detailed-comparison-table th,
.detailed-comparison-table td { 
    padding: 0px;
	font-size: 0.9em;
    text-align: left;
    border-bottom: 0px solid var(--border-color);
}

.feature-column {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--primary-color);
    width: 30%;
    position: sticky;
    left: 0;
    z-index: 10;
}

.tier-column {
    text-align: center;
    width: 17.5%;
    position: relative;
}

.tier-header-mini {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.tier-header-mini .tier-icon {
    font-size: 1.2em;
}

.tier-header-mini .tier-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9em;
}

.free-column {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

.platinum-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.golden-column {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.vip-column {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe6b3 100%);
}

.category-header td {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1.2rem;
}

.feature-yes {
    color: var(--success-color);
    font-size: 1.1em;
    font-weight: bold;
}

.feature-no {
    color: var(--accent-color);
    font-size: 1.1em;
    font-weight: bold;
}

.feature-partial {
    color: var(--warning-color);
    font-size: 1.1em;
    font-weight: bold;
}

.feature-highlight {
    color: #f39c12;
    font-size: 1.2em;
}

.highlight-row {
    background: rgba(243, 156, 18, 0.1);
}

.highlight-row td {
    font-weight: 600;
}

/* COLLAPSIBLE GRAPHICAL PROJECTIONS */
.projections-toggle-btn {
    width: 100%;
    background: linear-gradient(135deg, yellow 0%, #FFBE00 100%);
    color: black;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.projections-toggle-btn:hover {
    background: linear-gradient(135deg, #FFBE01 0%, #FFBE00 100%);
}

.projections-toggle-btn.expanded {
    background: linear-gradient(135deg, var(--success-color) 0%, #219a52 100%);
}

.projections-toggle-text {
    flex: 1;
    text-align: left;
}

.projections-toggle-icon {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.projections-toggle-btn.expanded .projections-toggle-icon {
    transform: rotate(180deg);
}

.projections-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background: white;
}

.projections-content.expanded {
    max-height: 2000px;
    padding: 2rem;
}

/* TIER DETAILS SECTIONS */
.tier-details-section {
    background: white;
    border-radius: 12px;
    margin-bottom: 2rem;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 6px solid var(--secondary-color);
}

.free-details { border-left-color: var(--free-color); }
.platinum-details { border-left-color: var(--platinum-color); }
.golden-details { border-left-color: var(--golden-color); }
.vip-details { border-left-color: var(--vip-color); }

.tier-details-header {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-gray);	
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;	
}

.tier-icon-large {
    font-size: 4em;
    min-width: 80px;
}

.tier-details-title h2 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 2em;
}

.tier-subtitle {
    color: #666;
    font-style: italic;
    margin: 0 0 1rem 0;
    font-size: 1.1em;
}

.tier-pricing-overview {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-main {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
}

.price-note {
    font-size: 0.9em;
    color: #888;
}

.tier-description {
    margin-bottom: 2rem;
    font-size: 1.1em;
    line-height: 1.7;
}

.tier-description p {
    margin-bottom: 1rem;
}

.savings-breakdown {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.savings-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.savings-item .label {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 0.3rem;
}

.savings-item .value {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--primary-color);
}

.savings-item.highlight .value {
    color: var(--success-color);
}

.benefits-overview {
    margin-bottom: 2rem;
}

.benefits-overview h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3em;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.benefit {
    display: flex;
    gap: 1rem;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.benefit-icon {
    font-size: 1.8em;
    min-width: 40px;
}

.benefit-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.1em;
}

.benefit-content p {
    margin: 0 0 0.5rem 0;
    color: #555;
    line-height: 1.5;
}

.benefit-value {
    font-size: 0.9em;
    color: var(--success-color);
    font-weight: 600;
}

.value-enhancement {
    background: rgba(52, 152, 219, 0.1);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.value-enhancement h4 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1em;
}

.ideal-for-section {
    background: rgba(39, 174, 96, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.ideal-for-section h4 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.1em;
}

.ideal-for-section ul {
    margin: 0;
    padding-left: 1.5rem;
}

.ideal-for-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Tier-specific colors for benefits */
.free-details .benefit { border-left-color: var(--free-color); }
.platinum-details .benefit { border-left-color: var(--platinum-color); }
.golden-details .benefit { border-left-color: var(--golden-color); }
.vip-details .benefit { border-left-color: var(--vip-color); }

.free-details .ideal-for-section { border-left-color: var(--free-color); }
.platinum-details .ideal-for-section { border-left-color: var(--platinum-color); }
.golden-details .ideal-for-section { border-left-color: var(--golden-color); }
.vip-details .ideal-for-section { border-left-color: var(--vip-color); }

/* Features Highlight */
.features-highlight {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.features-highlight h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.9rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.feature-icon {
    font-size: 2em;
    min-width: 50px;
}

.feature-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.2em;
}

.feature-content p {
    margin: 0;
    color: #666;
    font-size: 1.02em;
}

/* FORM STYLES */
.form-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
            color: white;
            border-radius: 10px 10px 0 0;
}

.form-header h2 {
            margin: 0 0 1rem 0;
            font-size: 2em;
}

.form-header p {
            margin: 0;
            font-size: 1.1em;
            opacity: 0.9;
}

/* Form Sections */
.form-section {
            margin-bottom: 2rem;
            padding-left: 2rem;
			padding-right: 2rem;
			padding-top: 0.5rem;
			padding-bottom: 1.5rem;	
            background: white;
            border-radius: 0px 0px  10px 10px;
            border-left: 6px solid var(--secondary-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 0.5em;
            border-bottom: 3px solid var(--light-gray);
            padding-top: 1.5rem;
			padding-bottom: 0.5rem;
}



/* Form Grid Layout */
.form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            row-gap: 0rem; /* Reduced from 2rem */
            column-gap: 1.5rem; /* Reduced from 2rem */
            align-items: start;
}

/* Input Groups */
.input-group {
            margin-bottom: 0.1rem; /* Reduced from 2rem */
            display: flex;
            flex-direction: column;
}

.form-label {
            display: block;
            margin-bottom: 0.6rem; /* Reduced from 1rem */
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.05em;
}

label {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.3rem; /* Reduced from 0.4rem */
            font-size: 1.02em;
}

/* Form Inputs */
input, select, textarea {
            padding: 0.7rem; /* Reduced from 0.4rem? Actually increased slightly for better touch */
            border: 2px solid var(--border-color);
            border-radius: 6px;
            transition: var(--transition);
            font-size: 1.05em;
            font-family: inherit;
}

input:focus, select:focus, textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.15);
}

.inline-input {
            width: 200px;
            margin-left: 0.7rem;
            padding: 0.5rem;
            font-size: 1rem;
}

/* Radio Button Groups */
.radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem; /* Reduced from 2rem */
            align-items: center;
}

.radio-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
}

.radio-item input[type="radio"] {
            width: 18px;
            height: 18px;
            min-width: 18px;
            margin: 0;
            cursor: pointer;
}

.radio-item label {
            margin: 0;
            font-weight: normal;
            cursor: pointer;
            color: var(--primary-color);
            white-space: nowrap;
            font-size: 1.02em;
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    margin-top: 0.1rem;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    color: var(--primary-color);
    line-height: 1.5;
    font-size: 1.02em;
}

/* MINIMAL TIER SELECTION - FOUR CARDS IN ONE ROW */
.minimal-tier-selection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.minimal-tier-card {
    position: relative;
    background: white;
    transition: var(--transition);
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    min-height: 160px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.minimal-tier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.minimal-tier-card input[type="radio"] {
    display: none;
}

.minimal-card-label {
    display: block;
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid var(--border-color);
    height: 100%;
    min-height: 160px;
    width: 100%;
}

/* PROPER FULL CARD SELECTION WRAPPING */
.minimal-tier-card input[type="radio"]:checked + .minimal-card-label {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    
}

.minimal-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
    gap: 0.5rem;
}

.minimal-tier-card .tier-icon {
    font-size: 2.5em;
    margin-bottom: 0.5rem;
}

.tier-info h4 {
    margin: 0 0 0.3rem 0;
    color: var(--primary-color);
    font-size: 1.2em;
}

.tier-price {
    margin: 0 0 0.3rem 0;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95em;
    line-height: 1.3;
}

.tier-savings {
    margin: 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.9em;
}

/* Popular and Premium Badges */
.popular-badge,
.premium-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

.popular-badge {
    background: var(--golden-color);
    color: var(--primary-color);
}

.premium-badge {
    background: var(--vip-color);
    color: white;
}

/* Tier-specific selection colors */
.minimal-tier-card[data-tier="free"] input[type="radio"]:checked + .minimal-card-label {
    border-color: var(--free-color);
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.minimal-tier-card[data-tier="platinum"] input[type="radio"]:checked + .minimal-card-label {
    border-color: var(--platinum-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
}

.minimal-tier-card[data-tier="golden"] input[type="radio"]:checked + .minimal-card-label {
    border-color: var(--golden-color);
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.minimal-tier-card[data-tier="vip"] input[type="radio"]:checked + .minimal-card-label {
    border-color: var(--vip-color);
    background: linear-gradient(135deg, #fff9e6 0%, #ffe6b3 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Selected Tier Summary */
.selected-tier-summary {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border: 3px solid var(--secondary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.selected-tier-summary h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.summary-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.summary-icon {
    font-size: 3em;
}

.summary-details {
    flex: 1;
}

.summary-name {
    display: block;
    font-size: 1.3em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.summary-pricing,
.summary-savings {
    display: block;
    margin-bottom: 0.3rem;
    color: #666;
}

.summary-savings {
    color: var(--success-color);
    font-weight: 600;
}

/* Engagement Categories */
.engagement-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 0.8rem;
}

.category-group {
    background: var(--light-gray);
    padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 1rem;
	padding-bottom: 0.8rem;	
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.category-group h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.2em;
}

/* Legal Section */
.legal-text {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--warning-color);
}

.legal-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.8rem;
    font-size: 1.02em;
}

/* Signature Section */
.signature-section {
	max-width: 700px;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 3px dashed var(--secondary-color);
	text-align: left;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content:center;
    align-items: center;
	grid-gap: 60px;
    margin-top: 1rem;
	padding-top: 1rem;
    padding-bottom: 0rem;
    border-top: 3px solid var(--light-gray);
}

/* Buttons */
button, .btn-primary, .btn-secondary {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-primary, button[type="submit"] {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: white;
}

.btn-primary:hover, button[type="submit"]:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

.btn-secondary, button[type="reset"] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover, button[type="reset"]:hover {
    background: #545b62;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .minimal-tier-selection {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .form-container {
        width: 96%;
        padding: 1.5rem;
		padding-bottom: 1.5rem;
    }
    
    .membership-overview-section {
        padding: 2rem;
    }
    
    .tier-details-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .savings-breakdown {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .engagement-categories {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .form-container {
                margin: 1rem;
                padding-bottom: 0;
    }
    
    .membership-overview-section {
        padding: 1.5rem;
    }
    
    .overview-header h1 {
        font-size: 2em;
    }
    
    .value-proposition-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
                grid-template-columns: 1fr;
                row-gap: 0.6rem;
    }
    
    .minimal-tier-selection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-content {
        flex-direction: column;
        text-align: center;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation button {
        width: 100%;
    }
    
    .engagement-categories {
        grid-template-columns: 1fr;
    }
    
    .value-proposition-grid {
        flex-wrap: wrap;
    }
    
    .value-card {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
	
		.form-section {
		padding: 1rem;
	}
	
}





@media (max-width: 480px) {
    .tier-details-section {
        padding: 1.5rem;
    }
    
    .benefit {
        flex-direction: column;
        text-align: center;
    }
    
    .minimal-card-content {
        padding: 1rem;
    }
    
    .category-group {
        padding: 1.5rem;
    }
    
    .inline-input {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .value-proposition-grid {
        flex-direction: column;
    }
    
    .value-card {
        flex: none;
        width: 100%;
    }
}

/* Animation and Effects */
.form-section,
.tier-details-section {
    animation: fadeIn 0.6s ease-in-out;
}






@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus Accessibility */
input:focus-visible,
button:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* Namespaced styles to prevent conflicts */

        
        .uhf-membership-widget {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            padding: 20px;
            border-radius: 10px;
        }
        
        .uhf-membership-container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        /* Header Styles */
        .uhf-membership-header {
            background: linear-gradient(135deg, #003366, #006699);
            color: white;
            padding: 30px 20px;
            text-align: center;
        }
        
        .uhf-membership-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .uhf-membership-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Tab Navigation */
        .uhf-membership-tabs {
            display: flex;
            background: #f0f0f0;
            border-bottom: 1px solid #ddd; 
        }
        
        .uhf-tab-button {
            flex: 1;
            padding: 15px;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .uhf-tab-button:hover {
            background: #e0e0e0;
        }
        
        .uhf-tab-button.uhf-active {
            background: #fff;
        }
        
        .uhf-tab-button.uhf-active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
        }
        
        /* Tab Content */
        .uhf-tab-content {
            display: none;
            padding: 20px;
        }
        
        .uhf-tab-content.uhf-active {
            display: block;
            animation: uhfFadeIn 0.5s ease;
        }
        
        @keyframes uhfFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Tier-specific styling */
        .uhf-tab-button[data-uhf-tier="free"].uhf-active::after {
            background-color: #6c757d;
        }
        
        .uhf-tab-button[data-uhf-tier="platinum"].uhf-active::after {
            background-color: #003366;
        }
        
        .uhf-tab-button[data-uhf-tier="golden"].uhf-active::after {
            background-color: #b8860b;
        }
        
        .uhf-tab-button[data-uhf-tier="vip"].uhf-active::after {
            background-color: #2a2a2a;
        }
        
        /* Tier Details Styling */
        .uhf-tier-details-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .uhf-tier-icon-large {
            font-size: 3rem;
            margin-right: 20px;
        }
        
        .uhf-tier-details-title h2 {
            font-size: 2rem;
            margin-bottom: 5px;
        }
        
        .uhf-tier-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 10px;
        }
        
        .uhf-tier-pricing-overview {
            margin-top: 10px;
        }
        
        .uhf-price-main {
            font-size: 1.5rem;
            font-weight: bold;
            display: block;
        }
        
        .uhf-price-note {
            font-size: 1rem;
            color: #666;
        }
        
        .uhf-tier-description {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .uhf-savings-breakdown {
            background: #f0f7ff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .uhf-savings-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .uhf-savings-item.uhf-highlight {
            font-weight: bold;
            color: #003366;
        }
        
        .uhf-benefits-overview {
            margin-bottom: 20px; 
        }
        
        .uhf-benefits-overview h3 {
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .uhf-benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .uhf-benefit {
            display: flex;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .uhf-benefit-icon {
            font-size: 1.8rem;
            margin-right: 15px;
        }
        
        .uhf-benefit-content h4 {
            margin-bottom: 5px;
        }
        
        .uhf-benefit-value {
            display: block;
            margin-top: 10px;
            font-weight: bold;
            color: #003366;
        }
        
        .uhf-value-enhancement {
            background: #f0f7ff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: bold;
            color: #003366;
        }
        
        .uhf-ideal-for-section {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
        }
        
        .uhf-ideal-for-section h4 {
            margin-bottom: 10px;
        }
        
        .uhf-ideal-for-section ul {
            list-style-type: none;
        }
        
        .uhf-ideal-for-section li {
            margin-bottom: 8px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .uhf-membership-tabs {
                flex-direction: column;
            }
            
            .uhf-benefits-list {
                grid-template-columns: 1fr;
            }
            
            .uhf-tier-details-header {
                flex-direction: column;
                text-align: center;
            }
            
            .uhf-tier-icon-large {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }






/*tNc */
    .uhf-terms {
      display: none;
      margin-top: 1em;
      padding: 1em;
      border: 0px solid #ccc;
      background: #f9f9f9;
    }
    .toggle-link {
      color: #007acc;
      text-decoration: none;
      cursor: pointer;
      font-weight: bold;
    }



.top-container-member {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0px; /* Space between items */
}











/*Pas Label*/
        .password-container {
            width: 100%;
            max-width: 1175px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 0 auto;
        }

        .password-header {
            background: linear-gradient(135deg, #003366 0%, #006699 100%);
            color: white;
            padding: 20px;
            text-align: center;
			text-decoration: none;
			font-style: normal;
        }

        .password-header h1 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
			color: white;
            gap: 12px;
			text-decoration: none;
			font-style: normal;			
        }

        .password-form {
            padding: 25px;
        }

        .password-section {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            border-left: 4px solid #3498db;
        }

        .password-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 15px;
        }

        @media (min-width: 768px) {
            .password-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .input-group {
            margin-bottom: 18px;
        }

        .p-label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.95rem;
        }

        .p-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .p-input:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-top: 15px;
        }
        
        @media (min-width: 480px) {
            .requirements-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 768px) {
            .requirements-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .requirement-item {
            display: flex;
            align-items: center;
            padding: 10px 12px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            font-size: 0.9rem;
        }

        .requirement-icon {
            margin-right: 10px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .valid .requirement-icon {
            background: #27ae60;
            color: white;
        }

        .invalid .requirement-icon {
            background: #e74c3c;
            color: white;
        }

        .valid {
            color: #27ae60;
        }

        .invalid {
            color: #e74c3c;
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 4px;
            display: none;
        }

        .success-message {
            color: #27ae60;
            font-size: 0.85rem;
            margin-top: 4px;
            display: none;
        }

        .submit-section {
            text-align: center;
            margin-top: 25px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }


        .password-strength {
            height: 5px;
            background: #eee;
            border-radius: 3px;
            margin-top: 8px;
            overflow: hidden;
        }

        .strength-meter {
            height: 100%;
            width: 0;
            background: #e74c3c;
            transition: width 0.3s ease;
        }







/*charts*/

    .expandable {
      max-width: 1200px;
      margin-top: 20px;
	  margin-bottom: 3rem;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--panel-shadow);
    }
    .expandable-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* Vertical gold gradient */
      background: linear-gradient(180deg, #FAD300 0%, #F1C901 100%); 
      color: white;
      padding: 1.6rem 1.25rem;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition);
    }
    .expandable-header:hover {
      /* Reverse vertical gradient on hover */
      background: linear-gradient(180deg, #FAD300 0%, #F5CE00 100%); color:
    }
    .expandable-header .icon {
      font-size: 1.25rem;
      transition: transform var(--transition);
    }
    .expandable-header.expanded .icon {
      transform: rotate(90deg);
    }
    .expandable-content {
      height: 0;
      overflow: hidden;
      transition: height var(--transition);
    }
    .tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
	  margin-top: 1rem;
      border-bottom: 2px solid #eee;
      background: #fafafa;
    }
    .tabs button {
      background: none;
      border: none;
      padding: 0.75rem 1.25rem;
      font-size: 1rem;
      font-weight: 500;
      color: cornflowerblue;
      border-radius: var(--radius) var(--radius) 0 0;
      transition: background var(--transition), color var(--transition);
    }
    .tabs button:hover {
      background: #78AEFF;
	  color: white;
    }
    .tabs button.active {
      background: #565759;
      color: white;
    }
    .panel {
      display: none;
      padding: 1.5rem;
      background: #fff;
    }
    .panel.active {
      display: block;
    }
    .chart-container {
      position: relative;
      height: 350px;
    }

