@font-face {
    font-family: 'IRANSans';
    src: url('../fonts/IRANSansWeb.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ==================================================
   Pishgaman - Base CSS
   ================================================== */

:root {
    --color-primary: #0d6efd;
    --color-primary-dark: #0a58ca;
    --color-secondary: #198754;

    --color-dark: #212529;
    --color-text: #333333;
    --color-muted: #6c757d;

    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-border: #dee2e6;

    --font-family: 'IRANSans', sans-serif;

    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;

    --line-height-base: 1.8;

    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 30px;
    --space-xl: 50px;

    --container-width: 1200px;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    direction: rtl;
    font-size: var(--font-size-base);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background: var(--color-white);
}

/* =========================================
   Main Content - Campaigns
========================================= */

.site-main {
    width: 100%;
}

.campaigns {
    width: 100%;
    padding: 70px 0;
}

.campaigns .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   Section Header
========================================= */

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 15px;
    font-weight: 700;

    color: #2563eb;
}

.section-header h2 {
    margin: 0 0 12px;

    font-size: 32px;
    font-weight: 800;

    color: #172033;
}

.section-header p {
    margin: 0;

    font-size: 16px;
    line-height: 1.8;

    color: #6b7280;
}


/* =========================================
   Campaign Group
========================================= */

.campaign-group {
    margin-bottom: 55px;
}

.campaign-group:last-child {
    margin-bottom: 0;
}


/* =========================================
   Campaign Group Header
========================================= */

.campaign-group-header {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}

.campaign-group-header > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 12px;

    background: #f1f5ff;

    color: #2563eb;

    font-size: 21px;
}

.campaign-group-header h3 {
    margin: 0 0 4px;

    font-size: 22px;
    font-weight: 800;

    color: #172033;
}

.campaign-group-header p {
    margin: 0;

    font-size: 14px;

    color: #6b7280;
}


/* =========================================
   Campaign Grid
========================================= */

.campaign-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

/* =========================================
   Service Card
========================================= */

.service-card {
    position: relative;

    padding: 28px 24px;

    background: var(--color-white);

    border: 1px solid #b8c0cc;

    border-radius: var(--radius-lg);

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(0, 0, 0, 0.04);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

    border-color: var(--color-primary);
}


/* Badge */

.service-card-badge {
    position: absolute;

    top: 15px;
    right: 15px;

    padding: 4px 10px;

    border-radius: 20px;

    background: #e8f1ff;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 700;
}


/* Icon */

.service-card-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    margin: 18px auto 18px;

    border-radius: 50%;

    background: #f1f6ff;

    color: var(--color-primary);

    font-size: 27px;
}


/* Title */

.service-card-title {
    margin: 0 0 5px;

    font-size: 21px;
    font-weight: 800;

    color: var(--color-dark);
}


/* Speed */

.service-card-speed {
    margin: 0 0 22px;

    font-size: 14px;

    color: var(--color-muted);
}


/* Details */

.service-card-details {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 22px;
}

.service-detail {
    padding: 10px;

    border-radius: var(--radius-md);

    background: var(--color-light);
}

.service-detail span {
    display: block;

    margin-bottom: 3px;

    font-size: 12px;

    color: var(--color-muted);
}

.service-detail strong {
    display: block;

    font-size: 14px;

    color: var(--color-dark);
}


/* Price */

.service-card-price {
    margin-bottom: 22px;
}

.old-price {
    display: block;

    margin-bottom: 2px;

    font-size: 13px;

    color: var(--color-muted);

    text-decoration: line-through;
}

.sale-price {
    display: block;

    font-size: 23px;
    font-weight: 800;

    color: var(--color-primary);
}


/* Button */

.service-card-button {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    padding: 11px 18px;

    border-radius: var(--radius-md);

    background: var(--color-primary);

    color: var(--color-white);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: background-color 0.2s ease;
}

.service-card-button:hover {
    background: var(--color-primary-dark);

    color: var(--color-white);
}

/* =========================================
   Main CTA
========================================= */

.main-cta {
    margin-top: 70px;
    margin-left: 20px;
    margin-right: 20px;

    padding: 55px 40px;

    border-radius: var(--radius-lg);

    background: #172033;

    text-align: center;

    box-shadow: var(--shadow-md);
}

.main-cta-content {
    max-width: 700px;

    margin: 0 auto;
}

.main-cta-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 700;

    color: #93c5fd;
}

.main-cta h2 {
    margin: 0 0 12px;

    font-size: 30px;
    font-weight: 800;

    color: var(--color-white);
}

.main-cta p {
    margin: 0 auto 28px;

    font-size: 15px;
    line-height: 1.9;

    color: #cbd5e1;
}

.main-cta-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;
}

.main-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 170px;

    padding: 11px 20px;

    border-radius: var(--radius-md);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.main-cta-button:hover {
    transform: translateY(-2px);
}

.main-cta-button-primary {
    background: var(--color-primary);

    color: var(--color-white);
}

.main-cta-button-primary:hover {
    background: var(--color-primary-dark);

    color: var(--color-white);
}

.main-cta-button-secondary {
    background: rgba(255, 255, 255, 0.08);

    color: var(--color-white);

    border: 1px solid rgba(255, 255, 255, 0.18);
}

.main-cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.14);

    color: var(--color-white);
}

/* =========================================
   Why Pishgaman
========================================= */

.why-pishgaman {
    margin-top: 70px;
    padding: 10px 20px 70px;

    text-align: center;
}

.why-pishgaman-header {
    max-width: 700px;

    margin: 0 auto 45px;
}

.why-pishgaman-header h2 {
    margin: 0 0 10px;

    font-size: 30px;
    font-weight: 800;

    color: #172033;
}

.why-pishgaman-header p {
    margin: 0;

    font-size: 15px;

    color: #6b7280;
}

.why-pishgaman-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;

    max-width: 1100px;

    margin: 0 auto;
}

.why-pishgaman-item {
    padding: 28px 20px;

    border: 1px solid #b8c0cc;

    border-radius: var(--radius-lg);

    background: var(--color-white);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.why-pishgaman-item:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

    border-color: var(--color-primary);
}

.why-pishgaman-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #f1f6ff;

    color: var(--color-primary);

    font-size: 23px;
}

.why-pishgaman-item h3 {
    margin: 0 0 8px;

    font-size: 18px;
    font-weight: 800;

    color: var(--color-dark);
}

.why-pishgaman-item p {
    margin: 0;

    font-size: 13px;

    line-height: 1.9;

    color: var(--color-muted);
}