/* ===== REUSABLE COMPONENTS ===== */

/* Button Components */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #EA580C 0%, #DC2626 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    border: none;
    font-weight: 600;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #EA580C 0%, #DC2626 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background: white;
    color: #2563EB;
    border: 2px solid white;
    font-weight: 600;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2563EB;
    transform: translateY(-1px);
}

/* Header specific button styles */
.btn-header-primary {
    background: white;
    color: #2563EB;
    font-weight: 600;
}

.btn-header-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2563EB;
    transform: translateY(-1px);
}

/* Card Components */
.card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Components */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
}

.icon-circle.blue {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.icon-circle.orange {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.icon-circle.green {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

/* Container Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Typography Components */
.heading-xl {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.heading-lg {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.heading-md {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.text-gray {
    color: #6B7280;
}

/* Grid Components */
.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.gap-4 {
    gap: 16px;
}

.gap-8 {
    gap: 32px;
}
