/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Quicksand:wght@200;300;400;500;600;700&display=swap');

:root {
    /* Primary Color - Sky Blue #0284C7 */
    --bs-primary: #0284C7;
    --bs-primary-rgb: 2, 132, 199;
    --bs-primary-dark: #0369A1;
    --bs-primary-light: #38BDF8;
    --bs-primary-gradient: linear-gradient(135deg, #0284C7, #0369A1);
    
    /* Secondary Colors */
    --bs-secondary: #475569;
    --bs-success: #059669;
    --bs-warning: #D97706;
    --bs-danger: #DC2626;
    
    /* Backgrounds */
    --bs-body-bg: #F8FAFC;
    --bs-body-color: #334155;
    
    /* Dark Colors */
    --bs-dark: #1E293B;
    --bs-dark-rgb: 30, 41, 59;
    --bs-light: #FFFFFF;
    --bs-border-color: #E2E8F0;
    
    /* Grayscale */
    --bs-gray-100: #F1F5F9;
    --bs-gray-200: #E2E8F0;
    --bs-gray-300: #CBD5E1;
    --bs-gray-400: #94A3B8;
    --bs-gray-500: #64748B;
    --bs-gray-600: #475569;
    --bs-gray-700: #334155;
    --bs-gray-800: #1E293B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    color: var(--bs-body-color);
    background: var(--bs-body-bg);
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--bs-dark);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--bs-primary-gradient);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.3);
    background: var(--bs-primary-dark);
}

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

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

/* Pricing Cards */
.pricing-card {
    background: var(--bs-light);
    border-radius: 24px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(2, 132, 199, 0.15);
    border-color: var(--bs-primary);
}

.pricing-card.featured {
    border: 2px solid var(--bs-primary);
    position: relative;
}

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

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--bs-gray-500);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 66px;
    }
    
    .display-3 {
        font-size: 2rem;
    }
}
