/* 
Theme: Bazm Sokhan
File: assets/css/main.css
Design: Custom Homepage UI 2026
Primary Color: #1832B7
No CDN - No External Font - No External Icon
*/



/* ================================
   Local Font: AbarLow
   Path: assets/font/
================================ */

@font-face {
    font-family: 'AbarLow';
    src: url('../font/AbarLow-Medium.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AbarLow';
    src: url('../font/AbarLow-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AbarLow';
    src: url('../font/AbarLow-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AbarLow';
    src: url('../font/AbarLow-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AbarLow';
    src: url('../font/AbarLow-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AbarLow';
    src: url('../font/AbarLow-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}




/* ================================
   CSS Variables
================================ */

:root {
    --bs-primary: #1832B7;
    --bs-primary-dark: #10248d;
    --bs-primary-soft: rgba(24, 50, 183, 0.10);
    --bs-primary-softer: rgba(24, 50, 183, 0.06);

    --bs-text: #101828;
    --bs-muted: #667085;
    --bs-heading: #0b1220;

    --bs-bg: #f7f8fc;
    --bs-bg-soft: #ffffff;
    --bs-border: rgba(16, 24, 40, 0.10);

    --bs-white: #ffffff;
    --bs-black: #000000;

    --bs-radius-xs: 10px;
    --bs-radius-sm: 14px;
    --bs-radius-md: 20px;
    --bs-radius-lg: 28px;
    --bs-radius-xl: 36px;

    --bs-shadow-sm: 0 10px 25px rgba(16, 24, 40, 0.06);
    --bs-shadow-md: 0 20px 55px rgba(16, 24, 40, 0.10);
    --bs-shadow-lg: 0 35px 90px rgba(16, 24, 40, 0.16);

    --bs-container: 1180px;
    --bs-transition: all 0.28s ease;
}

/* ================================
   Reset / Base
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    direction: rtl;
    text-align: right;
    font-family: 'AbarLow', Tahoma, Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(24, 50, 183, 0.10), transparent 35%),
        radial-gradient(circle at top left, rgba(24, 50, 183, 0.06), transparent 28%),
        var(--bs-bg);
    color: var(--bs-text);
    line-height: 1.9;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--bs-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    margin-top: 0;
    color: var(--bs-muted);
}

strong {
    color: var(--bs-heading);
}

.container {
    width: min(calc(100% - 32px), var(--bs-container));
    margin-inline: auto;
}

/* ================================
   Global Buttons
================================ */

.bs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--bs-transition);
}

.bs-btn-primary {
    color: var(--bs-white);
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark));
    box-shadow: 0 16px 35px rgba(24, 50, 183, 0.25);
}

.bs-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(24, 50, 183, 0.34);
}

.bs-btn-outline {
    color: var(--bs-primary);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(24, 50, 183, 0.22);
    backdrop-filter: blur(12px);
}

.bs-btn-outline:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    transform: translateY(-3px);
}

/* ================================
   Homepage Wrapper
================================ */

.bs-home {
    position: relative;
    isolation: isolate;
}

/* ================================
   Hero Section
================================ */

.bs-hero {
    position: relative;
    padding: 92px 0 46px;
    overflow: hidden;
}

.bs-hero::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    top: -220px;
    right: -180px;
    border-radius: 50%;
    background: rgba(24, 50, 183, 0.12);
    filter: blur(4px);
    z-index: -1;
}

.bs-hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -140px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(24, 50, 183, 0.08);
    z-index: -1;
}

.bs-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.bs-hero-content {
    position: relative;
}

.bs-eyebrow,
.bs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--bs-primary);
    background: var(--bs-primary-soft);
    border: 1px solid rgba(24, 50, 183, 0.12);
    font-size: 13px;
    font-weight: 700;
}

.bs-eyebrow::before,
.bs-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bs-primary);
    box-shadow: 0 0 0 5px rgba(24, 50, 183, 0.10);
}

