/**
 * AMP Backend - Public Website Design System
 * Modern violet + gold theme with Bootstrap 5 enhancements
 *
 * Color Scheme:
 * - Primary Violet: #2B124B (logo background)
 * - Gold Accent: Linear gradient for borders & highlights
 * - Font: Inter
 */

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES - COLOR SYSTEM
   ============================================ */
:root {
    /* Primary Violet Palette */
    --violet-900: #1A0B2E;      /* Darkest */
    --violet-800: #2B124B;      /* Logo BG - Primary */
    --violet-700: #3D1D6B;
    --violet-600: #4E2687;
    --violet-500: #6B3FA0;
    --violet-400: #8B5CF6;      /* Bright accent */
    --violet-300: #A78BFA;
    --violet-200: #C4B5FD;
    --violet-100: #EDE9FE;
    --violet-50: #F5F3FF;       /* Lightest tint */

    /* Gold Palette */
    --gold-500: #F59E0B;        /* Primary gold */
    --gold-400: #FBBF24;        /* Lighter gold */
    --gold-300: #FCD34D;
    --gold-200: #FDE68A;
    --gold-100: #FEF3C7;

    /* Gold Gradients */
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #F59E0B 100%);
    --gradient-gold-shine: linear-gradient(90deg, #F59E0B, #FDE68A, #F59E0B);
    --gradient-gold-border: linear-gradient(135deg, #F59E0B, #FBBF24, #FCD34D, #FBBF24, #F59E0B);

    /* Violet Gradients */
    --gradient-violet: linear-gradient(135deg, #2B124B 0%, #4E2687 100%);
    --gradient-violet-light: linear-gradient(135deg, #6B3FA0 0%, #8B5CF6 100%);
    --gradient-violet-dark: linear-gradient(135deg, #1A0B2E 0%, #2B124B 100%);

    /* Mixed Gradients */
    --gradient-hero: linear-gradient(135deg, #1A0B2E 0%, #2B124B 50%, #3D1D6B 100%);
    --gradient-cta: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);

    /* Neutral Colors */
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;

    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Background */
    --bg-body: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-dark: var(--violet-800);

    /* Text */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --text-light: #FFFFFF;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 4px 14px 0 rgba(245, 158, 11, 0.3);
    --shadow-violet: 0 4px 14px 0 rgba(139, 92, 246, 0.3);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-tooltip: 1070;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.display-1 { font-size: 5rem; font-weight: 800; }
.display-2 { font-size: 4rem; font-weight: 800; }
.display-3 { font-size: 3.5rem; font-weight: 700; }
.display-4 { font-size: 3rem; font-weight: 700; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}

a {
    color: var(--violet-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--violet-700);
}

/* Text Colors */
.text-gold { color: var(--gold-500) !important; }
.text-violet { color: var(--violet-500) !important; }
.text-violet-dark { color: var(--violet-800) !important; }
.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-public {
    background: #2B124B;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.navbar-public.scrolled {
    padding: 0.5rem 0;
    background: #2B124B;
    backdrop-filter: blur(10px);
}

.navbar-public .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-public .navbar-brand img {
    height: 65px;
    width: auto;
}

.navbar-public .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-public .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.navbar-public .nav-link:hover {
    color: var(--text-light);
}

.navbar-public .nav-link:hover::after,
.navbar-public .nav-link.active::after {
    width: 70%;
}

.navbar-public .nav-link.active {
    color: var(--gold-400);
}

.navbar-public .navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--text-light);
}

.navbar-public .navbar-toggler:focus {
    box-shadow: none;
}

/* Navbar CTA Button */
.navbar-public .btn-navbar-cta {
    background: var(--gradient-gold);
    color: var(--violet-900);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    border: none;
    transition: all var(--transition-fast);
}

.navbar-public .btn-navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--violet-900);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--gradient-hero);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-image {
    animation: fadeInRight 1s ease 0.3s backwards;
}

/* Hero Variants */
.hero-sm {
    padding: 4rem 0;
}

.hero-lg {
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Primary Button - Gold */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--violet-900);
    border-color: transparent;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--violet-900);
}

.btn-gold:active {
    transform: translateY(0);
}

/* Primary Button - Violet */
.btn-violet {
    background: var(--gradient-violet-light);
    color: var(--text-light);
    border-color: transparent;
}

.btn-violet:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-violet);
    color: var(--text-light);
}

/* Outline Buttons */
.btn-outline-gold {
    background: transparent;
    color: var(--gold-500);
    border: 2px solid var(--gold-500);
}

