/* style.css - World-Class Premium Design 2025 */
/* Modern, Luxurious, Highly Engaging & Fully Responsive */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

/* Global Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f17;
    color: #e0e0ff;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Glassmorphism & Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.15;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1), transparent 70%);
    z-index: -1;
}

/* Navbar - Floating Glass Effect */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 23, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(15, 15, 23, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a8e6cf, #dcedc1, #ffd3b6, #ffaaa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #e0e0ff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::before {
    width: 100%;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.premium-badge {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #1a1a2e;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    to { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6); }
}

/* Hero Section - Immersive Parallax */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('images/hero-bg.jpg') center/cover no-repeat fixed;
    filter: brightness(0.6);
    z-index: -1;
    transform: scale(1.1);
    transition: transform 0.8s ease;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-primary::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.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
}

/* Features Section - Elegant Cards */
.features {
    padding: 8rem 5%;
    background: rgba(15, 15, 23, 0.6);
    backdrop-filter: blur(10px);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    background: linear-gradient(90deg, #a8e6cf, #ffd3b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0;
    color: #ffffff;
}

/* Auth Forms - Luxurious Centered */
.auth-form {
    max-width: 480px;
    margin: 8rem auto;
    padding: 3rem;
    background: rgba(15, 15, 23, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.auth-form h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #a8e6cf, #ffd3b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-form input {
    width: 100%;
    padding: 1.2rem;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

/* Dashboard & Content */
.dashboard, .profile, .pricing, .transactions, .premium-content {
    padding: 8rem 5% 5rem;
    min-height: 80vh;
}

.dashboard h1, .profile h1, .pricing h1, .transactions h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #ffffff, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pricing Cards */
.pricing-form {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
}

.pricing-form label {
    display: block;
    margin: 1.5rem 0;
    font-size: 1.3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-form label:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

/* Transaction Table */
.tx-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tx-table th {
    background: linear-gradient(90deg, #667eea, #764ba2);
    padding: 1.5rem;
    text-align: left;
    color: white;
}

.tx-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tx-table tr:hover {
    background: rgba(102, 126, 234, 0.1);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
    color: #a8e6cf;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffd3b6;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .nav-links { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    .nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .auth-form { margin: 4rem 1rem; padding: 2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .logo { font-size: 1.8rem; }
    .btn-primary { padding: 0.9rem 2rem; font-size: 1rem; }
}

/* Add these styles to your existing style.css - Premium Dashboard Enhancements */

.dashboard-container {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 4rem;
}

.welcome-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.user-name-gradient {
    background: linear-gradient(90deg, #a8e6cf, #dcedc1, #ffd3b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 800;
}

.welcome-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 1rem 0 2rem;
}

.premium-status {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
}

.premium-status.active {
    background: linear-gradient(45deg, rgba(255,215,0,0.2), rgba(255,165,0,0.2));
    border: 1px solid #ffd700;
    color: #ffd700;
}

.premium-status.inactive {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.upgrade-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-left: 1rem;
    transition: all 0.3s;
}

.upgrade-btn:hover {
    transform: scale(1.05);
}

/* Quick Actions Grid */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    color: #e0e0ff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.action-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.action-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: white;
}

.action-card p {
    opacity: 0.8;
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    margin: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #a8e6cf, #ffd3b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

.stat-icon {
    font-size: 2rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 1rem 0;
}

.stat-value.success {
    color: #28a745;
}

.stat-footer {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Activity Section */
.activity-section {
    margin: 5rem 0;
}

.activity-list {
    max-width: 800px;
    margin: 0 auto;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
}

.activity-content p {
    margin: 0;
    font-size: 1.1rem;
}

.activity-time {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
    display: block;
}

.view-more a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

/* Quote Section */
.quote-section {
    margin: 6rem 0;
    text-align: center;
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-author {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .welcome-card {
        padding: 2rem;
    }
    .user-name-gradient {
        font-size: 2.3rem;
    }
    .quick-actions, .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .welcome-card {
        padding: 1.5rem;
    }
    .user-name-gradient {
        font-size: 2rem;
    }
    .quick-actions, .stats-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* Add to your style.css - Professional Profile Page Styles */

.profile-container {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Profile Header - Hero Style */
.profile-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
}

.profile-avatar {
    position: relative;
}

.avatar-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.avatar-initial {
    user-select: none;
}

.online-status {
    position: absolute;
    bottom: 15px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #28a745;
    border: 4px solid #0f0f17;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.6);
}

.profile-info {
    flex: 1;
    min-width: 300px;
}

.profile-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ffffff, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-email {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.verified-badge {
    background: #28a745;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 0.8rem;
}

.membership-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.label {
    opacity: 0.7;
}

.value {
    font-weight: 600;
    color: white;
}

.value.premium.active {
    color: #ffd700;
}

.value.premium.inactive {
    color: #888;
}

.separator {
    opacity: 0.5;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.btn-upgrade, .btn-manage {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s;
}

.btn-upgrade:hover, .btn-manage:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-manage {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Form Styling */
.profile-edit-section, .quick-links-section {
    margin: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #a8e6cf, #ffd3b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-form {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #e0e0ff;
}

.form-group input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

.password-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.password-section h3 {
    margin-bottom: 1.5rem;
    color: #a8e6cf;
    font-size: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary.large {
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #e0e0ff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #667eea;
}

/* Quick Links */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.link-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    color: #e0e0ff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.link-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.link-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.link-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: white;
}

.link-card p {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    .profile-actions {
        align-items: center;
        margin-top: 2rem;
    }
    .profile-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .profile-header {
        padding: 2rem;
    }
    .avatar-circle {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}


/* Add to style.css - Profile Photo Upload Styles */

.profile-avatar-upload {
    position: relative;
    display: inline-block;
}

.avatar-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 5px solid rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.avatar-wrapper:hover .avatar-photo {
    transform: scale(1.1);
}

.upload-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
    border-radius: 50%;
}

.avatar-wrapper:hover .upload-overlay {
    opacity: 1;
}

.upload-trigger {
    text-align: center;
    color: white;
    cursor: pointer;
}

.upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.upload-text {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 640px) {
    .avatar-wrapper {
        width: 140px;
        height: 140px;
    }
    .upload-icon {
        font-size: 2rem;
    }
}


/* ............................ premium content ....................... */

/* Add to style.css - Premium Content Hub Styles */
/* premium-content.css - Clean, Professional, Minimal Spacing (2025 Design) */

.premium-hub {
    padding: 0;
    background: #0f0f17;
    color: #e0e0ff;
    min-height: 100vh;
}

/* Hero - Compact */
.premium-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)),
                url('images/premium-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.premium-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ffffff, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-hero p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.access-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Stats Bar - Thin */
.stats-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat {
    font-size: 1.1rem;
}

/* Content Grid - Tight Spacing */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
}

.spotlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,165,0,0.15));
    border: 2px solid rgba(255,215,0,0.4);
}

.grid-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: white;
}

.grid-item p {
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* CTA - Minimal */
.cta-section {
    text-align: center;
    padding: 3rem 5%;
    background: rgba(15, 15, 23, 0.6);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive - Tight on Mobile */
@media (max-width: 968px) {
    .premium-hero {
        height: 40vh;
        min-height: 350px;
    }
    .premium-hero h1 {
        font-size: 2.8rem;
    }
    .content-grid {
        grid-template-columns: 1fr;
        padding: 2rem 5%;
        gap: 1.2rem;
    }
    .spotlight {
        grid-column: span 1;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .premium-hero h1 {
        font-size: 2.4rem;
    }
    .premium-hero p {
        font-size: 1.2rem;
    }
    .grid-item {
        padding: 1.5rem;
    }
    .stats-bar {
        padding: 1rem 5%;
    }
}


/* ------------------------------------ */

/* Add to style.css - Professional Trial & Pricing Styles (Clean & Compact) */

/* Add this complete CSS to your style.css (or create pricing.css and link it) */

.pricing-page {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-size: 3.2rem;
    background: linear-gradient(90deg, #ffffff, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
}

.pricing-header p {
    font-size: 1.4rem;
    opacity: 0.85;
}

/* Trial Section */
.trial-section {
    margin: 3rem 0;
}

.trial-card {
    position: relative;
    background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2));
    border: 2px solid rgba(102,126,234,0.5);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(102,126,234,0.15);
}

.trial-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #1a1a2e;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
}

.trial-card h2 {
    font-size: 2.6rem;
    margin: 1rem 0;
    color: white;
}

.trial-card p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 1rem 0;
}

.trial-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.trial-benefits span {
    background: rgba(255,255,255,0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
}

.btn-trial {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    margin: 1.5rem 0;
    box-shadow: 0 12px 30px rgba(40,167,69,0.4);
    transition: all 0.3s;
}

.btn-trial:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(40,167,69,0.6);
}

.trial-card small {
    display: block;
    margin-top: 1.5rem;
    opacity: 0.7;
}

/* Active Trial */
.trial-active-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(40,167,69,0.15);
    border-radius: 25px;
    border: 2px solid rgba(40,167,69,0.5);
}

.trial-active-card h2 {
    color: #28a745;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.trial-active-card p {
    font-size: 1.4rem;
    margin: 1rem 0;
}

/* Plans Section */
.plans-section {
    margin: 4rem 0;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.plan-card {
    position: relative;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.popular {
    border: 2px solid #ffd700;
    background: rgba(255,215,0,0.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #1a1a2e;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: bold;
}

.plan-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.price {
    margin: 2rem 0;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffd700, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1.3rem;
    opacity: 0.8;
}

.save-badge {
    background: #28a745;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    margin: 1.5rem 0;
    display: inline-block;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    font-size: 1.1rem;
}

.features-list li {
    margin: 1rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.3rem;
}

.btn-plan {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.btn-plan.popular {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #1a1a2e;
    font-weight: 700;
}

.btn-plan:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(102,126,234,0.4);
}

/* Trial Used */
.trial-used-section {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255,193,7,0.1);
    border-radius: 25px;
    border: 1px solid rgba(255,193,7,0.4);
    margin: 3rem 0;
}

.trial-used-section p {
    font-size: 1.3rem;
    margin: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .plans-container {
        grid-template-columns: 1fr;
    }
    .pricing-header h1 {
        font-size: 2.6rem;
    }
    .trial-card {
        padding: 2.5rem 1.5rem;
    }
    .trial-benefits {
        flex-direction: column;
    }
}




/* --------------------------- */
.active-devices-section {
    margin: 4rem 0;
}

.devices-list {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.devices-list ul {
    list-style: none;
}

.devices-list li {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
}

.devices-list li:last-child {
    border-bottom: none;
}