.bs-hero h1 {
    margin: 0 0 22px;
    max-width: 760px;
    color: var(--bs-heading);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -1.5px;
}

.bs-hero-text {
    max-width: 720px;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 2.15;
}

.bs-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.bs-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bs-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #1d2939;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--bs-border);
    box-shadow: var(--bs-shadow-sm);
    font-size: 13px;
    font-weight: 700;
}

.bs-hero-visual {
    position: relative;
}

.bs-profile-card {
    position: relative;
    padding: 20px;
    border-radius: var(--bs-radius-xl);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.74));
    border: 1px solid rgba(255, 255, 255, 0.80);
    box-shadow: var(--bs-shadow-lg);
    overflow: hidden;
}

.bs-profile-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: calc(var(--bs-radius-xl) - 8px);
    border: 1px solid rgba(24, 50, 183, 0.10);
    pointer-events: none;
}

.bs-profile-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -70px;
    left: -70px;
    background: rgba(24, 50, 183, 0.12);
    border-radius: 50%;
    z-index: 0;
}

.bs-profile-image-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 28px;
    background: var(--bs-primary-soft);
    aspect-ratio: 4 / 4.6;
}

.bs-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bs-profile-placeholder {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 380px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(24, 50, 183, 0.94), rgba(16, 36, 141, 0.95)),
        radial-gradient(circle at top right, rgba(255,255,255,0.35), transparent 30%);
    color: var(--bs-white);
    text-align: center;
}

.bs-profile-placeholder span {
    display: block;
    font-size: 24px;
    font-weight: 400;
}

.bs-profile-placeholder strong {
    display: block;
    margin-top: 4px;
    color: var(--bs-white);
    font-size: 42px;
    font-weight: 900;
}

.bs-profile-info {
    position: relative;
    z-index: 1;
    padding: 22px 8px 12px;
}

.bs-profile-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--bs-primary);
    font-size: 13px;
    font-weight: 800;
}

.bs-profile-info h2 {
    margin: 0 0 8px;
    color: var(--bs-heading);
    font-size: 26px;
    font-weight: 900;
}

.bs-profile-info p {
    margin: 0;
    font-size: 14px;
    line-height: 2;
}

.bs-profile-meta {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.bs-profile-meta div {
    padding: 14px;
    border-radius: 18px;
    background: var(--bs-primary-softer);
    border: 1px solid rgba(24, 50, 183, 0.10);
}

.bs-profile-meta strong {
    display: block;
    margin-bottom: 3px;
    color: var(--bs-primary);
    font-size: 15px;
    font-weight: 900;
}

.bs-profile-meta span {
    display: block;
    color: var(--bs-muted);
    font-size: 12px;
}

/* ================================
   Quick Access
================================ */

.bs-quick-access {
    padding: 20px 0 54px;
}

.bs-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bs-quick-card {
    position: relative;
    min-height: 154px;
    padding: 22px;
    border-radius: var(--bs-radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: var(--bs-shadow-sm);
    overflow: hidden;
}

.bs-quick-card::after {
    content: "";
    position: absolute;
    width: 105px;
    height: 105px;
    left: -36px;
    bottom: -44px;
    border-radius: 50%;
    background: var(--bs-primary-soft);
    transition: var(--bs-transition);
}

.bs-quick-card span {
    display: block;
    margin-bottom: 18px;
    color: rgba(24, 50, 183, 0.35);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.bs-quick-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--bs-heading);
    font-size: 18px;
    font-weight: 900;
}

.bs-quick-card small {
    display: block;
    color: var(--bs-muted);
    font-size: 13px;
}

.bs-quick-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 50, 183, 0.22);
    box-shadow: var(--bs-shadow-md);
}

.bs-quick-card:hover::after {
    transform: scale(1.25);
    background: rgba(24, 50, 183, 0.16);
}

/* ================================
   Sections General
================================ */

.bs-section {
    padding: 76px 0;
}

.bs-two-column {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 42px;
    align-items: start;
}

