/* css/main-style.css */

/* ===== VARIABLES ===== */
:root {
    --primary-blue: #1e3a8a; /* Darker blue for night theme */
    --primary-dark: #0c1428; /* Darker background */
    --primary-darker: #080f1d; /* Darkest background */
    --accent-blue: #0ea5e9;
    --accent-purple: #7c3aed;
    --accent-teal: #10b981;
    --accent-amber: #f59e0b;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --text-dark: #64748b;
    --border-dark: #1e293b;
    --border-light: rgba(255, 255, 255, 0.1); /* Lighter border for subtle separation */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--accent-purple), var(--accent-blue));
    --gradient-dark: linear-gradient(135deg, #0c1428, #1e293b);
    --gradient-card: linear-gradient(145deg, #1e293b, #0c1428);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-primary: 0 10px 30px rgba(30, 58, 138, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(30, 58, 138, 0.3); }
    50% { box-shadow: 0 0 40px rgba(30, 58, 138, 0.5); }
}

@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

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


/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom, #080f1d, #0c1428, #080f1d);
    color: var(--text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    font-size: 16px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    z-index: -1;
}





/* ===== LAYOUT STYLES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.main-content {
    margin-top: 80px;
    padding: 0;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-secondary::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;
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-primary);
    animation: glow 3s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-blue);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}


/* ===== HEADER STYLES ===== */
.header {
    text-align: center;
    padding: 180px 20px 100px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(100px);
    z-index: -1;
    animation: gradientShift 15s ease infinite;
    background-size: 400% 400%;
}

.header h1 {
    font-size: 4em;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.header p {
    font-size: 1.3em;
    color: var(--text-gray);
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.header-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* ===== PAGE HEADER (For contact, about, etc.) ===== */
.page-header {
    text-align: center;
    padding: 30px 20px 20px;
    margin-bottom: 30px;
}
.page-header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.page-header p {
    font-size: 1.1em;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== SECTIONS STYLES ===== */
.section-title {
    font-size: 3em;
    margin-bottom: 50px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-teal), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* ===== CARD STYLES ===== */
.platform-card, .feature-card, .pricing-card, .step-card, .contact-info, .contact-form {
    background: var(--gradient-card);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-card::after, .feature-card::before, .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.platform-card:hover::after, .feature-card:hover::before, .pricing-card:hover::before {
    opacity: 0.1;
}

.platform-card:hover, .feature-card:hover, .pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

/* ===== PLATFORMS SECTION ===== */
.platforms-section {
    text-align: center;
    margin: 120px 0;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.platform-card {
    padding: 50px 30px;
    text-align: center;
}

.platform-icon {
    font-size: 4em;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

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

.platform-card.mt5 .platform-icon { 
    color: var(--accent-teal);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.platform-card.mt4 .platform-icon { 
    color: var(--accent-purple);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.platform-card.ninjatrader .platform-icon { 
    color: var(--accent-amber);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.platform-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--text-light);
}

.platform-card p {
    color: var(--text-gray);
    font-size: 1.1em;
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 80px 0;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.feature-card {
    padding: 50px 35px;
    text-align: center;
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1.1em;
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    margin: 120px 0;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    padding: 40px 30px;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-weight: bold;
    font-size: 1.4em;
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    margin: 120px 0;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    padding: 50px 35px;
    text-align: center;
    border: 2px solid var(--border-light);
}

.pricing-card.popular {
    border-color: var(--accent-purple);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
    animation: glow 4s infinite;
}

.pricing-card.popular::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-purple);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.pricing-card.popular:hover {
    border-color: var(--accent-purple);
    transform: translateY(-15px) scale(1.07);
}

.plan-name {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.plan-price {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.plan-period {
    font-size: 1.1em;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin: 40px 0;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.plan-features li:hover {
    color: var(--text-light);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    width: 24px;
    text-align: center;
}

.plan-features li i.fa-check {
    color: var(--accent-teal);
    font-size: 1.2em;
}

.plan-features li i.fa-times {
    color: #ef4444;
    font-size: 1.2em;
}

.pricing-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-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;
}

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

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.pricing-btn.popular {
    background: linear-gradient(45deg, var(--accent-purple), #7c3aed);
}

.pricing-btn.popular:hover {
    background: linear-gradient(45deg, #7c3aed, #6d28d9);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    margin: 120px 0;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.comparison-table-container {
    background: var(--gradient-card);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-top: 50px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table-inner {
    min-width: 800px;
    width: 100%;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: rgba(51, 65, 85, 0.5);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    font-weight: 700;
    font-size: 1.1em;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.feature-name {
    text-align: left;
    font-weight: 600;
    padding: 10px 0;
    color: var(--text-light);
}

.plan-value {
    text-align: center;
    padding: 10px 5px;
    color: var(--text-gray);
}

.fa-check { 
    color: var(--accent-teal); 
    font-size: 1.3em;
}
.fa-times { 
    color: #ef4444; 
    font-size: 1.3em;
}

.comparison-scroll-hint {
    display: none;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9em;
    margin-top: 15px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    animation: pulse 2s infinite;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    margin: 120px 0;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--gradient-card);
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 1.1em;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05em;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-toggle {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-gray);
}

/* ===== REGISTRATION CTA ===== */
.registration-cta-section {
    background: var(--gradient-card);
    padding: 80px 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.registration-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
}

.registration-cta-title {
    font-size: 2.8em;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-teal), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trial-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.highlight-item:hover {
    color: var(--text-light);
}

.highlight-item i {
    color: var(--accent-teal);
    font-size: 1.2em;
}



/* === MAIN CSS - CONTACT SECTION === */

/* ===== CONTACT CONTAINER ===== */
.contact-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== CONTACT CARD ===== */
.contact-card {
    background: var(--gradient-card-light);
    padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 1200px;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

/* ===== CONTACT LOGO & TITLE ===== */
.contact-card .logo {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: block;
}

.contact-card .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card .logo:hover::after {
    transform: scaleX(1);
}

.contact-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 800;
    position: relative;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(45deg, var(--text-light), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.contact-info h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.3em;
    color: white;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 5px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1em;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95em;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.contact-form h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-teal);
    border-radius: 2px;
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1em;
}

.form-group label i {
    color: var(--primary-blue);
    font-size: 1.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 18px 18px 50px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--primary-darker);
    color: white;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    line-height: 1.5;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-icon {
    position: absolute;
    left: 18px;
    top: 18px;
    color: var(--text-gray);
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.input-with-icon input:focus + .form-icon,
.input-with-icon textarea:focus + .form-icon {
    color: var(--primary-blue);
}

/* ===== SUBMIT BUTTON ===== */
.btn-submit {
    width: 100%;
    padding: 22px;
    background: linear-gradient(45deg, var(--accent-teal), #059669);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit .btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--accent-teal), #059669);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-submit:hover .btn-glow {
    opacity: 0.5;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(16, 185, 129, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    background: linear-gradient(45deg, #059669, var(--accent-teal));
}

.btn-submit:active {
    transform: translateY(-2px);
}

.btn-submit i {
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* ===== MESSAGES ===== */
.contact-card .message {
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid;
    animation: fadeInUp 0.5s ease forwards;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.contact-card .message i {
    font-size: 1.4em;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-card .message-content {
    flex: 1;
}

.contact-card .message-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.contact-card .message-content p {
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

.contact-card .success { 
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    border-color: var(--accent-teal); 
    color: var(--accent-teal);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
}

.contact-card .error { 
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(239, 68, 68, 0.05) 100%);
    border-color: #ef4444; 
    color: #ef4444;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.1);
}

/* ===== BACK HOME ===== */
.back-home {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-home a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
}

.back-home a i {
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 35px 25px;
        border-radius: 24px;
        max-width: 500px;
    }
    
    .contact-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    
    .contact-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px;
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
        margin-right: 15px;
    }
    
    .message {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 16px 16px 16px 45px;
        font-size: 15px;
    }
    
    .btn-submit {
        padding: 20px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 15px;
    }
    
    .contact-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .contact-card .logo {
        font-size: 1.8em;
    }
    
    .contact-title {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .contact-subtitle {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .contact-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
        margin-right: 12px;
    }
    
    .message {
        padding: 15px;
        font-size: 0.95em;
    }
    
    .back-home a {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}


/* === MAIN CSS - LOGIN SECTION (Updated to match Register) === */

/* ===== LOGIN CONTAINER ===== */
.login-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== LOGIN CARD ===== */
.login-card {
    background: var(--gradient-card-light);
    padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 480px;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.login-card:hover::before {
    opacity: 1;
}

.login-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

/* ===== LOGIN LOGO & TITLE ===== */
.login-card .logo {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.login-card .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.login-card .logo:hover::after {
    transform: scaleX(1);
}

.login-title {
    font-size: clamp(1.8em, 4vw, 2.2em);
    margin-bottom: 40px;
    color: var(--text-light);
    font-weight: 800;
    position: relative;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--text-light), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.login-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== LOGIN FORM ===== */
.login-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    color: var(--primary-blue);
    font-size: 1.2em;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.input-with-icon input {
    width: 100%;
    padding: 18px 18px 18px 50px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--primary-darker);
    color: white;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.input-with-icon input:focus + .form-icon {
    color: var(--primary-blue);
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-blue);
}

.password-hint {
    color: var(--text-gray);
    font-size: 0.9em;
    margin-top: 8px;
    padding-left: 50px;
}

/* ===== LOGIN BUTTON ===== */
.btn-login {
    width: 100%;
    padding: 22px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-login .btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-login:hover .btn-glow {
    opacity: 0.5;
}

.btn-login:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(59, 130, 246, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.btn-login:active {
    transform: translateY(-2px);
}

.btn-login i {
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ===== MESSAGES & NOTICES ===== */
.login-card .message {
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid;
    animation: fadeInUp 0.5s ease forwards;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.login-card .message i {
    font-size: 1.4em;
    margin-top: 2px;
    flex-shrink: 0;
}

.login-card .message-content {
    flex: 1;
}

.login-card .message-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.login-card .message-content p {
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

.login-card .success { 
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    border-color: var(--accent-teal); 
    color: var(--accent-teal);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
}

.login-card .error { 
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(239, 68, 68, 0.05) 100%);
    border-color: #ef4444; 
    color: #ef4444;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.1);
}

.login-card .info { 
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
    border-color: var(--primary-blue); 
    color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
}

.demo-notice {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--text-light);
    backdrop-filter: blur(10px);
    animation: pulseNotice 3s infinite;
}

.demo-notice i {
    color: var(--primary-blue);
    font-size: 1.5em;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-content strong {
    color: var(--primary-blue);
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

.notice-content p {
    color: var(--text-light);
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95em;
}

/* ===== LOGIN LINKS ===== */
.login-links {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.login-links .link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-links .link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.login-links .link-card:hover::before {
    transform: scaleY(1);
}

.login-links .link-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateX(10px);
}

.login-links .link-card i:first-child {
    color: var(--primary-blue);
    font-size: 1.3em;
    margin-right: 15px;
}

.login-links .link-card span {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.login-links .link-card strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.login-links .link-arrow {
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.login-links .link-card:hover .link-arrow {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* ===== BACK HOME ===== */
.back-home {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-home a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
}

.back-home a i {
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes pulseNotice {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.2);
        border-color: rgba(59, 130, 246, 0.3);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
        border-color: rgba(59, 130, 246, 0.5);
    }
}

@keyframes rotatePulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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


/*===Register CSS============================ ===== */
@media (max-width: 768px) {
    .login-card {
        padding: 35px 25px;
        border-radius: 24px;
        max-width: 400px;
    }
    
    .login-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    
    .message {
        padding: 20px;
    }
    
    .demo-notice {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .login-links .link-card {
        padding: 15px;
        font-size: 0.95em;
    }
    
    .form-group input {
        padding: 16px 16px 16px 45px;
        font-size: 15px;
    }
    
    .btn-login {
        padding: 20px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 15px;
    }
    
    .login-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .login-card .logo {
        font-size: 1.8em;
    }
    
    .login-title {
        font-size: 1.4em;
        margin-bottom: 25px;
    }
    
    .message {
        padding: 15px;
        font-size: 0.95em;
    }
    
    .demo-notice {
        padding: 15px;
        font-size: 0.9em;
    }
    
    .login-links .link-card {
        padding: 12px;
        font-size: 0.9em;
    }
    
    .back-home a {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

/* ===== REGISTER page CONTAINER ===== */
.register-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.register-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== REGISTER CARD ===== */
.register-card {
    background: var(--gradient-card-light);
    padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 550px;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.register-card:hover::before {
    opacity: 1;
}

.register-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

/* ===== REGISTER LOGO & TITLE ===== */
.register-card .logo {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.register-card .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.register-card .logo:hover::after {
    transform: scaleX(1);
}

.register-title {
    font-size: clamp(1.8em, 4vw, 2.2em);
    margin-bottom: 40px;
    color: var(--text-light);
    font-weight: 800;
    position: relative;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--text-light), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.register-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== FORM LAYOUT ===== */
.register-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.half {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    color: var(--primary-blue);
    font-size: 1.2em;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.input-with-icon input {
    width: 100%;
    padding: 18px 18px 18px 50px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--primary-darker);
    color: white;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.input-with-icon input:focus + .form-icon {
    color: var(--primary-blue);
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-blue);
}

.password-hint {
    color: var(--text-gray);
    font-size: 0.9em;
    margin-top: 8px;
    padding-left: 50px;
}

/* ===== EMAIL WARNING ===== */
.email-warning {
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.15) 0%, 
        rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    animation: pulseWarning 2s infinite;
}

.warning-icon {
    color: #f59e0b;
    font-size: 1.5em;
    flex-shrink: 0;
}

.warning-content {
    flex: 1;
}

.warning-content strong {
    color: #fbbf24;
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

.warning-highlight {
    color: #fbbf24;
    font-weight: 700;
    display: block;
    margin: 10px 0;
    font-size: 1.2em;
}

.warning-content p {
    color: #fbbf24;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95em;
}

/* ===== BUTTON STYLES ===== */
.btn-register {
    width: 100%;
    padding: 22px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-register:hover .btn-glow {
    opacity: 0.5;
}

.btn-register:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(59, 130, 246, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.btn-register:active {
    transform: translateY(-2px);
}

.btn-register i {
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.btn-register:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ===== TRIAL INFO ===== */
.trial-info {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    animation: floatIn 0.8s ease forwards;
}

.trial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.trial-header i {
    color: var(--primary-blue);
    font-size: 1.8em;
}

.trial-header h3 {
    color: var(--text-light);
    font-size: 1.4em;
    margin: 0;
    font-weight: 700;
}

.trial-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.trial-features li {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1em;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trial-features li:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(10px);
}

.trial-features li i {
    color: var(--accent-teal);
    font-size: 1.1em;
}

/* ===== REGISTER LINKS ===== */
.register-links {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.link-card:hover::before {
    transform: scaleY(1);
}

.link-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateX(10px);
}

.link-card i:first-child {
    color: var(--primary-blue);
    font-size: 1.3em;
    margin-right: 15px;
}

.link-card span {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.link-card strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.link-arrow {
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* ===== BACK HOME ===== */
.back-home {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-home a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
}

.back-home a i {
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes pulseWarning {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2);
        border-color: rgba(245, 158, 11, 0.3);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
        border-color: rgba(245, 158, 11, 0.5);
    }
}

@keyframes rotatePulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatIn {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group.half {
        margin-bottom: 15px;
    }
    
    .register-card {
        padding: 35px 25px;
        border-radius: 24px;
    }
    
    .email-warning {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .trial-info {
        padding: 25px;
    }
    
    .trial-features {
        gap: 12px;
    }
    
    .trial-features li {
        padding: 10px 15px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .register-container {
        padding: 15px;
    }
    
    .register-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .register-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    
    .input-with-icon input {
        padding: 16px 16px 16px 45px;
        font-size: 15px;
    }
    
    .btn-register {
        padding: 20px;
        font-size: 1.1em;
    }
    
    .link-card {
        padding: 15px;
        font-size: 0.95em;
    }
    
    .back-home a {
        padding: 10px 20px;
    }
}

/* ===== SUCCESS/ERROR MESSAGES ===== */
.message {
    margin: 20px 0;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease;
}

.message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
}

.message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1);
}

.message i {
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.message.success i {
    color: #22c55e;
}

.message.error i {
    color: #ef4444;
}

.message-content {
    flex: 1;
}

.message-content strong {
    display: block;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 8px;
}

.message-content p {
    margin-bottom: 15px;
    line-height: 1.5;
    opacity: 0.95;
}

.email-confirmation {
    background: rgba(34, 197, 94, 0.1);
    border-left: 3px solid #22c55e;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-confirmation i {
    font-size: 18px !important;
    margin-top: 0 !important;
}

.email-confirmation span {
    font-size: 0.95em;
}

.email-confirmation strong {
    display: inline;
    margin-right: 5px;
}

.verification-instructions {
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95em;
}

.verification-instructions i {
    font-size: 18px !important;
    margin-top: 0 !important;
    color: #22c55e !important;
}

.security-note {
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.security-note i {
    font-size: 16px !important;
    margin-top: 0 !important;
    color: #22c55e !important;
}

/* ===== VERIFICATION NOTICE ===== */
.verification-notice {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-blue);
    font-weight: 600;
    text-align: center;
}

.verification-notice i {
    font-size: 1.3em;
    color: var(--primary-blue);
}

/* ===== EMAIL WARNING ===== */
.email-warning {
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.15) 0%, 
        rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    animation: pulseWarning 2s infinite;
}

.warning-icon {
    color: #f59e0b;
    font-size: 1.5em;
    flex-shrink: 0;
}

.warning-text {
    color: #fbbf24;
    font-size: 0.95em;
    line-height: 1.5;
    flex: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseWarning {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2);
        border-color: rgba(245, 158, 11, 0.3);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
        border-color: rgba(245, 158, 11, 0.5);
    }
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .message {
        padding: 15px;
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .message i {
        margin: 0;
        flex-shrink: 0;
    }
    
    .message-content {
        flex: 1;
    }
    
    .email-warning {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .email-confirmation,
    .verification-instructions,
    .security-note {
        flex-direction: column;
        text-align: left;
        gap: 8px;
    }
    
    .verification-notice {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .message {
        padding: 12px;
        flex-direction: row;
        gap: 12px;
    }
    
    .message i {
        font-size: 20px;
    }
    
    .message-content strong {
        font-size: 1em;
    }
    
    .message-content p {
        font-size: 0.9em;
    }
    
    .email-confirmation,
    .verification-instructions,
    .security-note {
        padding: 10px;
    }
    
    .email-confirmation span,
    .verification-instructions,
    .security-note {
        font-size: 0.85em;
    }
}

/* === MAIN CSS - FORGOT PASSWORD SECTION === */

/* ===== FORGOT CONTAINER ===== */
.forgot-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.forgot-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== FORGOT CARD ===== */
.forgot-card {
    background: var(--gradient-card-light);
    padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 480px;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1;
}

.forgot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.forgot-card:hover::before {
    opacity: 1;
}

.forgot-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

/* ===== FORGOT LOGO & TITLE ===== */
.forgot-card .logo {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.forgot-card .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.forgot-card .logo:hover::after {
    transform: scaleX(1);
}

.forgot-title {
    font-size: clamp(1.8em, 4vw, 2.2em);
    margin-bottom: 40px;
    color: var(--text-light);
    font-weight: 800;
    position: relative;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--text-light), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.forgot-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== SECURITY NOTICE ===== */
.security-notice {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    animation: pulseNotice 3s infinite;
}

.security-notice i {
    color: #8b5cf6;
    font-size: 1.5em;
    flex-shrink: 0;
}

.security-notice .notice-content {
    flex: 1;
}

.security-notice strong {
    color: #8b5cf6;
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

.security-notice p {
    color: var(--text-light);
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95em;
}

/* ===== FORGOT FORM ===== */
.forgot-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    color: var(--primary-blue);
    font-size: 1.2em;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.input-with-icon input {
    width: 100%;
    padding: 18px 18px 18px 50px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--primary-darker);
    color: white;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.input-with-icon input:focus + .form-icon {
    color: var(--primary-blue);
}

.email-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9em;
    margin-top: 8px;
    padding-left: 50px;
    font-weight: 500;
}

.email-hint i {
    color: var(--primary-blue);
}

/* ===== RESET BUTTON ===== */
.btn-reset {
    width: 100%;
    padding: 22px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-reset .btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-reset:hover .btn-glow {
    opacity: 0.5;
}

.btn-reset:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    background: linear-gradient(45deg, #8b5cf6, #3b82f6);
}

.btn-reset:active {
    transform: translateY(-2px);
}

.btn-reset i {
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.btn-reset:hover i {
    transform: translateX(5px);
}

/* ===== MESSAGES ===== */
.forgot-card .message {
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid;
    animation: fadeInUp 0.5s ease forwards;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.forgot-card .message i {
    font-size: 1.4em;
    margin-top: 2px;
    flex-shrink: 0;
}

.forgot-card .message-content {
    flex: 1;
}

.forgot-card .message-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.forgot-card .message-content p {
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

.forgot-card .success { 
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    border-color: var(--accent-teal); 
    color: var(--accent-teal);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
}

.forgot-card .error { 
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(239, 68, 68, 0.05) 100%);
    border-color: #ef4444; 
    color: #ef4444;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.1);
}

.security-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.9em;
}

.security-note i {
    color: var(--accent-teal);
}

.security-note span {
    color: var(--accent-teal);
    font-weight: 600;
}

/* ===== FORGOT LINKS ===== */
.forgot-links {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.forgot-links .link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.forgot-links .link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.forgot-links .link-card:hover::before {
    transform: scaleY(1);
}

.forgot-links .link-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateX(10px);
}

.forgot-links .link-card i:first-child {
    color: var(--primary-blue);
    font-size: 1.3em;
    margin-right: 15px;
}

.forgot-links .link-card span {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.forgot-links .link-card strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.forgot-links .link-arrow {
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.forgot-links .link-card:hover .link-arrow {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* ===== BACK HOME ===== */
.back-home {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-home a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
}

.back-home a i {
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes pulseNotice {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.2);
        border-color: rgba(139, 92, 246, 0.3);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(139, 92, 246, 0);
        border-color: rgba(139, 92, 246, 0.5);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .forgot-card {
        padding: 35px 25px;
        border-radius: 24px;
        max-width: 400px;
    }
    
    .forgot-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    
    .message {
        padding: 20px;
    }
    
    .security-notice {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .forgot-links .link-card {
        padding: 15px;
        font-size: 0.95em;
    }
    
    .form-group input {
        padding: 16px 16px 16px 45px;
        font-size: 15px;
    }
    
    .btn-reset {
        padding: 20px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .forgot-container {
        padding: 15px;
    }
    
    .forgot-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .forgot-card .logo {
        font-size: 1.8em;
    }
    
    .forgot-title {
        font-size: 1.4em;
        margin-bottom: 25px;
    }
    
    .message {
        padding: 15px;
        font-size: 0.95em;
    }
    
    .security-notice {
        padding: 15px;
        font-size: 0.9em;
    }
    
    .forgot-links .link-card {
        padding: 12px;
        font-size: 0.9em;
    }
    
    .back-home a {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}


/* === MAIN CSS - DISCLAIMER SECTION === */

/* ===== DISCLAIMER CONTAINER ===== */
.disclaimer-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.disclaimer-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== DISCLAIMER CARD ===== */
.disclaimer-card {
    background: var(--gradient-card-light);
    padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1;
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(239, 68, 68, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.disclaimer-card:hover::before {
    opacity: 1;
}

.disclaimer-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 
        0 30px 60px rgba(239, 68, 68, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

/* ===== DISCLAIMER LOGO & TITLE ===== */
.disclaimer-card .logo {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: block;
}

.disclaimer-card .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.disclaimer-card .logo:hover::after {
    transform: scaleX(1);
}

.disclaimer-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 800;
    position: relative;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(45deg, var(--text-light), #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.disclaimer-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.disclaimer-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== WARNING BOX ===== */
.disclaimer-warning {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(239, 68, 68, 0.05) 100%);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
    animation: pulseWarning 3s infinite;
}

.disclaimer-warning i {
    color: #ef4444;
    font-size: 1.5em;
    margin-right: 15px;
}

.disclaimer-warning h3 {
    color: #ef4444;
    font-size: 1.3em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.disclaimer-warning p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    font-size: 1em;
}

/* ===== CONTENT SECTIONS ===== */
.disclaimer-section {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.disclaimer-section:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.disclaimer-section h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.disclaimer-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.disclaimer-section h3 {
    font-size: 1.3em;
    margin: 20px 0 15px;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-section h3 i {
    color: var(--primary-blue);
    font-size: 1.1em;
}

.disclaimer-section p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 1em;
    line-height: 1.6;
}

/* ===== LISTS ===== */
.disclaimer-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    position: relative;
}

.disclaimer-section li {
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.5;
    padding-left: 10px;
    position: relative;
}

.disclaimer-section li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: -15px;
    font-size: 1.2em;
}

/* ===== INFO BOX ===== */
.disclaimer-info {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.disclaimer-info h3 {
    color: var(--primary-blue);
    font-size: 1.3em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.disclaimer-info p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    font-size: 1em;
}

/* ===== ACCEPTANCE SECTION ===== */
.acceptance-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-top: 30px;
}

.acceptance-section h3 {
    color: var(--accent-teal);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
}

.acceptance-section p {
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ===== BACK HOME ===== */
.back-home {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-home a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
}

.back-home a i {
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes pulseWarning {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2);
        border-color: rgba(239, 68, 68, 0.3);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
        border-color: rgba(239, 68, 68, 0.5);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .disclaimer-card {
        padding: 35px 25px;
        border-radius: 24px;
        max-width: 700px;
    }
    
    .disclaimer-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    
    .disclaimer-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .disclaimer-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .disclaimer-section h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .disclaimer-section h3 {
        font-size: 1.2em;
        margin: 15px 0 12px;
    }
    
    .disclaimer-warning,
    .disclaimer-info,
    .acceptance-section {
        padding: 20px;
        margin: 25px 0;
    }
    
    .disclaimer-warning h3,
    .disclaimer-info h3 {
        font-size: 1.2em;
    }
    
    .acceptance-section {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .disclaimer-container {
        padding: 15px;
    }
    
    .disclaimer-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .disclaimer-card .logo {
        font-size: 1.8em;
    }
    
    .disclaimer-title {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .disclaimer-subtitle {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    
    .disclaimer-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .disclaimer-section h2 {
        font-size: 1.3em;
    }
    
    .disclaimer-section h3 {
        font-size: 1.1em;
    }
    
    .disclaimer-warning,
    .disclaimer-info {
        padding: 15px;
        margin: 20px 0;
    }
    
    .acceptance-section {
        padding: 20px 15px;
    }
    
    .back-home a {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}


/* === MAIN CSS - PRIVACY POLICY SECTION === */

/* ===== PRIVACY CONTAINER ===== */
.privacy-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.privacy-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== PRIVACY CARD ===== */
.privacy-card {
    background: var(--gradient-card-light);
    padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.privacy-card:hover::before {
    opacity: 1;
}

.privacy-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

/* ===== PRIVACY LOGO & TITLE ===== */
.privacy-card .logo {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: block;
}

.privacy-card .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.privacy-card .logo:hover::after {
    transform: scaleX(1);
}

.privacy-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 800;
    position: relative;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(45deg, var(--text-light), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.privacy-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.privacy-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.update-date {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95em;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.update-date i {
    color: var(--primary-blue);
}

/* ===== PRIVACY SECTIONS ===== */
.privacy-section {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.privacy-section:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.privacy-section h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.3em;
    margin: 20px 0 15px;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h3 i {
    color: var(--primary-blue);
    font-size: 1.1em;
}

.privacy-section p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 1em;
    line-height: 1.6;
}

/* ===== LISTS ===== */
.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    position: relative;
}

.privacy-section li {
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.5;
    padding-left: 10px;
    position: relative;
}

.privacy-section li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: -15px;
    font-size: 1.2em;
}

.privacy-section strong {
    color: var(--text-light);
    font-weight: 600;
}

/* ===== SECURITY HIGHLIGHT ===== */
.security-highlight {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.security-highlight h4 {
    color: var(--accent-teal);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-highlight p {
    margin-bottom: 10px;
    color: var(--text-gray);
}

/* ===== CONTACT BOX ===== */
.contact-box {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-top: 30px;
    text-align: center;
}

.contact-box h3 {
    color: #8b5cf6;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-box p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.1em;
}

/* ===== BACK HOME ===== */
.back-home {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-home a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
}

.back-home a i {
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .privacy-card {
        padding: 35px 25px;
        border-radius: 24px;
        max-width: 700px;
    }
    
    .privacy-title {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    
    .privacy-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .privacy-section h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .privacy-section h3 {
        font-size: 1.2em;
        margin: 15px 0 12px;
    }
    
    .contact-box {
        padding: 20px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 15px;
    }
    
    .privacy-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .privacy-card .logo {
        font-size: 1.8em;
    }
    
    .privacy-title {
        font-size: 1.4em;
        margin-bottom: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .privacy-subtitle {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    
    .privacy-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.3em;
    }
    
    .privacy-section h3 {
        font-size: 1.1em;
    }
    
    .contact-box {
        padding: 15px;
    }
    
    .back-home a {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}



/* === MAIN CSS - TERMS OF SERVICE SECTION === */

/* ===== TERMS CONTAINER ===== */
.terms-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.terms-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== TERMS CARD ===== */
.terms-card {
    background: var(--gradient-card-light);
    padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1;
}

.terms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.terms-card:hover::before {
    opacity: 1;
}

.terms-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

/* ===== TERMS LOGO & TITLE ===== */
.terms-card .logo {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: block;
}

.terms-card .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.terms-card .logo:hover::after {
    transform: scaleX(1);
}

.terms-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 800;
    position: relative;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(45deg, var(--text-light), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.update-date {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95em;
    margin-bottom: 40px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.update-date i {
    color: var(--primary-blue);
}

.terms-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== TERMS SECTIONS ===== */
.terms-section {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.terms-section:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.terms-section h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-section h2 .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 0.9em;
    font-weight: 700;
    margin-right: 10px;
}

.terms-section h3 {
    font-size: 1.3em;
    margin: 20px 0 15px;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section h3 i {
    color: var(--primary-blue);
    font-size: 1.1em;
}

.terms-section p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 1em;
    line-height: 1.6;
}

/* ===== LISTS ===== */
.terms-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    position: relative;
}

.terms-section li {
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.5;
    padding-left: 10px;
    position: relative;
}

.terms-section li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: -15px;
    font-size: 1.2em;
}

.terms-section strong {
    color: var(--text-light);
    font-weight: 600;
}

/* ===== WARNING BOX ===== */
.warning-box {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(239, 68, 68, 0.05) 100%);
    padding: 25px;
    border-radius: 16px;
    margin: 25px 0;
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
    animation: pulseWarning 3s infinite;
}

.warning-box p {
    color: #ef4444;
    font-weight: 600;
    margin: 0;
    text-align: center;
    font-size: 1.1em;
}

/* ===== SERVICE FEATURES ===== */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.feature-card i {
    color: var(--primary-blue);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.feature-card h4 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1.1em;
}

.feature-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95em;
    line-height: 1.5;
}

/* ===== CONTACT BOX ===== */
.contact-box {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-top: 30px;
    text-align: center;
}

.contact-box h3 {
    color: #8b5cf6;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-box p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.1em;
}

/* ===== ACCEPTANCE BOX ===== */
.acceptance-box {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin: 30px 0;
    text-align: center;
}

.acceptance-box h3 {
    color: var(--accent-teal);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
}

.acceptance-box p {
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ===== BACK HOME ===== */
.back-home {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-home a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
}

.back-home a i {
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .terms-card {
        padding: 35px 25px;
        border-radius: 24px;
        max-width: 700px;
    }
    
    .terms-title {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    
    .terms-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .terms-section h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .terms-section h3 {
        font-size: 1.2em;
        margin: 15px 0 12px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .warning-box,
    .contact-box,
    .acceptance-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 15px;
    }
    
    .terms-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .terms-card .logo {
        font-size: 1.8em;
    }
    
    .terms-title {
        font-size: 1.4em;
        margin-bottom: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .update-date {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    
    .terms-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.3em;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .terms-section h3 {
        font-size: 1.1em;
    }
    
    .back-home a {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}


/* === MAIN CSS - ABOUT US SECTION === */

/* ===== ABOUT CONTAINER ===== */
.about-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.about-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== ABOUT CARD ===== */
.about-card {
    background: var(--gradient-card-light);
    padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

/* ===== ABOUT LOGO & TITLE ===== */
.about-card .logo {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: block;
}

.about-card .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card .logo:hover::after {
    transform: scaleX(1);
}

.about-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 800;
    position: relative;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(45deg, var(--text-light), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.about-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== MISSION HERO ===== */
.mission-hero {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.mission-hero h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mission-hero p {
    color: var(--text-gray);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ===== ABOUT SECTIONS ===== */
.about-section {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.about-section:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.about-section h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-section h2 i {
    color: var(--primary-blue);
    font-size: 1.2em;
}

.about-section p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 1em;
    line-height: 1.6;
}

.about-section strong {
    color: var(--text-light);
    font-weight: 600;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.feature-card i {
    color: var(--primary-blue);
    font-size: 2em;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95em;
    line-height: 1.5;
}

/* ===== ADVANTAGES LIST ===== */
.advantages-list {
    margin: 25px 0;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.advantage-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
    font-size: 1.1em;
}

.advantage-content h3 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: 600;
}

.advantage-content p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95em;
    line-height: 1.5;
}

/* ===== STORY SECTION ===== */
.story-section {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-top: 30px;
}

.story-section h2 {
    color: #8b5cf6;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-section p {
    color: var(--text-gray);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.2em;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95em;
    font-weight: 500;
}

/* ===== BACK HOME ===== */
.back-home {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-home a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
}

.back-home a i {
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .about-card {
        padding: 35px 25px;
        border-radius: 24px;
        max-width: 700px;
    }
    
    .about-title {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    
    .about-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .mission-hero {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .mission-hero h2 {
        font-size: 1.5em;
    }
    
    .about-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .about-section h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0 25px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .story-section {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 15px;
    }
    
    .about-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .about-card .logo {
        font-size: 1.8em;
    }
    
    .about-title {
        font-size: 1.4em;
        margin-bottom: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .about-subtitle {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    
    .mission-hero {
        padding: 20px;
    }
    
    .about-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .about-section h2 {
        font-size: 1.3em;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .advantage-item {
        padding: 12px;
    }
    
    .back-home a {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}


/* ============================================
   CHANGE PASSWORD PAGE STYLES
   ============================================ */

/* ===== CHANGE PASSWORD CONTAINER ===== */
.change-password-container {
    min-height: calc(100vh - 120px);
    padding: 40px 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow-x: hidden;
}

.change-password-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== CHANGE PASSWORD CARD ===== */
.change-password-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gradient-card-light);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    z-index: 1;
}

.change-password-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.change-password-card:hover::before {
    opacity: 1;
}

.card-content {
    padding: 0 40px 40px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        transparent 100%);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    opacity: 0.5;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--primary-blue);
    border-radius: 14px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.back-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.back-btn .btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.back-btn:hover .btn-glow {
    opacity: 0.3;
}

.header-content {
    text-align: center;
}

.header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 2em;
    color: white;
}

.header-icon .icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.page-title {
    font-size: clamp(1.8em, 4vw, 2.2em);
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 800;
    background: linear-gradient(45deg, var(--text-light), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.page-subtitle {
    color: var(--text-gray);
    font-size: 1.1em;
    margin-bottom: 0;
}

/* ===== SYSTEM WARNING ===== */
.system-warning {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(239, 68, 68, 0.05) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #ef4444;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    animation: pulseNotice 2s infinite;
}

.warning-icon {
    background: #ef4444;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: white;
    flex-shrink: 0;
}

.warning-content {
    flex: 1;
}

.warning-content h3 {
    color: #ef4444;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.warning-content p {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.migration-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.migration-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

/* ===== SECURITY INFO CARD ===== */
.security-info-card {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 30px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.security-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.security-header i {
    color: #8b5cf6;
    font-size: 1.5em;
}

.security-header h3 {
    color: #8b5cf6;
    font-size: 1.3em;
    margin: 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
    opacity: 0.9;
}

.requirements-list li i {
    color: #10b981;
    font-size: 1.1em;
}

.requirements-list li span {
    font-size: 0.95em;
}

/* ===== PASSWORD FORM ===== */
.password-form {
    margin-top: 30px;
}

.password-form .form-group {
    margin-bottom: 25px;
}

.password-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1em;
}

.password-form label i {
    color: var(--primary-blue);
    font-size: 1.2em;
}

.password-input-group {
    position: relative;
}

.input-with-icon {
    position: relative;
    margin-bottom: 10px;
}

.input-with-icon .form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1.1em;
    transition: color 0.3s ease;
    z-index: 2;
}

.input-with-icon input {
    width: 100%;
    padding: 18px 50px 18px 50px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--primary-darker);
    color: white;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.input-with-icon input:focus + .form-icon {
    color: var(--primary-blue);
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.1em;
    padding: 5px;
    transition: color 0.3s ease;
    z-index: 2;
}

.toggle-password:hover {
    color: var(--primary-blue);
}

/* ===== PASSWORD STRENGTH METER ===== */
.password-strength {
    margin-top: 10px;
}

.strength-meter {
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-bar {
    height: 100%;
    width: 0;
    background: #ef4444;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.85em;
    color: var(--text-gray);
    font-weight: 600;
    text-align: right;
}

/* ===== MATCH INDICATOR ===== */
.match-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.9em;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.match-indicator i {
    font-size: 1.1em;
}

/* ===== SUBMIT BUTTON ===== */
.btn-submit {
    width: 100%;
    padding: 22px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit .btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-submit:hover .btn-glow {
    opacity: 0.5;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    background: linear-gradient(45deg, #8b5cf6, #3b82f6);
}

.btn-submit:active {
    transform: translateY(-2px);
}

.btn-submit i {
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* ===== ADDITIONAL INFO ===== */
.additional-info {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.info-card i {
    color: var(--primary-blue);
    font-size: 1.5em;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content ul li {
    color: var(--text-gray);
    margin-bottom: 8px;
    font-size: 0.95em;
    position: relative;
    padding-left: 20px;
}

.info-content ul li::before {
    content: '•';
    color: var(--primary-blue);
    position: absolute;
    left: 0;
}

.info-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.info-content strong {
    color: var(--text-light);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .change-password-card {
        max-width: 500px;
    }
    
    .page-header,
    .card-content {
        padding: 30px 25px;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .system-warning,
    .security-info-card {
        padding: 25px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .btn-submit {
        padding: 20px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .change-password-container {
        padding: 20px 15px;
    }
    
    .change-password-card {
        border-radius: 24px;
    }
    
    .page-header,
    .card-content {
        padding: 25px 20px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.4em;
    }
    
    .system-warning {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .warning-icon {
        margin: 0 auto;
    }
    
    .security-info-card {
        padding: 20px;
    }
    
    .input-with-icon input {
        padding: 16px 45px 16px 45px;
        font-size: 15px;
    }
    
    .info-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-card i {
        margin-bottom: 10px;
    }
}


/* ============================================
   RESET PASSWORD PAGE STYLES
   ============================================ */

/* ===== RESET CONTAINER ===== */
.reset-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, 
        var(--primary-darker) 0%, 
        var(--background-color) 50%, 
        var(--primary-darker) 100%);
    animation: gradientBackground 15s ease infinite;
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.reset-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotatePulse 20s linear infinite;
}

/* ===== RESET CARD ===== */
.reset-card {
    background: var(--gradient-card-light);
    padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    max-width: 480px;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1;
}

.reset-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.reset-card:hover::before {
    opacity: 1;
}

.reset-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 
        0 30px 60px rgba(59, 130, 246, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
}

/* ===== RESET LOGO ===== */
.reset-card .logo {
    font-size: clamp(2em, 5vw, 2.5em);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.reset-card .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reset-card .logo:hover::after {
    transform: scaleX(1);
}

/* ===== RESET HEADER ===== */
.reset-header {
    margin-bottom: 30px;
}

.header-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.8em;
    color: white;
}

.header-icon .icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.reset-title {
    font-size: clamp(1.8em, 4vw, 2.2em);
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 800;
    background: linear-gradient(45deg, var(--text-light), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.reset-subtitle {
    color: var(--text-gray);
    font-size: 1.1em;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== TOKEN STATUS ===== */
.token-status {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    animation: pulseNotice 3s infinite;
}

.status-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    flex-shrink: 0;
}

.status-icon.valid {
    background: #10b981;
    color: white;
}

.status-content {
    flex: 1;
}

.status-content strong {
    color: #10b981;
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

.status-content p {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 0.95em;
}

.user-email {
    color: var(--primary-blue);
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
}

.expiry-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-size: 0.9em;
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.expiry-warning i {
    font-size: 1.1em;
}

/* ===== SECURITY INFO CARD ===== */
.security-info-card {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 30px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.security-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.security-header i {
    color: #8b5cf6;
    font-size: 1.5em;
}

.security-header h3 {
    color: #8b5cf6;
    font-size: 1.2em;
    margin: 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--text-light);
    opacity: 0.9;
}

.requirements-list li i {
    color: #10b981;
    font-size: 1.1em;
}

.requirements-list li span {
    font-size: 0.95em;
}

/* ===== RESET FORM ===== */
.reset-form {
    margin-top: 20px;
}

.reset-form .form-group {
    margin-bottom: 25px;
}

.reset-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1em;
}

.reset-form label i {
    color: #10b981;
    font-size: 1.2em;
}

.password-input-group {
    position: relative;
}

.input-with-icon {
    position: relative;
    margin-bottom: 10px;
}

.input-with-icon .form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1.1em;
    transition: color 0.3s ease;
    z-index: 2;
}

.input-with-icon input {
    width: 100%;
    padding: 18px 50px 18px 50px;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--primary-darker);
    color: white;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 
        0 0 0 3px rgba(16, 185, 129, 0.2),
        inset 0 0 20px rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}

.input-with-icon input:focus + .form-icon {
    color: #10b981;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.1em;
    padding: 5px;
    transition: color 0.3s ease;
    z-index: 2;
}

.toggle-password:hover {
    color: #10b981;
}

/* ===== PASSWORD STRENGTH METER ===== */
.password-strength {
    margin-top: 10px;
}

.strength-meter {
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-bar {
    height: 100%;
    width: 0;
    background: #ef4444;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.85em;
    color: var(--text-gray);
    font-weight: 600;
    text-align: right;
}

/* ===== MATCH INDICATOR ===== */
.match-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.9em;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.match-indicator i {
    font-size: 1.1em;
}

/* ===== RESET BUTTON ===== */
.btn-reset {
    width: 100%;
    padding: 22px;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-reset .btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #10b981, #059669);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-reset:hover .btn-glow {
    opacity: 0.5;
}

.btn-reset:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(16, 185, 129, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    background: linear-gradient(45deg, #059669, #10b981);
}

.btn-reset:active {
    transform: translateY(-2px);
}

.btn-reset i {
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.btn-reset:hover i {
    transform: translateX(5px);
}

/* ===== MESSAGES ===== */
.reset-card .message {
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid;
    animation: fadeInUp 0.5s ease forwards;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.reset-card .message i {
    font-size: 1.4em;
    margin-top: 2px;
    flex-shrink: 0;
}

.reset-card .message-content {
    flex: 1;
}

.reset-card .message-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.reset-card .message-content p {
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

.reset-card .success { 
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    border-color: var(--accent-teal); 
    color: var(--accent-teal);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
}

.reset-card .error { 
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(239, 68, 68, 0.05) 100%);
    border-color: #ef4444; 
    color: #ef4444;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.1);
}

.security-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.9em;
}

.expired-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-size: 0.9em;
    color: #f59e0b;
}

.security-note i,
.expired-note i {
    font-size: 1.1em;
}

/* ===== RESET LINKS ===== */
.reset-links {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.reset-links .link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reset-links .link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.reset-links .link-card:hover::before {
    transform: scaleY(1);
}

.reset-links .link-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateX(10px);
}

.reset-links .link-card i:first-child {
    color: var(--primary-blue);
    font-size: 1.3em;
    margin-right: 15px;
}

.reset-links .link-card span {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.reset-links .link-card strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.reset-links .link-arrow {
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.reset-links .link-card:hover .link-arrow {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* ===== BACK HOME ===== */
.back-home {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-home a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-5px);
}

.back-home a i {
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .reset-card {
        padding: 35px 25px;
        border-radius: 24px;
        max-width: 400px;
    }
    
    .reset-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    
    .token-status,
    .security-info-card {
        padding: 20px;
    }
    
    .message {
        padding: 20px;
    }
    
    .reset-links .link-card {
        padding: 15px;
        font-size: 0.95em;
    }
    
    .form-group input {
        padding: 16px 16px 16px 45px;
        font-size: 15px;
    }
    
    .btn-reset {
        padding: 20px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .reset-container {
        padding: 15px;
    }
    
    .reset-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .reset-card .logo {
        font-size: 1.8em;
    }
    
    .reset-title {
        font-size: 1.4em;
        margin-bottom: 25px;
    }
    
    .token-status,
    .security-info-card {
        padding: 15px;
        font-size: 0.9em;
    }
    
    .message {
        padding: 15px;
        font-size: 0.95em;
    }
    
    .reset-links .link-card {
        padding: 12px;
        font-size: 0.9em;
    }
    
    .back-home a {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}


/* ===== SEAMLESS INTEGRATION ===== */
/* Remove any remaining separators */
hr {
    display: none;
}

/* Smooth transitions between sections */
section {
    background: transparent;
    position: relative;
}

/* Remove bottom margins for seamless flow */
.platforms-section,
.features,
.pricing-section,
.how-it-works,
.comparison-section,
.faq-section,
.registration-cta-section {
    margin-bottom: 0;
}

/* Make all cards blend with background */
.platform-card,
.feature-card,
.pricing-card,
.step-card,
.comparison-table-container,
.registration-cta-section {
    background: linear-gradient(145deg, #1e293b, #0c1428);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Remove popular card special border */
.pricing-card.popular {
    border-color: rgba(124, 58, 237, 0.3);
}

/* Make FAQ items blend in */
.faq-item {
    background: linear-gradient(145deg, #1e293b, #0c1428);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ensure comparison rows are subtle */
.comparison-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

/* Make plan features blend */
.plan-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

