@font-face {
    font-family: 'Dibaj-VF';
    src: url('Dibaj-VF.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

:root {
    /* Palette: Light Blue Tones */
    --primary-blue: #546e7a;
    /* Muted blue-grey for icons/accents */
    --accent-blue: #81d4fa;
    /* Light blue for subtle highlights */
    --bg-start: #ffffff;
    --bg-end: #e1f5fe;
    /* Very light blue */
    --text-main: #263238;
    /* Dark blue-grey for text */
    --text-muted: #546e7a;
    /* Lighter blue-grey */
    --card-bg: #ffffff;
    --border-color: #e0f2f1;
    --shadow-soft: 0 10px 40px -10px rgba(84, 110, 122, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Dibaj-VF', system-ui, -apple-system, sans-serif;
    background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
    color: var(--text-main);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    padding-bottom: 100px;
    /* Space for the fixed button */
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Typography & Profile Section */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
}

.image-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 6px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid white;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.name {
    font-size: 1.6rem;
    font-weight: 850;
    /* Variable font weight */
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.title {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 80%;
    line-height: 1.5;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.badge {
    background: rgba(129, 212, 250, 0.1);
    /* Very subtle blue bg */
    border: 1px solid rgba(129, 212, 250, 0.3);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Cards */
.content-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.expertise {
    text-align: justify;
    font-size: 0.95rem;
    color: var(--text-main);
}

.expertise strong {
    color: #0d47a1;
    /* Slightly darker blue for emphasis */
    font-weight: 700;
}

h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

h3::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
}

/* Location Styles */
.location-item {
    display: flex;
    gap: 16px;
}

.icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-details {
    flex: 1;
}

.location-details h4 {
    margin: 0 0 16px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.schedule {
    list-style: none;
    padding: 0;
    border-right: 2px solid var(--border-color);
}

.schedule li {
    padding-right: 16px;
    margin-bottom: 16px;
    position: relative;
}

.schedule li:last-child {
    margin-bottom: 0;
}

.schedule li::before {
    content: '';
    position: absolute;
    right: -5px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: white;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
}

.day {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.time {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Whatsapp Button */
.whatsapp-button {
    width: 100%;
    margin-top: 16px;
    background: #546e7a;
    /* Matches primary tone */
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(84, 110, 122, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84, 110, 122, 0.3);
    background: #37474f;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-left: 12px;
    fill: white;
}

.whatsapp-button span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}