.bs-section-head h2,
.bs-section-title-center h2,
.bs-section-head-row h2,
.bs-highlight-content h2,
.bs-contact-content h2 {
    margin: 0;
    color: var(--bs-heading);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.55;
    letter-spacing: -0.8px;
}

.bs-section-title-center {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.bs-section-title-center .bs-kicker {
    margin-inline: auto;
}

.bs-section-title-center p {
    margin: 14px auto 0;
    font-size: 16px;
    line-height: 2.1;
}

.bs-content-card {
    padding: 34px;
    border-radius: var(--bs-radius-xl);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: var(--bs-shadow-sm);
}

.bs-content-card p {
    font-size: 15.5px;
    line-height: 2.25;
}

.bs-signature-box {
    margin-top: 24px;
    padding: 20px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark));
    color: var(--bs-white);
}

.bs-signature-box span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.bs-signature-box strong {
    display: block;
    color: var(--bs-white);
    font-size: 18px;
    font-weight: 900;
}

/* ================================
   Feature Cards / Speech
================================ */

.bs-speech {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
}

.bs-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bs-feature-card {
    position: relative;
    min-height: 255px;
    padding: 28px 24px;
    border-radius: var(--bs-radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: var(--bs-shadow-sm);
    overflow: hidden;
    transition: var(--bs-transition);
}

.bs-feature-card::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
    opacity: 0;
    transition: var(--bs-transition);
}

.bs-feature-number {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 18px;
    color: var(--bs-primary);
    background: var(--bs-primary-soft);
    font-size: 18px;
    font-weight: 900;
}

.bs-feature-card h3 {
    margin: 0 0 12px;
    color: var(--bs-heading);
    font-size: 19px;
    font-weight: 900;
}

.bs-feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 2;
}

.bs-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bs-shadow-md);
    border-color: rgba(24, 50, 183, 0.20);
}

.bs-feature-card:hover::before {
    opacity: 1;
}

/* ================================
   Law / Highlight
================================ */

.bs-law {
    padding-top: 88px;
}

.bs-highlight-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}

.bs-highlight-content {
    padding: 42px;
    border-radius: var(--bs-radius-xl);
    background:
        radial-gradient(circle at top left, rgba(24, 50, 183, 0.10), transparent 35%),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: var(--bs-shadow-sm);
}

.bs-highlight-content p {
    margin: 18px 0 28px;
    font-size: 15.5px;
    line-height: 2.25;
}

.bs-highlight-card {
    position: relative;
    padding: 42px;
    border-radius: var(--bs-radius-xl);
    color: var(--bs-white);
    background:
        linear-gradient(135deg, rgba(24, 50, 183, 0.96), rgba(16, 36, 141, 0.97));
    box-shadow: var(--bs-shadow-lg);
    overflow: hidden;
}

.bs-highlight-card::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    top: -80px;
    left: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
}

.bs-highlight-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -55px;
    bottom: -55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.bs-highlight-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 22px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    font-weight: 700;
}

.bs-highlight-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    color: var(--bs-white);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.6;
}

.bs-highlight-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 2.2;
}

/* ================================
   Modern Library Section - 2026 UI
================================ */

.bs-library {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 10% 12%, rgba(24, 50, 183, 0.09), transparent 34%),
        radial-gradient(circle at 90% 90%, rgba(24, 50, 183, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
}

.bs-library::before {
    content: "";
    position: absolute;
    top: 100px;
    left: -160px;
    width: 390px;
    height: 390px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(24, 50, 183, 0.14), transparent 68%);
    pointer-events: none;
}

.bs-library::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: 70px;
    width: 330px;
    height: 330px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(24, 50, 183, 0.1), transparent 70%);
    pointer-events: none;
}

.bs-library .container {
    position: relative;
    z-index: 2;
}


/* Section Head */

.bs-library .section-head {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.bs-library .section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(24, 50, 183, 0.08);
    color: #1832B7;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6;
}

