/* TPT Government Landing Page Styles */
:root {
    --tpt-primary-color: #2563eb;
    --tpt-secondary-color: #1e40af;
    --tpt-accent-color: #3b82f6;
    --tpt-text-color: #1f2937;
    --tpt-text-light: #6b7280;
    --tpt-bg-color: #ffffff;
    --tpt-bg-light: #f8fafc;
    --tpt-border-color: #e5e7eb;
    --tpt-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --tpt-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --tpt-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --tpt-radius: 8px;
    --tpt-radius-lg: 12px;
    --tpt-radius-xl: 16px;
    --tpt-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--tpt-text-color);
    background-color: var(--tpt-bg-color);
}

/* Container */
.tpt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Government Landing Page */
.tpt-government-landing {
    min-height: 100vh;
}

/* Hero Section */
.tpt-hero {
    background: linear-gradient(135deg, var(--tpt-primary-color) 0%, var(--tpt-secondary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tpt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.tpt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.tpt-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.025em;
}

.tpt-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.tpt-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.tpt-download-btn {
    background: white;
    color: var(--tpt-primary-color);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: var(--tpt-radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tpt-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: var(--tpt-shadow-lg);
    position: relative;
    overflow: hidden;
}

.tpt-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.tpt-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--tpt-shadow-xl);
}

.tpt-download-btn:hover::before {
    left: 100%;
}



/* ===== SECONDARY DOWNLOAD BUTTON - CONSOLIDATED STYLES ===== */
.tpt-download-btn.tpt-download-secondary,
#tpt-download-secondary {
    /* Layout & Display */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    visibility: visible !important;
    
    /* Colors & Background */
    background: transparent !important;
    border: 2px solid var(--tpt-primary-color) !important;
    color: var(--tpt-primary-color) !important;
    
    /* Typography */
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    
    /* State */
    opacity: 1 !important;
    
    /* Transition */
    transition: var(--tpt-transition) !important;
}

.tpt-download-btn.tpt-download-secondary:hover,
#tpt-download-secondary:hover {
    background: var(--tpt-primary-color) !important;
    border: 2px solid var(--tpt-primary-color) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--tpt-shadow-xl) !important;
}

.tpt-download-btn.tpt-download-secondary:disabled,
#tpt-download-secondary:disabled {
    opacity: 0.7 !important;
    background: rgba(37, 99, 235, 0.1) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
    color: rgba(37, 99, 235, 0.7) !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Button Icon Styling */
.tpt-download-btn.tpt-download-secondary .tpt-btn-icon,
#tpt-download-secondary .tpt-btn-icon {
    display: inline-block !important;
    font-size: 1.25rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure All Text Content is Visible */
.tpt-download-btn.tpt-download-secondary *,
#tpt-download-secondary * {
    opacity: 1 !important;
    display: inline !important;
    visibility: visible !important;
    color: inherit !important;
}

.tpt-download-btn.tpt-download-secondary:hover *,
#tpt-download-secondary:hover * {
    color: white !important;
}
/* ===== END SECONDARY DOWNLOAD BUTTON STYLES ===== */



.tpt-btn-icon {
    font-size: 1.25rem;
}

.tpt-file-info {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    opacity: 0.8;
    justify-content: center;
    flex-wrap: wrap;
}

.tpt-hero-visual {
    margin-top: 3rem;
}

.tpt-hero-icon {
    font-size: 5rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Features Section */
.tpt-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.tpt-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="featuresPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.6" fill="rgba(37, 99, 235, 0.04)"/><circle cx="0" cy="0" r="1" fill="rgba(37, 99, 235, 0.02)"/><circle cx="60" cy="60" r="1" fill="rgba(37, 99, 235, 0.02)"/></pattern></defs><rect width="60" height="60" fill="url(%23featuresPattern)"/></svg>');
}

.tpt-features .tpt-container {
    position: relative;
    z-index: 2;
}

