/* Header Auth Area Styles */

/* Smooth Scroll for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Offset for Fixed Header */
#about-content-area,
#resume-section,
#pricing-section {
    scroll-margin-top: 100px;
}

/* Header Auth Area */
.header-auth-area {
    margin-right: 30px;
    gap: 12px;
}

/* Header Auth Buttons */
.header-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    height: 40px;
}

/* Outline Style */
.header-auth-btn.outline {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--color-heading);
}

.header-auth-btn.outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Primary Style */
.header-auth-btn.primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(255, 72, 72, 0.2);
}

.header-auth-btn.primary:hover {
    background: #ff5555;
    border-color: #ff5555;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 72, 72, 0.3);
}

/* Logout Button */
button.header-auth-btn {
    background: transparent;
    border: 2px solid rgba(255, 72, 72, 0.2);
    color: #ff4848;
}

button.header-auth-btn:hover {
    background: rgba(255, 72, 72, 0.1);
    border-color: #ff4848;
    transform: translateY(-2px);
}

/* Dark Mode Support */
.tmp-dark-version .header-auth-btn.outline {
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tmp-dark-version .header-auth-btn.outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Sticky Header Styles */
.header--sticky.sticky .header-auth-btn.outline {
    border-color: rgba(0, 0, 0, 0.1);
}

.header--sticky.sticky .header-auth-btn.primary {
    box-shadow: 0 2px 10px rgba(255, 72, 72, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .header-auth-area {
        margin-right: 20px;
    }
    
    .header-auth-btn {
        padding: 6px 16px;
        font-size: 13px;
        height: 36px;
    }
}

@media (max-width: 767px) {
    .header-auth-area {
        display: none !important;
    }
}

/* Sidebar Auth Buttons */
.sidebar-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.sidebar-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: center;
}

.sidebar-auth-btn.outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sidebar-auth-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.sidebar-auth-btn.primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.sidebar-auth-btn.primary:hover {
    background: #ff5555;
    border-color: #ff5555;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(255, 72, 72, 0.3);
}

button.sidebar-auth-btn.logout {
    background: transparent;
    border: 2px solid rgba(255, 72, 72, 0.3);
    color: #ff6b6b;
}

button.sidebar-auth-btn.logout:hover {
    background: rgba(255, 72, 72, 0.1);
    border-color: #ff4848;
    transform: translateX(5px);
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    padding: 0 20px;
}

.mobile-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    border: none;
}

.mobile-auth-btn.outline {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--color-heading);
}

.mobile-auth-btn.outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.mobile-auth-btn.primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.mobile-auth-btn.primary:hover {
    background: #ff5555;
    border-color: #ff5555;
}

button.mobile-auth-btn.logout {
    background: transparent;
    border: 2px solid rgba(255, 72, 72, 0.2);
    color: #ff4848;
}

button.mobile-auth-btn.logout:hover {
    background: rgba(255, 72, 72, 0.1);
    border-color: #ff4848;
}

/* Auth Description - for password reset pages */
.auth-description {
    margin-bottom: 40px;
}

.auth-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-body);
    margin: 0;
}

/* Password Reset Form Wrapper */
.password-reset-form-wrapper {
    background: transparent;
}

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

.password-reset-form-wrapper .form-hint {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
    display: block;
}

.password-reset-form-wrapper .tmp-btn {
    margin-top: 20px;
}

/* Premium Pricing Cards Styles */
.premium-pricing-area {
    margin-top: 80px;
    padding: 0 20px;
}

.premium-pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.premium-pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 72, 72, 0.2);
}

/* Card Decorations */
.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 72, 72, 0.1), rgba(255, 107, 107, 0.05));
}

.decoration-circle.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.decoration-circle.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
    animation: float 8s ease-in-out infinite reverse;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 72, 72, 0.1), transparent);
    border-radius: 2px;
}

.decoration-line.line-1 {
    width: 100px;
    height: 2px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation: shimmer 4s ease-in-out infinite;
}

.decoration-line.line-2 {
    width: 80px;
    height: 2px;
    bottom: 30%;
    right: 10%;
    transform: rotate(-45deg);
    animation: shimmer 5s ease-in-out infinite reverse;
}