.bs-library .section-head h2 {
    margin: 0 0 16px;
    color: #101426;
    font-size: 36px;
    line-height: 1.65;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.bs-library .section-head p {
    margin: 0 auto;
    max-width: 680px;
    color: #626b85;
    font-size: 16px;
    line-height: 2.15;
}


/* Grid */

.library-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}


/* Card */

.library-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    padding: 28px 24px 30px;
    border-radius: 34px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.9)),
        radial-gradient(circle at 50% 0%, rgba(24, 50, 183, 0.12), transparent 42%);
    border: 1px solid rgba(24, 50, 183, 0.12);
    box-shadow:
        0 24px 70px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.library-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(24, 50, 183, 0.13), transparent 42%),
        radial-gradient(circle at 82% 12%, rgba(24, 50, 183, 0.14), transparent 28%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.library-card::after {
    content: "";
    position: absolute;
    top: -88px;
    right: -90px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: rgba(24, 50, 183, 0.08);
    transition:
        transform 0.45s ease,
        opacity 0.35s ease;
    pointer-events: none;
}

.library-card:hover {
    transform: translateY(-12px);
    border-color: rgba(24, 50, 183, 0.3);
    box-shadow:
        0 36px 95px rgba(24, 50, 183, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.library-card:hover::before {
    opacity: 1;
}

.library-card:hover::after {
    transform: scale(1.22) translate(-10px, 8px);
}


/* Book Cover - 200x250 Vertical */

.library-card-image {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 250px;
    flex: 0 0 auto;
    overflow: hidden;
    margin: 0 auto 24px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(24, 50, 183, 0.18), rgba(24, 50, 183, 0.04)),
        #eef2ff;
    box-shadow:
        0 22px 42px rgba(24, 50, 183, 0.16),
        0 8px 18px rgba(15, 23, 42, 0.10),
        inset 0 0 0 1px rgba(255, 255, 255, 0.65);
    transform: perspective(900px) rotateY(-3deg);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.library-card-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.12), rgba(255,255,255,0.18), rgba(0,0,0,0.04));
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
}

.library-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.25), transparent 32%),
        linear-gradient(180deg, transparent 55%, rgba(4, 10, 45, 0.22));
    opacity: 0.75;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.library-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    transition:
        transform 0.55s ease,
        filter 0.35s ease;
}

.library-card:hover .library-card-image {
    transform: perspective(900px) rotateY(0deg) translateY(-5px) scale(1.035);
    box-shadow:
        0 30px 60px rgba(24, 50, 183, 0.24),
        0 12px 24px rgba(15, 23, 42, 0.13);
}

.library-card:hover .library-card-image img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.library-card:hover .library-card-image::after {
    opacity: 0.95;
}


/* Tag */

.library-tag {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(24, 50, 183, 0.08);
    color: #1832B7;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 800;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.library-card:hover .library-tag {
    background: rgba(24, 50, 183, 0.14);
    transform: translateY(-2px);
}


/* Text */

.library-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: #101426;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 900;
    letter-spacing: -0.4px;
    transition: color 0.35s ease;
}

.library-card p {
    position: relative;
    z-index: 2;
    max-width: 310px;
    margin: 0 auto;
    color: #626b85;
    font-size: 15px;
    line-height: 2.05;
}

.library-card:hover h3 {
    color: #1832B7;
}


/* ================================
   Articles
================================ */

.bs-section-head-row {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 28px;
    align-items: end;
    margin-bottom: 32px;
}

.bs-section-head-row p {
    margin: 0;
    font-size: 15px;
    line-height: 2.1;
}

.bs-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bs-article-card {
    padding: 28px;
    border-radius: var(--bs-radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: var(--bs-shadow-sm);
    transition: var(--bs-transition);
}

.bs-tag {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--bs-primary);
    background: var(--bs-primary-soft);
    font-size: 12px;
    font-weight: 800;
}

.bs-article-card h3 {
    margin: 0 0 12px;
    color: var(--bs-heading);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.7;
}

.bs-article-card p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 2;
}

.bs-article-card a {
    display: inline-flex;
    color: var(--bs-primary);
    font-size: 13px;
    font-weight: 900;
}