.tpt-features h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--tpt-text-color);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.tpt-features .tpt-section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--tpt-text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.tpt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tpt-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--tpt-radius-xl);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tpt-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tpt-primary-color), var(--tpt-accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tpt-feature-card:hover::before {
    transform: scaleX(1);
}

.tpt-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 1);
}

.tpt-feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--tpt-primary-color), var(--tpt-accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.1));
}

.tpt-feature-card:hover .tpt-feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}

.tpt-feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--tpt-text-color);
    font-weight: 600;
    line-height: 1.4;
}

.tpt-feature-card p {
    color: var(--tpt-text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Service Modules Section */
.tpt-modules {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
}

.tpt-modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="modulesPattern" width="80" height="80" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="40" height="40" fill="rgba(37, 99, 235, 0.01)"/><rect x="40" y="40" width="40" height="40" fill="rgba(37, 99, 235, 0.01)"/></pattern></defs><rect width="80" height="80" fill="url(%23modulesPattern)"/></svg>');
}

.tpt-modules .tpt-container {
    position: relative;
    z-index: 2;
}

.tpt-modules h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--tpt-text-color);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.tpt-section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--tpt-text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.tpt-modules-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tpt-category {
    background: white;
    padding: 2.5rem;
    border-radius: var(--tpt-radius-xl);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tpt-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tpt-primary-color), var(--tpt-accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tpt-category:hover::before {
    transform: scaleX(1);
}

.tpt-category:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 1);
}

.tpt-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--tpt-text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--tpt-bg-light);
}

.tpt-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tpt-category li {
    padding: 0.875rem 0;
    color: var(--tpt-text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0.25rem 0;
}

.tpt-category li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--tpt-primary-color), var(--tpt-accent-color));
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.tpt-category li:hover {
    background: var(--tpt-bg-light);
    color: var(--tpt-text-color);
    padding-left: 2.25rem;
}

.tpt-category li:hover::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.tpt-modules-summary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.tpt-summary-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--tpt-primary-color) 0%, var(--tpt-secondary-color) 100%);
    color: white;
    border-radius: var(--tpt-radius-xl);
    min-width: 180px;
    box-shadow: var(--tpt-shadow-lg);
    transition: var(--tpt-transition);
}

.tpt-summary-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--tpt-shadow-xl);
}

.tpt-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tpt-stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* System Requirements Section */
.tpt-requirements {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.tpt-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="reqPattern" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,0 60,40 100,40 70,65 80,100 50,80 20,100 30,65 0,40 40,40" fill="rgba(37, 99, 235, 0.015)"/></pattern></defs><rect width="100" height="100" fill="url(%23reqPattern)"/></svg>');
}

.tpt-requirements .tpt-container {
    position: relative;
    z-index: 2;
}

.tpt-requirements h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--tpt-text-color);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.tpt-requirements .tpt-section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--tpt-text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.tpt-requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tpt-requirement {
    background: white;
    padding: 2.5rem;
    border-radius: var(--tpt-radius-xl);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tpt-requirement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tpt-primary-color), var(--tpt-accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tpt-requirement:hover::before {
    transform: scaleX(1);
}

.tpt-requirement:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 1);
}

.tpt-requirement h3 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: var(--tpt-text-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--tpt-bg-light);
}

.tpt-requirement h3::before {
    content: '';
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--tpt-primary-color), var(--tpt-accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tpt-requirement:nth-child(1) h3::before { content: '⚙️'; }
.tpt-requirement:nth-child(2) h3::before { content: '🚀'; }
.tpt-requirement:nth-child(3) h3::before { content: '☁️'; }

.tpt-requirement ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tpt-requirement li {
    padding: 0.875rem 0;
    color: var(--tpt-text-light);
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0.25rem 0;
}

.tpt-requirement li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--tpt-primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.tpt-requirement li:hover {
    background: var(--tpt-bg-light);
    color: var(--tpt-text-color);
    padding-left: 2.25rem;
}

.tpt-requirement li:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

/* Installation Section */
.tpt-installation {
    padding: 100px 0;
    background: white;
}

.tpt-installation h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--tpt-text-color);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.tpt-installation .tpt-section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--tpt-text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tpt-install-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tpt-install-step {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: var(--tpt-radius-xl);
    box-shadow: var(--tpt-shadow);
    position: relative;
    border: 1px solid var(--tpt-border-color);
    transition: var(--tpt-transition);
    overflow: hidden;
}

