/* Seritto About Page - Premium Minimal RTL */

:root {
    --primary-color: #038c65;
    --primary-dark: #02684c;
    --secondary-color: #f27b13;
    --accent-color: #d95204;
    --dark-red: #730909;

    --body-bg: #ffffff;
    --soft-bg: #f7f8f6;
    --light-bg: #f2f2f2;
    --card-bg: #ffffff;

    --text-color: #242424;
    --muted-color: #6f7672;
    --border-color: #e7ebe8;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;

    --shadow-sm: 0 8px 24px rgba(20, 31, 26, 0.06);
    --shadow-md: 0 18px 45px rgba(20, 31, 26, 0.1);
    --shadow-lg: 0 28px 70px rgba(20, 31, 26, 0.14);

    --transition: 220ms ease;
    --section-space: 96px;
}

body {
    font-family: Tahoma, Arial, sans-serif;
    background: var(--body-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.seritto-about-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(3, 140, 101, 0.08), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(242, 123, 19, 0.08), transparent 24%),
        #fff;
}

/* Loader */
.seritto-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.seritto-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    width: min(320px, calc(100% - 32px));
    text-align: center;
}

.loader-logo {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 28px;
    background: var(--soft-bg);
    box-shadow: var(--shadow-sm);
}

.loader-logo img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.loader-content h3 {
    margin: 0 0 8px;
    color: var(--primary-color);
    font-size: 1.35rem;
    font-weight: 900;
}

.loader-content p {
    margin: 0;
    color: var(--muted-color);
    font-size: 0.92rem;
}

.loader-line {
    width: 100%;
    height: 4px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8ece9;
}

.loader-line span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: loaderMove 1.25s ease-in-out infinite;
}

@keyframes loaderMove {
    0% {
        transform: translateX(120%);
    }

    100% {
        transform: translateX(-260%);
    }
}

/* Background Decor */
.about-bg-blur,
.about-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.16;
}

.blur-one,
.shape-1 {
    width: 260px;
    height: 260px;
    top: 120px;
    left: -90px;
    background: var(--primary-color);
}

.blur-two,
.shape-2 {
    width: 220px;
    height: 220px;
    top: 580px;
    right: -80px;
    background: var(--secondary-color);
}

.seritto-about-page > section,
.seritto-about-page > .container,
.about-hero-section,
.about-section,
.about-stats-section,
.about-cta-section {
    position: relative;
    z-index: 1;
}

/* Buttons */
.seritto-btn,
.about-btn-primary,
.about-btn-outline {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    transition: var(--transition);
}

.seritto-btn-primary,
.about-btn-primary {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 14px 30px rgba(3, 140, 101, 0.22);
}

.seritto-btn-primary:hover,
.about-btn-primary:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.seritto-btn-ghost,
.about-btn-outline {
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-color);
}

.seritto-btn-ghost:hover,
.about-btn-outline:hover {
    border-color: rgba(3, 140, 101, 0.35);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.seritto-btn-light {
    border: 1px solid #fff;
    background: #fff;
    color: var(--primary-dark);
}

.seritto-btn-outline-light,
.about-cta-box .about-btn-outline.light {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #fff;
}

.seritto-btn-outline-light:hover,
.about-cta-box .about-btn-outline.light:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* Hero */
.about-hero-section,
.about-hero {
    padding: 72px 0 48px;
}

.about-hero-card {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
    padding: clamp(22px, 4vw, 46px);
}

.about-hero-content {
    max-width: 620px;
}

.about-eyebrow,
.about-kicker,
.section-label,
.section-mini-title {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(3, 140, 101, 0.08);
    color: var(--primary-color);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
}

.section-label.center,
.section-mini-title.center {
    margin-inline: auto;
}

.about-hero h1,
.about-hero-content h1 {
    margin: 0 0 20px;
    color: var(--text-color);
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    font-weight: 950;
    line-height: 1.16;
    letter-spacing: 0;
}

.about-hero h1 span,
.about-hero-content h1 span {
    color: var(--primary-color);
}

.about-hero p,
.about-hero-content p {
    max-width: 560px;
    margin: 0 0 28px;
    color: var(--muted-color);
    font-size: 1rem;
    line-height: 2.05;
}

.about-hero-actions,
.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
}

.about-hero-trust div {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
}

.about-hero-trust strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 950;
}

.about-hero-trust span {
    color: var(--muted-color);
    font-size: 0.82rem;
}

.about-hero-visual {
    position: relative;
    min-height: 560px;
}

.about-main-image,
.hero-image-card.main-card {
    height: 560px;
    overflow: hidden;
    border-radius: 32px;
    background: var(--soft-bg);
    box-shadow: var(--shadow-lg);
}