.bs-article-card a:hover {
    color: var(--bs-primary-dark);
}

.bs-article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 50, 183, 0.20);
    box-shadow: var(--bs-shadow-md);
}

/* ================================
   Quote
================================ */

.bs-quote {
    padding: 54px 0;
}

.bs-quote-box {
    position: relative;
    padding: 46px 38px;
    border-radius: var(--bs-radius-xl);
    background:
        linear-gradient(135deg, rgba(24, 50, 183, 0.95), rgba(16, 36, 141, 0.96));
    color: var(--bs-white);
    text-align: center;
    box-shadow: var(--bs-shadow-lg);
    overflow: hidden;
}

.bs-quote-box::before {
    content: "”";
    position: absolute;
    top: -48px;
    right: 36px;
    color: rgba(255,255,255,0.10);
    font-size: 190px;
    font-family: Georgia, serif;
    line-height: 1;
}

.bs-quote-box p {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto 16px;
    color: var(--bs-white);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.9;
}

.bs-quote-box span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 700;
}

/* ================================
   Contact
================================ */

.bs-contact {
    padding-bottom: 96px;
}

.bs-contact-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 42px;
    border-radius: var(--bs-radius-xl);
    background:
        radial-gradient(circle at top left, rgba(24, 50, 183, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: var(--bs-shadow-md);
}

.bs-contact-content p {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: 15.5px;
    line-height: 2.2;
}

.bs-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

/* ================================
   Accessibility / Focus
================================ */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(24, 50, 183, 0.32);
    outline-offset: 4px;
}

/* ================================
   Responsive - Large Tablet
================================ */

@media (max-width: 1100px) {
    .bs-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .bs-hero-content {
        max-width: 860px;
    }

    .bs-hero-visual {
        max-width: 520px;
        margin-inline: auto;
        width: 100%;
    }

    .bs-quick-grid,
    .bs-feature-grid,
    .bs-library-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-two-column,
    .bs-highlight-grid,
    .bs-section-head-row {
        grid-template-columns: 1fr;
    }

    .bs-section-head-row {
        align-items: start;
    }
}


/* ================================
   Responsive - Tablet
================================ */

@media (max-width: 860px) {
    .bs-hero {
        padding-top: 64px;
    }

    .bs-section {
        padding: 60px 0;
    }

    .bs-library-grid,
    .bs-article-grid {
        grid-template-columns: 1fr;
    }

    .bs-book-image {
        aspect-ratio: 16 / 9;
    }

    .bs-contact-box {
        grid-template-columns: 1fr;
    }

    .bs-contact-actions {
        justify-content: flex-start;
    }

    .bs-highlight-content,
    .bs-highlight-card,
    .bs-content-card,
    .bs-contact-box {
        padding: 30px;
    }
}


/* ================================
   Responsive - Mobile
================================ */