.tpt-install-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tpt-primary-color), var(--tpt-accent-color));
}

.tpt-install-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--tpt-shadow-lg);
}

.tpt-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tpt-primary-color) 0%, var(--tpt-secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: var(--tpt-shadow);
}

.tpt-install-step h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--tpt-text-color);
    font-weight: 600;
}

.tpt-install-step p {
    color: var(--tpt-text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Download Section */
.tpt-download-section {
    padding: 100px 0;
    background: var(--tpt-bg-light);
}

.tpt-download-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: var(--tpt-radius-xl);
    box-shadow: var(--tpt-shadow-xl);
    text-align: center;
    border: 1px solid var(--tpt-border-color);
    position: relative;
    overflow: hidden;
}

.tpt-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tpt-primary-color), var(--tpt-accent-color));
}

.tpt-download-card h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    color: var(--tpt-text-color);
    font-weight: 700;
}

.tpt-download-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.tpt-download-info {
    flex: 1;
    text-align: left;
}

.tpt-download-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--tpt-text-color);
    font-weight: 600;
}

.tpt-download-info p {
    color: var(--tpt-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tpt-download-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tpt-meta-item {
    font-size: 0.95rem;
    color: var(--tpt-text-light);
}

.tpt-download-actions {
    flex: 1;
}

.tpt-checksum-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--tpt-border-color);
}

.tpt-captcha input {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    width: 80px;
    margin-left: 0.5rem;
    backdrop-filter: blur(5px);
}