/* Featured Card - Pro */
.premium-pricing-card.pro.featured {
    background: linear-gradient(145deg, #ff4848 0%, #ff6b6b 50%, #ff8a8a 100%);
    color: white;
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 30px 80px rgba(255, 72, 72, 0.3),
        0 15px 40px rgba(255, 72, 72, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.premium-pricing-card.pro.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 
        0 50px 120px rgba(255, 72, 72, 0.4),
        0 25px 60px rgba(255, 72, 72, 0.3);
}

.decoration-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

/* Popular Ribbon */
.popular-ribbon {
    position: absolute;
    top: 30px;
    right: -35px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

/* Plan Icons */
.plan-icon {
    margin: 0 auto 30px;
    position: relative;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.icon-wrapper.bronze {
    background: linear-gradient(145deg, #cd7f32, #e6994a);
    box-shadow: 0 8px 25px rgba(205, 127, 50, 0.3);
}

.icon-wrapper.gold {
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.icon-wrapper.diamond {
    background: linear-gradient(145deg, #b9f2ff, #e0f7ff);
    box-shadow: 0 8px 25px rgba(185, 242, 255, 0.4);
}

.icon-wrapper i {
    font-size: 36px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.icon-wrapper.gold i {
    color: #333;
}

.icon-wrapper.diamond i {
    color: #0066cc;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.icon-shine {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(185, 242, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 20px;
    animation: shimmer 3s ease-in-out infinite;
}

/* Plan Header */
.plan-header {
    margin-bottom: 40px;
}

.plan-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-pricing-card.pro.featured .plan-title {
    color: white;
    -webkit-text-fill-color: white;
}

.plan-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.premium-pricing-card.pro.featured .plan-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.price-section {
    position: relative;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-right: 4px;
}

.amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.unit {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-left: 4px;
}

.premium-pricing-card.pro.featured .currency,
.premium-pricing-card.pro.featured .amount,
.premium-pricing-card.pro.featured .unit {
    color: white;
}

.price-period {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.premium-pricing-card.pro.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.save-badge,
.exclusive-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4848, #ff6b6b);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exclusive-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Features */
.plan-features {
    text-align: left;
    margin: 40px 0;
}

.feature-group {
    margin-bottom: 30px;
}

.feature-group-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-pricing-card.pro.featured .feature-group-title {
    color: white;
}

.feature-group-title i {
    font-size: 16px;
    color: var(--color-primary);
}

.premium-pricing-card.pro.featured .feature-group-title i {
    color: white;
}

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

.feature-list li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #555;
    font-weight: 500;
}

.premium-pricing-card.pro.featured .feature-list li {
    color: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Buttons */
.plan-footer {
    margin-top: 40px;
}

.premium-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.standard-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.standard-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.pro-btn {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pro-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

.premium-btn-style {
    background: linear-gradient(135deg, #ff9a9e, #fecfef, #fecfef);
    color: #333;
    box-shadow: 0 8px 25px rgba(255, 154, 158, 0.3);
}

.premium-btn-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 154, 158, 0.4);
}

/* Guarantee Badge */
.guarantee-badge {
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(0, 200, 0, 0.1);
    border: 1px solid rgba(0, 200, 0, 0.2);
    border-radius: 10px;
    font-size: 13px;
    color: #00a000;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.guarantee-badge.pro {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.guarantee-badge.premium {
    background: rgba(255, 154, 158, 0.1);
    border-color: rgba(255, 154, 158, 0.2);
    color: #ff6b6b;
}

/* Sparkles for Premium */
.decoration-sparkle {
    position: absolute;
    font-size: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

.decoration-sparkle.sparkle-1 {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.decoration-sparkle.sparkle-2 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .premium-pricing-card.pro.featured {
        transform: none;
        margin-top: 30px;
    }
    
    .premium-pricing-card.pro.featured:hover {
        transform: translateY(-15px) scale(1.02);
    }
    
    .premium-pricing-area {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .premium-pricing-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .plan-title {
        font-size: 28px;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 32px;
    }
    
    .popular-ribbon {
        top: 25px;
        right: -40px;
        padding: 6px 40px;
        font-size: 11px;
    }
    
    .decoration-circle.circle-1 {
        width: 150px;
        height: 150px;
        top: -75px;
        right: -75px;
    }
    
    .decoration-circle.circle-2 {
        width: 120px;
        height: 120px;
        bottom: -60px;
        left: -60px;
    }
}