.about-main-image img,
.hero-image-card.main-card img,
.main-card img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    transition: transform 700ms ease;
}

.about-hero-visual:hover .about-main-image img,
.about-hero-visual:hover .main-card img {
    transform: scale(1.04);
}

.hero-floating-card,
.floating-info {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(265px, 72%);
    padding: 14px;
    border: 1px solid rgba(231, 235, 232, 0.85);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.hero-floating-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 14px;
    background: rgba(3, 140, 101, 0.1);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.hero-floating-card strong,
.floating-info strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 900;
}

.hero-floating-card span,
.floating-info span {
    display: block;
    color: var(--muted-color);
    font-size: 0.78rem;
    line-height: 1.7;
}

.floating-quality,
.card-one {
    top: 42px;
    right: -18px;
}

.floating-taste,
.card-two {
    bottom: 52px;
    left: -18px;
}

/* General Sections */
.about-section,
.about-story,
.about-why-us,
.about-quality,
.about-team,
.about-values {
    padding: var(--section-space) 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
}

.section-heading h2,
.about-text-content h2 {
    margin: 0 0 16px;
    color: var(--text-color);
    font-size: clamp(1.65rem, 3vw, 2.65rem);
    font-weight: 950;
    line-height: 1.35;
}

.section-heading p,
.about-text-content p {
    margin: 0 0 16px;
    color: var(--muted-color);
    font-size: 0.98rem;
    line-height: 2.05;
}

.about-image-frame,
.about-wide-image,
.why-us-visual,
.quality-visual,
.about-story-image {
    overflow: hidden;
    border-radius: 30px;
    background: var(--soft-bg);
    box-shadow: var(--shadow-sm);
}

.about-image-frame img,
.about-wide-image img,
.why-us-visual img,
.quality-visual img,
.about-story-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center;
    transition: transform 650ms ease;
}

.about-image-frame.large img {
    height: 520px;
}

.about-image-frame:hover img,
.about-wide-image:hover img,
.why-us-visual:hover img,
.quality-visual:hover img,
.about-story-image:hover img {
    transform: scale(1.045);
}

/* Check List */
.about-check-list,
.story-points,
.quality-boxes {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.about-check-item,
.story-point,
.quality-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #fff;
}

.about-check-item i,
.story-point i,
.quality-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-check-item span,
.story-point span,
.quality-box span {
    color: var(--text-color);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* Stats */
.about-stats-section {
    padding: 26px 0;
}

.about-stats-box {
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.about-stat-card {
    height: 100%;
    padding: 28px 18px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: var(--soft-bg);
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(3, 140, 101, 0.3);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.about-stat-card strong {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 2.35rem;
    font-weight: 950;
    line-height: 1;
}

.about-stat-card small {
    font-size: 1rem;
    font-weight: 900;
}

.about-stat-card > span {
    color: var(--muted-color);
    font-size: 0.9rem;
}

/* Values */
.about-value-card,
.value-card {
    height: 100%;
    padding: 30px 24px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: #fff;
    text-align: right;
    box-shadow: none;
    transition: var(--transition);
}

.about-value-card:hover,
.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(3, 140, 101, 0.28);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(242, 123, 19, 0.1);
    color: var(--secondary-color);
    font-size: 1.7rem;
}

.about-value-card h3,
.value-card h3 {
    margin: 0 0 10px;
    color: var(--text-color);
    font-size: 1.08rem;
    font-weight: 900;
}

.about-value-card p,
.value-card p {
    margin: 0;
    color: var(--muted-color);
    font-size: 0.92rem;
    line-height: 1.95;
}

/* Why */
.about-split-card {
    padding: clamp(20px, 4vw, 42px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    background: var(--soft-bg);
}

.about-feature-list,
.why-list {
    display: grid;
    gap: 15px;
    margin-top: 26px;
}

.about-feature-item,
.why-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
}

.feature-icon,
.why-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    border-radius: 16px;
    background: rgba(3, 140, 101, 0.1);
    color: var(--primary-color);
    font-size: 1.35rem;
}

.about-feature-item h4,
.why-item h4 {
    margin: 0 0 6px;
    color: var(--text-color);
    font-size: 0.98rem;
    font-weight: 900;
}

.about-feature-item p,
.why-item p {
    margin: 0;
    color: var(--muted-color);
    font-size: 0.88rem;
    line-height: 1.85;
}

/* Quality */
.quality-steps {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.quality-step {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
}

.quality-step > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    border-radius: 16px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 950;
}

.quality-step h4 {
    margin: 0 0 6px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 900;
}

.quality-step p {
    margin: 0;
    color: var(--muted-color);
    font-size: 0.9rem;
    line-height: 1.9;
}

/* Team */
.about-team-card,
.team-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 26px;
    background: #fff;
    transition: var(--transition);
}