.tpt-captcha input:focus {
    border-color: var(--tpt-primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.tpt-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--tpt-primary-color) 0%, var(--tpt-secondary-color) 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: var(--tpt-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tpt-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tpt-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tpt-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.tpt-submit-btn:hover:not(:disabled)::before {
    left: 100%;
}

.tpt-submit-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

.tpt-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tpt-submit-btn:disabled::before {
    display: none;
}

.tpt-form-response {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--tpt-radius);
    font-weight: 500;
    text-align: center;
    border: 1px solid;
    position: relative;
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tpt-form-response.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.tpt-form-response.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.tpt-footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

/* Modal Styles */
.tpt-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tpt-modal-content {
    background: white;
    border-radius: var(--tpt-radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--tpt-shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tpt-modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--tpt-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tpt-modal-header h3 {
    margin: 0;
    color: var(--tpt-text-color);
    font-size: 1.375rem;
    font-weight: 600;
}

.tpt-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--tpt-text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tpt-transition);
}

.tpt-modal-close:hover {
    background: var(--tpt-bg-light);
    color: var(--tpt-text-color);
}

.tpt-modal-body {
    padding: 2rem;
}

.tpt-download-progress {
    text-align: center;
}

.tpt-progress-bar {
    width: 100%;
    height: 12px;
    background: var(--tpt-bg-light);
    border-radius: 6px;
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tpt-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--tpt-primary-color), var(--tpt-accent-color));
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tpt-hero {
        padding: 80px 0;
    }

    .tpt-hero h1 {
        font-size: 2.5rem;
    }

    .tpt-hero-subtitle {
        font-size: 1.125rem;
    }

    .tpt-features,
    .tpt-modules,
    .tpt-requirements,
    .tpt-installation,
    .tpt-download-section {
        padding: 80px 0;
    }

    .tpt-features h2,
    .tpt-modules h2,
    .tpt-requirements h2,
    .tpt-installation h2 {
        font-size: 2.25rem;
    }

    .tpt-features-grid,
    .tpt-requirements-grid,
    .tpt-modules-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tpt-install-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tpt-download-details {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .tpt-download-info {
        text-align: center;
    }

    .tpt-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .tpt-footer-brand {
        padding-right: 0;
    }

    .tpt-footer-links {
        justify-content: center;
    }

    .tpt-modules-summary {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .tpt-summary-stat {
        min-width: 200px;
    }

    .tpt-contact-form {
        padding: 2rem;
    }

    .tpt-file-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .tpt-container {
        padding: 0 15px;
    }

    .tpt-hero {
        padding: 60px 0;
    }

    .tpt-hero h1 {
        font-size: 2rem;
    }

    .tpt-hero-subtitle {
        font-size: 1rem;
    }

    .tpt-features,
    .tpt-modules,
    .tpt-requirements,
    .tpt-installation,
    .tpt-download-section {
        padding: 60px 0;
    }

    .tpt-features h2,
    .tpt-modules h2,
    .tpt-requirements h2,
    .tpt-installation h2 {
        font-size: 1.875rem;
    }

    .tpt-download-card {
        padding: 2rem 1.5rem;
    }

    .tpt-contact-form {
        padding: 1.5rem;
        border-radius: var(--tpt-radius-lg);
    }

    .tpt-contact-form h4 {
        font-size: 1.25rem;
    }

    .tpt-form-group input,
    .tpt-form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .tpt-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .tpt-captcha {
        padding: 1rem;
    }

    .tpt-feature-card,
    .tpt-category,
    .tpt-requirement,
    .tpt-install-step {
        padding: 2rem;
    }

    .tpt-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .tpt-footer {
        padding: 40px 0 30px 0;
    }

    .tpt-footer-content {
        gap: 2rem;
    }
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus states for accessibility */
.tpt-download-btn:focus,
.tpt-submit-btn:focus,
.tpt-modal-close:focus {
    outline: 2px solid var(--tpt-primary-color);
    outline-offset: 2px;
}

.tpt-form-group input:focus,
.tpt-form-group textarea:focus {
    outline: none;
}

/* Print styles */
@media print {
    .tpt-modal,
    .tpt-download-btn,
    .tpt-contact-form {
        display: none !important;
    }
    
    .tpt-hero {
        background: white !important;
        color: black !important;
    }
    
    .tpt-footer {
        background: white !important;
        color: black !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --tpt-primary-color: #0000ff;
        --tpt-secondary-color: #000080;
        --tpt-text-color: #000000;
        --tpt-text-light: #333333;
        --tpt-border-color: #000000;
    }
    
    .tpt-feature-card,
    .tpt-category,
    .tpt-requirement,
    .tpt-install-step,
    .tpt-download-card {
        border: 2px solid black;
    }
}

/* Loading animation for better UX */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Scroll animations for modern feel */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced hover effects */
.tpt-feature-card,
.tpt-category,
.tpt-requirement,
.tpt-install-step {
    will-change: transform;
}

.tpt-feature-card:hover,
.tpt-category:hover,
.tpt-requirement:hover,
.tpt-install-step:hover {
    will-change: auto;
}

/* GitHub Link Styling */
.tpt-github-link {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.tpt-github-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--tpt-radius);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--tpt-transition);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.tpt-github-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.tpt-github-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.tpt-github-btn:hover::before {
    left: 100%;
}

.tpt-github-btn:hover .tpt-github-arrow {
    transform: translateX(4px);
}

.tpt-github-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tpt-github-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.tpt-github-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.tpt-github-repo {
    font-size: 0.75rem;
    opacity: 0.8;
    font-family: 'Courier New', monospace;
}

.tpt-github-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--tpt-transition);
    opacity: 0.7;
}

.tpt-github-btn:hover .tpt-github-arrow {
    opacity: 1;
}

/* GitHub link responsive adjustments */
@media (max-width: 480px) {
    .tpt-github-btn {
        min-width: auto;
        width: 100%;
        padding: 0.875rem 1.25rem;
    }
    
    .tpt-github-label {
        font-size: 0.8rem;
    }
    
    .tpt-github-repo {
        font-size: 0.7rem;
    }
}

.tpt-install-step:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 1);
}