.btn-outline-gold:hover {
    background: var(--gradient-gold);
    color: var(--violet-900);
    border-color: transparent;
}

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

.btn-outline-violet:hover {
    background: var(--violet-500);
    color: var(--text-light);
    border-color: var(--violet-500);
}

/* White/Light Button */
.btn-white {
    background: white;
    color: var(--violet-800);
    border-color: white;
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--violet-700);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: white;
    color: var(--violet-800);
    border-color: white;
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Icon Button */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

/* Card with Gold Border */
.card-gold {
    position: relative;
    background: var(--bg-card);
    border: none;
}

.card-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient-gold-border);
    border-radius: var(--radius-lg);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.card-gold:hover::before {
    padding: 3px;
}

/* Card with Violet Tint Background */
.card-violet-tint {
    background: var(--violet-50);
}

.card-violet-tint:hover {
    background: var(--violet-100);
}

/* Featured Card - Gold Border + Violet Tint */
.card-featured {
    position: relative;
    background: linear-gradient(135deg, var(--violet-50) 0%, white 100%);
}

.card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient-gold-border);
    border-radius: var(--radius-lg);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Card Header */
.card-header {
    background: transparent;
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
}

/* Card Body */
.card-body {
    padding: 1.5rem;
}

/* Card Footer */
.card-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
}

/* Card Image */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-img-overlay {
    background: linear-gradient(to top, rgba(26, 11, 46, 0.9) 0%, transparent 100%);
}

/* ============================================
   PRODUCT/TRACK CARDS
   ============================================ */
.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-gold);
    color: var(--violet-900);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.product-card-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-card-favorite:hover {
    background: white;
    color: var(--danger);
    transform: scale(1.1);
}

.product-card-content {
    padding: 1.5rem;
}

.product-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-card-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-card-price .current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--violet-800);
}

.product-card-price .original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

/* Featured Pricing Card */
.pricing-card-featured {
    background: linear-gradient(135deg, var(--violet-50) 0%, white 100%);
    transform: scale(1.05);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    background: var(--gradient-gold-border);
    border-radius: var(--radius-xl);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

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

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--violet-900);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-card-price {
    margin: 1.5rem 0;
}

.pricing-card-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--violet-800);
    line-height: 1;
}

.pricing-card-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

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

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

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

.pricing-card-features li i {
    color: var(--gold-500);
    font-size: 1rem;
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--violet-100) 0%, var(--violet-50) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--violet-500);
    font-size: 1.75rem;
    transition: all var(--transition-base);
}

.feature-icon-gold {
    background: var(--gold-100);
    color: var(--gold-500);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-violet-light);
    color: white;
}

.feature-card:hover .feature-icon-gold {
    background: var(--gradient-gold);
    color: var(--violet-900);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--violet-100);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--gold-400);
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.testimonial-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.testimonial-rating {
    color: var(--gold-400);
    margin-bottom: 1rem;
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
    font-family: 'Inter', sans-serif;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: white;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--violet-400);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-text {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* Gold Border Form */
.form-control-gold {
    border-color: var(--gold-300);
}

.form-control-gold:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

/* Floating Labels */
.form-floating > .form-control,
.form-floating > .form-select {
    height: 3.5rem;
    padding: 1rem;
}

.form-floating > label {
    padding: 1rem;
    color: var(--gray-500);
}

/* Checkbox & Radio */
.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-300);
}

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

.form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    border-color: var(--violet-400);
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.badge-gold {
    background: var(--gradient-gold);
    color: var(--violet-900);
}

.badge-violet {
    background: var(--violet-100);
    color: var(--violet-700);
}

.badge-outline-gold {
    background: transparent;
    border: 1px solid var(--gold-400);
    color: var(--gold-500);
}

.badge-outline-violet {
    background: transparent;
    border: 1px solid var(--violet-400);
    color: var(--violet-500);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border: none;
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
}

.alert-gold {
    background: var(--gold-100);
    color: var(--violet-900);
    border-left: 4px solid var(--gold-500);
}

.alert-violet {
    background: var(--violet-50);
    color: var(--violet-800);
    border-left: 4px solid var(--violet-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-violet-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-brand {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 40px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--violet-900);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--gold-400);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--violet-800);
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.section-header .section-badge {
    display: inline-block;
    background: var(--violet-100);
    color: var(--violet-600);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Section Backgrounds */
.section-violet {
    background: var(--violet-50);
}

.section-dark {
    background: var(--gradient-violet-dark);
    color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-light);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-hero);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-400);
}

