/* Närvarohantering - Feminine Instagram-inspired CSS */

/* Root variables for consistent theming */
:root {
    --primary-pink: #ff6b9d;
    --primary-pink-light: #ff8fb3;
    --primary-pink-dark: #e55a87;
    --secondary-purple: #c44569;
    --accent-blue: #74b9ff;
    --accent-green: #00b894;
    --accent-orange: #fd79a8;
    
    --pastel-pink: #ffb3d1;
    --pastel-purple: #dda0dd;
    --pastel-blue: #b8e6ff;
    --pastel-green: #98fb98;
    --pastel-yellow: #fffacd;
    --pastel-peach: #ffdab9;
    
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    
    --border-radius: 15px;
    --border-radius-sm: 8px;
    --border-radius-lg: 25px;
    --shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
    --shadow-hover: 0 8px 25px rgba(255, 107, 157, 0.2);
    --transition: all 0.3s ease;
}

/* Base styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fff0f5 0%, #f8f9ff 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Demo banner */
.demo-banner {
    background: linear-gradient(45deg, var(--accent-orange), var(--primary-pink));
    color: white;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.demo-banner i {
    margin-right: 8px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-pink) !important;
    text-decoration: none;
}

.navbar-brand i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    margin: 0 4px;
}

.nav-link:hover {
    background: var(--pastel-pink);
    color: var(--primary-pink-dark) !important;
    transform: translateY(-1px);
}

.nav-link i {
    margin-right: 6px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 8px;
}

.dropdown-item {
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--pastel-pink);
    color: var(--primary-pink-dark);
}

/* Main content */
.main-content {
    min-height: calc(100vh - 200px);
    padding-top: 2rem;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-blue) 50%, var(--pastel-purple) 100%);
    border-radius: 0 0 50px 50px;
    margin-bottom: 4rem;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.price-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    margin: 2rem 0;
    border: 2px solid var(--pastel-pink);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 200px;
}

/* Feature cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 12px 24px;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-pink-light));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-pink-dark), var(--primary-pink));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-success {
    background: linear-gradient(45deg, var(--accent-green), #26d0ce);
    color: white;
    box-shadow: var(--shadow);
}

.btn-success:hover {
    background: linear-gradient(45deg, #00a085, var(--accent-green));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border: 2px solid var(--dark-gray);
    color: var(--dark-gray);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--dark-gray);
    color: white;
    transform: translateY(-2px);
}

/* Cards */
.auth-card, .rsvp-card, .followup-card, .order-card, .campaign-form-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid var(--gray);
}

.auth-header, .rsvp-header, .followup-header, .order-header, .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2, .rsvp-header h2, .followup-header h2, .order-header h2, .form-header h2 {
    color: var(--primary-pink);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-header i, .rsvp-header i, .followup-header i, .order-header i, .form-header i {
    font-size: 2rem;
    margin-right: 0.5rem;
}

/* Forms */
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--gray);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    transition: var(--transition);
    background: var(--light-gray);
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    background: white;
}

.form-check-input {
    border: 2px solid var(--gray);
    border-radius: var(--border-radius-sm);
}

.form-check-input:checked {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

/* RSVP specific styles */
.event-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.event-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.event-details i {
    color: var(--primary-pink);
    width: 20px;
    margin-right: 10px;
}

.event-purpose {
    background: var(--pastel-blue);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.rsvp-options, .attendance-options {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.rsvp-yes, .attended-yes {
    color: var(--accent-green);
    font-weight: 600;
}

.rsvp-no, .attended-no {
    color: #e17055;
    font-weight: 600;
}

/* GDPR consent styles */
.gdpr-consent-box {
    border: 2px solid var(--primary-pink);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    background: var(--pastel-pink);
    margin: 1rem 0;
}

.gdpr-consent-box h5 {
    color: var(--primary-pink-dark);
    margin-bottom: 1rem;
}

.gdpr-consent-box .form-check {
    display: flex !important;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray);
}

.gdpr-consent-box .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.gdpr-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.gdpr-text ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.gdpr-text li {
    margin-bottom: 0.25rem;
}

.form-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.form-check-label:hover {
    background: var(--light-gray);
    border-color: var(--primary-pink);
}

.form-check-input:checked + .form-check-label {
    background: var(--pastel-pink);
    border-color: var(--primary-pink);
}

.gdpr-consent {
    background: var(--pastel-yellow);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid #ffd93d;
}

.gdpr-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Campaign cards */
.campaign-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--gray);
    height: 100%;
}

.campaign-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.campaign-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.campaign-header h5 {
    color: var(--primary-pink);
    font-weight: 700;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.campaign-body p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.campaign-body i {
    color: var(--primary-pink);
    width: 16px;
    margin-right: 8px;
}

.campaign-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.campaign-footer {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray);
}

/* Admin specific styles */
.admin-login {
    border: 2px solid var(--secondary-purple);
}

.demo-info {
    background: var(--pastel-blue);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.demo-credentials {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin: 0.5rem 0;
    font-family: monospace;
    border: 1px solid var(--gray);
}

.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: var(--text-muted);
    margin: 0;
}

.campaign-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.campaign-info {
    flex-grow: 1;
}