.tpt-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tpt-primary-color) 0%, var(--tpt-secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 8px 20px rgba(37, 99, 235, 0.3),
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 6px rgba(37, 99, 235, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.tpt-install-step:hover .tpt-step-number {
    transform: scale(1.1);
    box-shadow: 
        0 12px 30px rgba(37, 99, 235, 0.4),
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 8px rgba(37, 99, 235, 0.2);
}

.tpt-step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tpt-primary-color), var(--tpt-accent-color));
    background-clip: padding-box;
    animation: pulse 2s infinite;
    opacity: 0.3;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

.tpt-install-step h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--tpt-text-color);
    font-weight: 700;
    line-height: 1.4;
}

.tpt-install-step p {
    color: var(--tpt-text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Add connecting lines between steps on larger screens */
@media (min-width: 1024px) {
    .tpt-install-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 80px;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(90deg, var(--tpt-primary-color), var(--tpt-accent-color));
        opacity: 0.3;
        z-index: 3;
    }
}

/* Summary Statistics Enhancement */
.tpt-modules-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.tpt-summary-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--tpt-primary-color) 0%, var(--tpt-secondary-color) 100%);
    color: white;
    border-radius: var(--tpt-radius-xl);
    min-width: 200px;
    box-shadow: 
        0 8px 25px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tpt-summary-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.tpt-summary-stat:hover::before {
    left: 100%;
}

.tpt-summary-stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(37, 99, 235, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.tpt-stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tpt-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Donation Section */
.tpt-donation {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.tpt-donation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="donationPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(37, 99, 235, 0.03)"/><circle cx="20" cy="80" r="1.5" fill="rgba(37, 99, 235, 0.02)"/><circle cx="80" cy="20" r="1.5" fill="rgba(37, 99, 235, 0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23donationPattern)"/></svg>');
}

.tpt-donation .tpt-container {
    position: relative;
    z-index: 2;
}

.tpt-donation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tpt-donation h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--tpt-text-color);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.tpt-donation-description {
    font-size: 1.125rem;
    color: var(--tpt-text-light);
    margin-bottom: 4rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tpt-donation-options {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tpt-donation-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--tpt-radius-xl);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tpt-donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tpt-primary-color), var(--tpt-accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tpt-donation-card:hover::before {
    transform: scaleX(1);
}

.tpt-donation-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 1);
}

.tpt-donation-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s ease;
}

.tpt-donation-card:hover .tpt-donation-icon {
    transform: scale(1.1);
}

.tpt-donation-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--tpt-text-color);
    font-weight: 600;
    line-height: 1.4;
}

.tpt-donation-card p {
    color: var(--tpt-text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.tpt-donation-btn,
.tpt-contact-btn {
    background: linear-gradient(135deg, var(--tpt-primary-color) 0%, var(--tpt-secondary-color) 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: var(--tpt-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tpt-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tpt-donation-btn::before,
.tpt-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tpt-donation-btn:hover,
.tpt-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.tpt-donation-btn:hover::before,
.tpt-contact-btn:hover::before {
    left: 100%;
}

.tpt-donation-btn:active,
.tpt-contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

.tpt-donation-impact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.tpt-impact-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--tpt-primary-color) 0%, var(--tpt-secondary-color) 100%);
    color: white;
    border-radius: var(--tpt-radius-xl);
    min-width: 180px;
    box-shadow: var(--tpt-shadow-lg);
    transition: var(--tpt-transition);
}

.tpt-impact-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--tpt-shadow-xl);
}

.tpt-impact-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tpt-impact-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Footer */
.tpt-footer {
    background: linear-gradient(135deg, var(--tpt-text-color) 0%, #111827 100%);
    color: white;
    padding: 60px 0 40px 0;
    margin-top: 100px;
    position: relative;
}

.tpt-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.3" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
    opacity: 0.3;
}

.tpt-footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
    align-items: center;
    text-align: center;
}

