/* Modern Design Tokens */
:root {
    --primary-color: #46c6ce;
    --secondary-color: #ffb81f;
    --primary-gradient: linear-gradient(135deg, #46c6ce 0%, #35aab1 100%);
    --secondary-gradient: linear-gradient(135deg, #ffb81f 0%, #e5a41a 100%);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --premium-shadow: 0 20px 40px rgba(70, 198, 206, 0.15);
    --border-radius: 16px;
    --font-main: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    color: #333;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
}

/* Global Button Refinement */
.theme-btn {
    border-radius: 50px !important;
    text-transform: capitalize !important;
    font-weight: 600 !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    padding: 12px 35px !important;
    border: none !important;
}

.theme-btn.style-one {
    background: var(--primary-gradient) !important;
    box-shadow: 0 4px 15px rgba(70, 198, 206, 0.3) !important;
}

.theme-btn.style-two {
    background: var(--secondary-gradient) !important;
    box-shadow: 0 4px 15px rgba(255, 184, 31, 0.3) !important;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Header Refinement */
.sticky-header {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--soft-shadow) !important;
}

/* Header Auth Buttons */
.main-header .navigation > li.auth-link > a {
    padding: 8px 25px !important;
    border-radius: 50px !important;
    margin-left: 10px;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-top: 5px;
}

.main-header .navigation > li.auth-link.login-link > a {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    background: transparent !important;
}

.main-header .navigation > li.auth-link.login-link > a:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.main-header .navigation > li.auth-link.register-link > a {
    background: var(--primary-gradient) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(70, 198, 206, 0.2);
}

.main-header .navigation > li.auth-link.register-link > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 198, 206, 0.3);
}

/* Pricing Refinement */
.pricing-card .old-price {
    text-decoration: line-through !important;
    color: #b0b0b0 !important;
    font-weight: 500;
}

/* Footer Refinement */
.main-footer {
    background: #1a1a1a !important;
}

.footer-bottom {
    background: #111 !important;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.main-footer .footer-logo img {
    max-width: 180px;
    height: auto;
}

/* Pricing Card Modernization */
.pricing-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--soft-shadow);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

.pricing-card .icon {
    width: 80px;
    height: 80px;
    background: #f8fdfd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pricing-card .package-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.pricing-card .price {
    font-size: 32px !important;
    margin: 20px 0;
    color: #222;
}

.pricing-card.popular {
    background: #fff;
    border: 2px solid var(--primary-color);
}

.pricing-card .ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
}

/* Micro-animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}