.campaign-info h4 {
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.campaign-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.campaign-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.campaign-stats-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.stat-item {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.campaign-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* QR and links */
.qr-card, .links-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
    height: 100%;
}

.qr-code-container {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.qr-code {
    max-width: 200px;
    height: auto;
    border-radius: var(--border-radius-sm);
}

.link-item {
    margin-bottom: 1rem;
}

.link-item label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

/* Statistics cards */
.stat-card-small {
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
    transition: var(--transition);
}

.stat-card-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tables */
.table {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table th {
    background: var(--pastel-pink);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    border-color: var(--gray);
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background: var(--light-gray);
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.bg-success {
    background: var(--accent-green) !important;
}

.bg-danger {
    background: #e17055 !important;
}

.bg-warning {
    background: #fdcb6e !important;
    color: var(--text-dark) !important;
}

.bg-info {
    background: var(--accent-blue) !important;
}

.bg-secondary {
    background: var(--dark-gray) !important;
}

/* Filter buttons */
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-buttons .btn.active {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
}

/* Features section */
.features-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--pastel-pink), var(--pastel-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Manual content */
.manual-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    border: 1px solid var(--gray);
}

.manual-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
}

.manual-section:last-child {
    border-bottom: none;
}

.manual-section h2 {
    color: var(--primary-pink);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.manual-section h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.manual-section ul, .manual-section ol {
    margin-left: 1.5rem;
}

.manual-section li {
    margin-bottom: 0.5rem;
}

/* Empty states */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    color: var(--pastel-pink);
    margin-bottom: 1rem;
}

.empty-state h3, .empty-state h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Alerts */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: var(--pastel-green);
    color: var(--accent-green);
    border-left: 4px solid var(--accent-green);
}

.alert-danger {
    background: #ffeaa7;
    color: #e17055;
    border-left: 4px solid #e17055;
}

.alert-warning {
    background: var(--pastel-yellow);
    color: #e67e22;
    border-left: 4px solid #e67e22;
}

.alert-info {
    background: var(--pastel-blue);
    color: var(--accent-blue);
    border-left: 4px solid var(--accent-blue);
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid var(--gray);
    padding: 2rem 0;
    margin-top: auto;
}

.footer p {
    margin: 0;
    color: var(--text-muted);
}

/* Contact info */
.contact-info, .contact-alternative {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid var(--gray);
}

.contact-info h5, .contact-alternative h5 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Order specific */
.price-highlight {
    background: linear-gradient(45deg, var(--pastel-pink), var(--pastel-purple));
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    margin: 1rem 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
}

.price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.order-info {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid var(--gray);
}

.order-info h5 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-weight: 600;
}

.order-info ul {
    margin-left: 1rem;
}

.order-info li {
    margin-bottom: 0.5rem;
}

/* Form info */
.form-info {
    background: var(--pastel-blue);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.form-info h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-info ul {
    margin-left: 1rem;
}

.form-info li {
    margin-bottom: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        min-width: auto;
        width: 100%;
    }
    
    .campaign-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .campaign-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .campaign-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .campaign-stats-inline {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .manual-content {
        padding: 2rem 1.5rem;
    }
    
    .auth-card, .rsvp-card, .followup-card, .order-card, .campaign-form-card {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .qr-code {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .price-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .manual-content {
        padding: 1.5rem 1rem;
    }
    
    .auth-card, .rsvp-card, .followup-card, .order-card, .campaign-form-card {
        padding: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .campaign-card {
        padding: 1rem;
    }
}

/* Accessibility */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
    outline: 3px solid rgba(255, 107, 157, 0.3);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .demo-banner,
    .campaign-actions,
    .filter-buttons {
        display: none !important;
    }
    
    .main-content {
        padding-top: 0;
    }
    
    .campaign-item,
    .manual-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.campaign-card,
.feature-card,
.auth-card {
    animation: fadeIn 0.6s ease-out;
}

/* Utility classes */
.text-primary {
    color: var(--primary-pink) !important;
}

.bg-primary {
    background: var(--primary-pink) !important;
}

.border-primary {
    border-color: var(--primary-pink) !important;
}

.text-success {
    color: var(--accent-green) !important;
}

.text-danger {
    color: #e17055 !important;
}

.text-warning {
    color: #e67e22 !important;
}

.text-info {
    color: var(--accent-blue) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

.shadow-soft {
    box-shadow: var(--shadow) !important;
}

.shadow-hover {
    box-shadow: var(--shadow-hover) !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--pastel-pink);
    border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-pink);
}

/* Pricing Section Styles */
.pricing-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff0f5 100%);
    position: relative;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card-featured {
    border: 2px solid var(--primary-pink);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-pink-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.pricing-badge-popular {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(45deg, #ffc107, #ffcd39);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.badge-recommended {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-pink-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.badge-popular {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(45deg, #6c5ce7, #5f3dc4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.pricing-header {
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-purple) 100%);
    position: relative;
}

.pricing-card-featured .pricing-header {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    color: white;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-card-featured .pricing-header h3 {
    color: white;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-amount .currency {
    font-size: 1rem;
    font-weight: 500;
    margin-right: 0.25rem;
    color: var(--text-muted);
}

.pricing-card-featured .pricing-amount .currency {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
}

.pricing-card-featured .pricing-amount .price {
    color: white;
}

.pricing-amount .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

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

.pricing-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-card-featured .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    padding: 2rem 1.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.pricing-features li i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.pricing-footer {
    padding: 1.5rem;
    background: var(--light-gray);
    border-top: 1px solid var(--gray);
}

.pricing-card-featured .pricing-footer {
    background: rgba(255, 107, 157, 0.1);
}

/* Pricing responsive */
@media (max-width: 768px) {
    .pricing-card-featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-amount .price {
        font-size: 2.5rem;
    }
    
    .pricing-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .pricing-features {
        padding: 1.5rem 1rem;
    }
    
    .pricing-footer {
        padding: 1rem;
    }
}