.about-team-card:hover,
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-image {
    height: 300px;
    overflow: hidden;
    background: var(--soft-bg);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.about-team-card:hover .team-image img,
.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-body {
    padding: 20px;
}

.team-body h3 {
    margin: 0 0 8px;
    color: var(--text-color);
    font-size: 1.08rem;
    font-weight: 900;
}

.team-body span {
    color: var(--muted-color);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* CTA */
.about-cta-section {
    padding: 48px 0 96px;
}

.about-cta-box {
    overflow: hidden;
    position: relative;
    padding: clamp(34px, 6vw, 70px);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(3, 140, 101, 0.96), rgba(2, 104, 76, 0.98)),
        var(--primary-dark);
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-cta-box::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -130px;
    top: -150px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.about-cta-box > * {
    position: relative;
    z-index: 1;
}

.about-cta-box > span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.about-cta-box h2 {
    max-width: 720px;
    margin: 0 auto 16px;
    font-size: clamp(1.75rem, 4vw, 3.1rem);
    font-weight: 950;
    line-height: 1.35;
}

.about-cta-box p {
    max-width: 620px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 2;
}

.about-cta-actions {
    justify-content: center;
}

/* Responsive */
@media (max-width: 1199px) {
    :root {
        --section-space: 82px;
    }

    .about-hero-visual,
    .about-main-image,
    .hero-image-card.main-card,
    .about-main-image img,
    .hero-image-card.main-card img,
    .main-card img {
        min-height: 500px;
        height: 500px;
    }
}

@media (max-width: 991px) {
    :root {
        --section-space: 70px;
    }

    .about-hero-section,
    .about-hero {
        padding-top: 42px;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero-visual,
    .about-main-image,
    .hero-image-card.main-card,
    .about-main-image img,
    .hero-image-card.main-card img,
    .main-card img {
        min-height: 520px;
        height: 520px;
    }

    .floating-quality,
    .card-one {
        right: 16px;
    }

    .floating-taste,
    .card-two {
        left: 16px;
    }

    .about-image-frame img,
    .about-wide-image img,
    .why-us-visual img,
    .quality-visual img,
    .about-story-image img,
    .about-image-frame.large img {
        height: 420px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-space: 56px;
    }

    .about-hero-card {
        border-radius: 26px;
    }

    .about-hero h1,
    .about-hero-content h1 {
        font-size: 2.25rem;
    }

    .about-hero-trust {
        grid-template-columns: 1fr;
    }

    .about-hero-actions,
    .about-cta-actions {
        flex-direction: column;
    }

    .seritto-btn,
    .about-btn-primary,
    .about-btn-outline {
        width: 100%;
    }

    .about-hero-visual,
    .about-main-image,
    .hero-image-card.main-card,
    .about-main-image img,
    .hero-image-card.main-card img,
    .main-card img {
        min-height: 430px;
        height: 430px;
    }

    .hero-floating-card,
    .floating-info {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .about-stats-box {
        padding: 14px;
        border-radius: 24px;
    }

    .about-stat-card {
        padding: 22px 12px;
        border-radius: 18px;
    }

    .about-stat-card strong {
        font-size: 2rem;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .about-image-frame img,
    .about-wide-image img,
    .why-us-visual img,
    .quality-visual img,
    .about-story-image img,
    .about-image-frame.large img,
    .team-image {
        height: 340px;
    }

    .about-feature-item,
    .why-item,
    .quality-step {
        padding: 14px;
    }

    .about-cta-section {
        padding-bottom: 64px;
    }

    .about-cta-box {
        border-radius: 26px;
    }
}

@media (max-width: 479px) {
    .about-hero-section,
    .about-hero {
        padding-top: 28px;
    }

    .about-hero-card {
        padding: 18px;
    }

    .about-hero h1,
    .about-hero-content h1 {
        font-size: 1.9rem;
    }

    .about-hero p,
    .about-hero-content p,
    .section-heading p,
    .about-text-content p {
        font-size: 0.92rem;
    }

    .about-hero-visual,
    .about-main-image,
    .hero-image-card.main-card,
    .about-main-image img,
    .hero-image-card.main-card img,
    .main-card img {
        min-height: 360px;
        height: 360px;
        border-radius: 22px;
    }

    .about-image-frame img,
    .about-wide-image img,
    .why-us-visual img,
    .quality-visual img,
    .about-story-image img,
    .about-image-frame.large img,
    .team-image {
        height: 280px;
    }

    .about-value-card,
    .value-card {
        padding: 24px 20px;
    }

    .about-cta-box {
        padding: 30px 20px;
    }
}