.breadcrumb-item a {
    color: var(--violet-500);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    gap: 0.5rem;
}

.page-link {
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.page-link:hover {
    background: var(--violet-100);
    color: var(--violet-700);
}

.page-item.active .page-link {
    background: var(--gradient-violet-light);
    color: white;
}

/* ============================================
   TABS
   ============================================ */
.nav-tabs-custom {
    border: none;
    gap: 0.5rem;
}

.nav-tabs-custom .nav-link {
    border: none;
    background: var(--gray-100);
    color: var(--text-secondary);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.nav-tabs-custom .nav-link:hover {
    background: var(--violet-100);
    color: var(--violet-700);
}

.nav-tabs-custom .nav-link.active {
    background: var(--gradient-violet-light);
    color: white;
}

/* ============================================
   MODAL
   ============================================ */
.modal-content {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

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

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation Classes */
.animate-fade-in { animation: fadeIn 0.5s ease; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease; }
.animate-fade-in-down { animation: fadeInDown 0.6s ease; }
.animate-fade-in-left { animation: fadeInLeft 0.6s ease; }
.animate-fade-in-right { animation: fadeInRight 0.6s ease; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* Staggered Animations */
.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Hover Animations */
.hover-lift {
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hover-scale {
    transition: transform var(--transition-fast);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow var(--transition-fast);
}

.hover-glow:hover {
    box-shadow: var(--shadow-gold);
}

/* ============================================
   LOADING STATES
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--violet-100);
    border-top-color: var(--violet-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Backgrounds */
.bg-violet-50 { background-color: var(--violet-50) !important; }
.bg-violet-100 { background-color: var(--violet-100) !important; }
.bg-violet-500 { background-color: var(--violet-500) !important; }
.bg-violet-800 { background-color: var(--violet-800) !important; }
.bg-gold-100 { background-color: var(--gold-100) !important; }
.bg-gold-500 { background-color: var(--gold-500) !important; }
.bg-gradient-violet { background: var(--gradient-violet) !important; }
.bg-gradient-gold { background: var(--gradient-gold) !important; }

/* Borders */
.border-gold { border-color: var(--gold-400) !important; }
.border-violet { border-color: var(--violet-400) !important; }

/* Rounded */
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-2xl { border-radius: var(--radius-2xl) !important; }

/* Shadows */
.shadow-gold { box-shadow: var(--shadow-gold) !important; }
.shadow-violet { box-shadow: var(--shadow-violet) !important; }

/* Spacing */
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* ============================================
   NAV PILLS - GOLD THEMED TABS
   ============================================ */
.nav-pills-gold {
    gap: 0.5rem;
}

.nav-pills-gold .nav-link {
    color: var(--violet-700);
    background: var(--violet-50);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.nav-pills-gold .nav-link:hover {
    color: var(--violet-800);
    background: var(--violet-100);
    border-color: var(--violet-200);
}

.nav-pills-gold .nav-link.active {
    color: var(--violet-900);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-color: var(--gold-500);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.nav-pills-gold .nav-link i {
    font-size: 1.1rem;
}

/* Smaller hero for internal pages */
.hero-sm {
    padding: 3rem 0;
    min-height: auto;
}

.hero-sm .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-sm .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Icon Circle */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-sm {
    width: 36px;
    height: 36px;
}

.icon-circle i {
    font-size: 1.25rem;
}

.icon-circle-sm i {
    font-size: 1rem;
}

/* Badge colors */
.badge.bg-violet {
    background: var(--violet-600) !important;
}

.badge.bg-gold {
    background: var(--gold-500) !important;
}

/* Price tag styling */
.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--violet-800);
}

.price-tag small {
    font-size: 0.75rem;
    font-weight: 400;
}

/* Background colors */
.bg-gold-100 {
    background-color: #FEF3C7 !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .display-1 { font-size: 3.5rem; }
    .display-2 { font-size: 3rem; }
    .hero h1 { font-size: 2.75rem; }
    section { padding: 3rem 0; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .display-1 { font-size: 2.5rem; }
    .display-2 { font-size: 2.25rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero { padding: 4rem 0; }
    .hero-lg { min-height: auto; }
    .pricing-card-featured { transform: scale(1); }
    .pricing-card-featured:hover { transform: translateY(-8px); }
}

@media (max-width: 576px) {
    .btn-xl { padding: 1rem 1.5rem; font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}