.tpt-footer-brand {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.tpt-footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, white, rgba(255,255,255,0.8));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tpt-footer-brand p {
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.tpt-footer-links {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Contact Form in Footer */
.tpt-contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--tpt-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.tpt-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tpt-primary-color) 0%, var(--tpt-accent-color) 100%);
}

.tpt-contact-form h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    position: relative;
}

.tpt-contact-form h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--tpt-primary-color), var(--tpt-accent-color));
    border-radius: 2px;
}

.tpt-form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.tpt-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    letter-spacing: 0.025em;
}

.tpt-form-group input,
.tpt-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--tpt-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--tpt-transition);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.tpt-form-group input::placeholder,
.tpt-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.tpt-form-group input:focus,
.tpt-form-group textarea:focus {
    outline: none;
    border-color: var(--tpt-primary-color);
    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.3),
        0 4px 12px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.15);
}

.tpt-form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.tpt-captcha {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: var(--tpt-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
    backdrop-filter: blur(5px);
}

.tpt-captcha label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.9rem;
}

.tpt-captcha input {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    width: 80px;
    margin-left: 0.5rem;
    backdrop-filter: blur(5px);
}

.tpt-captcha input:focus {
    border-color: var(--tpt-primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.tpt-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--tpt-primary-color) 0%, var(--tpt-secondary-color) 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: var(--tpt-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tpt-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tpt-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tpt-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.tpt-submit-btn:hover:not(:disabled)::before {
    left: 100%;
}

.tpt-submit-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

.tpt-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tpt-submit-btn:disabled::before {
    display: none;
}

.tpt-form-response {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--tpt-radius);
    font-weight: 500;
    text-align: center;
    border: 1px solid;
    position: relative;
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.tpt-form-response.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.tpt-form-response.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.tpt-footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .tpt-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .tpt-footer-brand {
        padding-right: 0;
    }

    .tpt-footer-links {
        justify-content: center;
    }

    .tpt-contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .tpt-contact-form {
        padding: 1.5rem;
        border-radius: var(--tpt-radius-lg);
        margin: 0.5rem;
    }

    .tpt-contact-form h4 {
        font-size: 1.25rem;
    }

    .tpt-form-group input,
    .tpt-form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .tpt-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .tpt-captcha {
        padding: 1rem;
    }
}

/* GitHub Section Styling */
.tpt-github-section {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.tpt-github-link {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.tpt-github-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--tpt-radius);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--tpt-transition);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.tpt-github-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.tpt-github-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.tpt-github-btn:hover::before {
    left: 100%;
}

.tpt-github-btn:hover .tpt-github-arrow {
    transform: translateX(4px);
}

.tpt-github-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tpt-github-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.tpt-github-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.tpt-github-repo {
    font-size: 0.75rem;
    opacity: 0.8;
    font-family: 'Courier New', monospace;
}

.tpt-github-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--tpt-transition);
    opacity: 0.7;
}

.tpt-github-btn:hover .tpt-github-arrow {
    opacity: 1;
}

/* GitHub link responsive adjustments */
@media (max-width: 480px) {
    .tpt-github-btn {
        min-width: auto;
        width: 100%;
        padding: 0.875rem 1.25rem;
        margin: 0 1rem;
    }
    
    .tpt-github-label {
        font-size: 0.8rem;
    }
    
    .tpt-github-repo {
        font-size: 0.7rem;
    }
}

/* Enhanced form layout for wider contact form */
.tpt-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.tpt-contact-form-full {
    grid-column: 1 / -1;
}

/* Update responsive behavior for new layout */
@media (max-width: 768px) {
    .tpt-footer-content {
        gap: 2rem;
        padding: 0 1rem;
    }

    .tpt-contact-form {
        padding: 2rem;
        max-width: 100%;
    }

    .tpt-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .tpt-contact-form {
        padding: 1.5rem;
        border-radius: var(--tpt-radius-lg);
        margin: 0 0.5rem;
    }

    .tpt-contact-form h4 {
        font-size: 1.25rem;
    }

    .tpt-form-group input,
    .tpt-form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .tpt-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .tpt-captcha {
        padding: 1rem;
    }
}