@media (max-width: 640px) {
    body {
        line-height: 1.85;
    }

    .container {
        width: min(calc(100% - 24px), var(--bs-container));
    }

    .bs-hero {
        padding: 46px 0 32px;
    }

    .bs-hero h1 {
        font-size: 32px;
        line-height: 1.55;
        letter-spacing: -0.6px;
    }

    .bs-hero-text {
        font-size: 15px;
        line-height: 2.15;
    }

    .bs-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bs-btn {
        width: 100%;
    }

    .bs-hero-points {
        gap: 8px;
    }

    .bs-hero-points span {
        font-size: 12px;
        min-height: 34px;
    }

    .bs-profile-card {
        padding: 14px;
        border-radius: 28px;
    }

    .bs-profile-placeholder {
        min-height: 310px;
        border-radius: 22px;
    }

    .bs-profile-placeholder span {
        font-size: 20px;
    }

    .bs-profile-placeholder strong {
        font-size: 34px;
    }

    .bs-profile-info {
        padding: 20px 4px 10px;
    }

    .bs-profile-info h2 {
        font-size: 22px;
    }

    .bs-profile-meta {
        grid-template-columns: 1fr;
    }

    .bs-quick-grid,
    .bs-feature-grid {
        grid-template-columns: 1fr;
    }

    .bs-quick-card {
        min-height: 136px;
    }

    .bs-section {
        padding: 52px 0;
    }

    .bs-section-head h2,
    .bs-section-title-center h2,
    .bs-section-head-row h2,
    .bs-highlight-content h2,
    .bs-contact-content h2 {
        font-size: 25px;
        line-height: 1.75;
        letter-spacing: -0.3px;
    }

    .bs-section-title-center {
        margin-bottom: 26px;
        text-align: right;
    }

    .bs-section-title-center .bs-kicker {
        margin-inline: 0;
    }

    .bs-content-card,
    .bs-highlight-content,
    .bs-highlight-card,
    .bs-contact-box {
        padding: 24px;
        border-radius: 26px;
    }

    .bs-feature-card,
    .bs-article-card {
        padding: 24px;
        border-radius: 24px;
    }

    .bs-book-card {
        padding: 16px;
        border-radius: 24px;
    }

    .bs-book-image {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
        margin-bottom: 16px;
    }

    .bs-book-card h3 {
        font-size: 20px;
    }

    .bs-book-card p {
        font-size: 14px;
    }

    .bs-highlight-card h3 {
        font-size: 23px;
    }

    .bs-quote {
        padding: 38px 0;
    }

    .bs-quote-box {
        padding: 34px 22px;
        border-radius: 26px;
    }

    .bs-quote-box p {
        font-size: 22px;
        line-height: 2;
    }

    .bs-contact {
        padding-bottom: 68px;
    }
}


/* ================================
   Very Small Mobile
================================ */

@media (max-width: 390px) {
    .bs-hero h1 {
        font-size: 28px;
    }

    .bs-eyebrow,
    .bs-kicker {
        font-size: 12px;
        padding: 7px 11px;
    }

    .bs-profile-placeholder {
        min-height: 270px;
    }

    .bs-quick-card span {
        font-size: 26px;
    }

    .bs-book-card {
        padding: 14px;
    }

    .bs-book-image {
        aspect-ratio: 1 / 1;
        border-radius: 16px;
    }

    .bs-book-card h3 {
        font-size: 19px;
    }

    .bs-book-card p {
        font-size: 13.5px;
        line-height: 1.95;
    }
}



/* ================================
   Library Responsive
================================ */

@media (max-width: 1100px) {
    .library-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 860px) {
    .bs-library {
        padding: 72px 0;
    }

    .library-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .bs-library .section-head {
        text-align: right;
        margin-bottom: 36px;
    }

    .bs-library .section-head h2 {
        font-size: 30px;
    }

    .library-card {
        padding: 26px 22px 28px;
    }

    .library-card-image {
        width: 200px;
        height: 250px;
    }
}

@media (max-width: 640px) {
    .bs-library {
        padding: 58px 0;
    }

    .bs-library .section-head {
        margin-bottom: 30px;
    }

    .bs-library .section-head h2 {
        font-size: 25px;
        line-height: 1.8;
    }

    .bs-library .section-head p {
        font-size: 14px;
        line-height: 2.1;
    }

    .library-grid {
        gap: 20px;
    }

    .library-card {
        padding: 24px 18px 26px;
        border-radius: 28px;
    }

    .library-card-image {
        width: 190px;
        height: 238px;
        margin-bottom: 22px;
        border-radius: 20px;
    }

    .library-card h3 {
        font-size: 20px;
    }

    .library-card p {
        font-size: 14px;
        line-height: 2;
    }
}

@media (max-width: 390px) {
    .library-card {
        padding: 22px 15px 24px;
        border-radius: 25px;
    }

    .library-card-image {
        width: 170px;
        height: 213px;
        border-radius: 18px;
    }

    .library-card h3 {
        font-size: 19px;
    }

    .library-card p {
        font-size: 13.5px;
    }
}

