/* =========================================
   DAWAT E SEHAT - DESIGN SYSTEM
   Global UI Foundation
========================================= */

/* =========================
   VARIABLES
========================= */
:root {

    /* Colors */
    --primary: #05a2e6;
    --primary-dark: #055080;
    --dark: #0F172A;
    --text: #64748b;
    --light: #F8FAFC;
    --white: #ffffff;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    /* Shadow */
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);

    /* Spacing */
    --space-1: 5px;
    --space-2: 10px;
    --space-3: 15px;
    --space-4: 25px;
    --space-5: 40px;
    --space-6: 60px;
    --space-7: 80px;

    /* Font */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   SECTION HEADINGS
========================= */
.section-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.section-header h2 {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.section-header p {
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* =========================
   CARDS
========================= */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--space-4);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* =========================
   BADGES
========================= */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    background: var(--primary);
    color: var(--white);
}

/* =========================
   SECTION SPACING
========================= */
.section {
    padding: var(--space-7) 0;
}

/* =========================
   ANIMATIONS
========================= */
.fade-up {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}