:root {
    --primary: #164e8a;
    --primary-dark: #103b69;
    --accent: #f28c28;

    --dark: #172333;
    --text: #536273;
    --muted: #7d8997;

    --light: #f5f8fb;
    --border: #e5ebf1;
    --white: #ffffff;

    --radius: 16px;
}


* {
    box-sizing: border-box;
}


body {
    margin: 0;
    font-family: "Vazirmatn", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.9;
}


a {
    text-decoration: none;
}


/* =========================
   HEADER
========================= */

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 100;
}


.navbar {
    min-height: 82px;
}


.navbar-brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}


.navbar-brand:hover,
.footer-brand:hover {
    color: var(--dark);
}


.brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--primary);
    color: white;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}


.navbar-brand strong,
.footer-brand strong {
    display: block;
    font-size: 18px;
    line-height: 1.3;
}


.navbar-brand small,
.footer-brand small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}


.nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 10px 15px !important;
    transition: .2s;
}


.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}


.btn-header {
    background: var(--primary);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 500;
}


.btn-header:hover {
    background: var(--primary-dark);
    color: white;
}


.navbar-toggler {
    border: 1px solid var(--border);
    padding: 8px 10px;
}


.navbar-toggler:focus {
    box-shadow: none;
}


/* =========================
   HERO
========================= */

.hero-section {
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            #f7faff 0%,
            #ffffff 55%,
            #f3f7fb 100%
        );

    overflow: hidden;
}


.hero-label,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--primary);
    font-size: 14px;
    font-weight: 600;

    margin-bottom: 14px;
}


.hero-label i {
    color: var(--accent);
}


.hero-section h1 {
    color: var(--dark);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.35;
    font-weight: 800;

    margin-bottom: 20px;
}


.hero-section h1 span {
    color: var(--primary);
}


.hero-section p {
    max-width: 620px;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 30px;
}


.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


.btn-primary-custom {
    background: var(--primary);
    color: white;
    border-radius: 10px;
    padding: 12px 22px;
    border: 1px solid var(--primary);

    font-weight: 500;
}


.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}


.btn-outline-custom {
    color: var(--primary);
    border: 1px solid #cbd8e5;
    background: white;

    border-radius: 10px;
    padding: 12px 22px;
}


.btn-outline-custom:hover {
    background: var(--light);
    color: var(--primary);
}


/* Hero visual */

.hero-visual {
    min-height: 430px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-grid {
    position: absolute;
    inset: 20px;

    background-image:
        linear-gradient(#dce6f0 1px, transparent 1px),
        linear-gradient(90deg, #dce6f0 1px, transparent 1px);

    background-size: 35px 35px;

    opacity: .55;

    border-radius: 25px;
}


.hero-card {
    position: absolute;
    z-index: 2;

    background: rgba(255, 255, 255, .95);

    border: 1px solid var(--border);

    box-shadow: 0 20px 50px rgba(23, 35, 51, .12);

    border-radius: 20px;
}


.hero-card-main {
    width: 300px;
    padding: 35px;

    text-align: center;
}


.hero-product-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 20px;

    background: #edf5ff;
    color: var(--primary);

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 45px;
}


.hero-card-main span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}


.hero-card-main strong {
    display: block;
    color: var(--dark);
    font-size: 18px;
    margin-top: 5px;
}


.hero-card-small {
    bottom: 55px;
    right: 5px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;
}


.hero-card-small > i {
    color: #28a745;
    font-size: 25px;
}


.hero-card-small strong,
.hero-card-small span {
    display: block;
}


.hero-card-small strong {
    color: var(--dark);
    font-size: 13px;
}


.hero-card-small span {
    color: var(--muted);
    font-size: 11px;
}


.hero-circle {
    position: absolute;
    border-radius: 50%;
}


.circle-one {
    width: 110px;
    height: 110px;

    background: #edf5ff;

    top: 35px;
    left: 30px;
}


.circle-two {
    width: 70px;
    height: 70px;

    background: #fff1e4;

    bottom: 30px;
    left: 80px;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 90px 0;
}


.section-products {
    background: white;
}


.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;
}


.section-heading h2,
.section-feature h2,
.section-quality h2 {
    color: var(--dark);
    font-size: 32px;
    line-height: 1.5;
    font-weight: 750;

    margin: 0;
}


.section-heading p {
    max-width: 400px;
    margin: 0;
}


/* =========================
   CATEGORY CARDS
========================= */

.category-card {
    height: 100%;

    background: white;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    overflow: hidden;

    transition: .25s;
}


.category-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(23, 35, 51, .09);

    border-color: #d3deea;
}


.category-image {
    height: 205px;

    position: relative;
    overflow: hidden;

    background: var(--light);
}


.category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .3s;
}


.category-card:hover .category-image img {
    transform: scale(1.04);
}


.category-icon {
    position: absolute;

    bottom: 14px;
    right: 14px;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    background: white;
    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}


.category-content {
    padding: 24px;
}


.category-content > span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}


.category-content h3 {
    color: var(--dark);

    font-size: 18px;
    font-weight: 700;

    margin: 4px 0 8px;
}


.category-content p {
    font-size: 13px;
    margin-bottom: 18px;
}


.category-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.category-link i {
    transition: .2s;
}


.category-link:hover i {
    transform: translateX(-4px);
}


/* =========================
   FEATURE
========================= */

.section-feature {
    background: var(--light);
}


.feature-box {
    background: white;

    border: 1px solid var(--border);
    border-radius: 22px;

    padding: 45px;

    box-shadow: 0 15px 40px rgba(23, 35, 51, .04);
}


.feature-image {
    height: 390px;

    position: relative;

    border-radius: 18px;

    overflow: hidden;

    background: var(--light);
}


.feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.feature-badge {
    position: absolute;

    right: 20px;
    bottom: 20px;

    background: white;

    padding: 12px 16px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    gap: 9px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}


.feature-badge i {
    color: var(--accent);
}


.feature-box h2 {
    margin-bottom: 20px;
}


.feature-box p {
    font-size: 14px;
}


/* =========================
   QUALITY
========================= */

.quality-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}


.quality-item {
    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: white;
}


.quality-icon {
    width: 48px;
    height: 48px;

    border-radius: 12px;

    background: #edf5ff;
    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    margin-bottom: 15px;
}


.quality-item h3 {
    color: var(--dark);

    font-size: 16px;
    font-weight: 700;

    margin-bottom: 5px;
}


.quality-item p {
    margin: 0;
    font-size: 12px;
}


.text-link {
    color: var(--primary);

    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-weight: 600;
    font-size: 14px;

    margin-top: 10px;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 0 0 90px;
}


.cta-box {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    border-radius: 20px;

    padding: 45px;

    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.cta-box span {
    font-size: 13px;
    opacity: .8;
}


.cta-box h2 {
    margin: 4px 0 5px;

    font-size: 27px;
    font-weight: 700;
}


.cta-box p {
    margin: 0;
    opacity: .8;
    font-size: 13px;
}


.btn-light-custom {
    background: white;
    color: var(--primary);

    border-radius: 10px;

    padding: 12px 22px;

    white-space: nowrap;
}


.btn-light-custom:hover {
    background: #f1f5f9;
    color: var(--primary-dark);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #111d2b;

    color: #aab6c4;

    padding: 70px 0 0;
}


.footer-brand {
    color: white;
}


.footer-brand:hover {
    color: white;
}


.footer-brand small {
    color: #8190a1;
}


.footer-description {
    max-width: 390px;

    font-size: 13px;

    margin-top: 20px;

    line-height: 2;
}


.site-footer h5 {
    color: white;

    font-size: 15px;

    margin-bottom: 20px;
}


.footer-links {
    padding: 0;
    margin: 0;

    list-style: none;
}


.footer-links li {
    margin-bottom: 10px;
}


.footer-links a {
    color: #aab6c4;

    font-size: 13px;

    transition: .2s;
}


.footer-links a:hover {
    color: white;
}


.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-contact li {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 17px;

    font-size: 12px;
}


.footer-contact i {
    color: var(--accent);
    font-size: 18px;
}


.footer-contact strong {
    display: block;

    color: white;

    font-size: 12px;

    font-weight: 500;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);

    margin-top: 50px;

    padding: 20px 0;

    display: flex;
    justify-content: space-between;

    font-size: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .hero-section {
        padding: 65px 0;
    }

    .hero-visual {
        min-height: 350px;
    }

    .navbar-collapse {
        padding: 20px 0;
    }

    .btn-header {
        display: inline-block;
        margin-top: 10px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 767px) {

    .section {
        padding: 65px 0;
    }

    .feature-box {
        padding: 25px;
    }

    .feature-image {
        height: 280px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px;

        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 5px;
    }

}


@media (max-width: 575px) {

    .hero-section {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 34px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-card-main {
        width: 250px;
        padding: 25px;
    }

    .hero-card-small {
        right: 0;
        bottom: 20px;
    }

    .hero-grid {
        inset: 5px;
    }

    .section-heading h2,
    .section-feature h2,
    .section-quality h2 {
        font-size: 27px;
    }

    .feature-box {
        padding: 18px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

}



/* =========================
   PAGE HERO
========================= */

.page-hero {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            #f7faff 0%,
            #ffffff 100%
        );

    border-bottom: 1px solid var(--border);
}


.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;

    font-size: 12px;
}


.breadcrumb-custom a {
    color: var(--primary);
}


.breadcrumb-custom i {
    color: var(--muted);
    font-size: 10px;
}


.breadcrumb-custom span {
    color: var(--muted);
}


.page-hero h1 {
    color: var(--dark);

    font-size: clamp(32px, 5vw, 48px);

    font-weight: 800;

    margin-bottom: 18px;
}


.page-hero p {
    max-width: 600px;

    margin: 0;

    font-size: 15px;
}


.category-hero-image {
    height: 360px;

    overflow: hidden;

    border-radius: 20px;

    background: var(--light);

    border: 1px solid var(--border);

    box-shadow:
        0 20px 50px rgba(23, 35, 51, .08);
}


.category-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}



/* =========================
   INTRO
========================= */

.content-intro {
    padding: 20px 0;
}


.content-intro h2 {
    color: var(--dark);

    font-size: 30px;
    font-weight: 750;

    margin-bottom: 15px;
}


.content-intro p {
    font-size: 14px;
}



/* =========================
   PRODUCT LIST
========================= */

.products-list-section {
    background: var(--light);
}


.product-card {
    height: 100%;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    transition: .25s;
}


.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(23, 35, 51, .09);
}


.product-card-image {
    height: 240px;

    position: relative;

    background: #f2f5f8;

    overflow: hidden;
}


.product-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .3s;
}


.product-card:hover
.product-card-image img {
    transform: scale(1.04);
}


.product-number {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: white;

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, .08);
}


.product-card-body {
    padding: 25px;
}


.product-category {
    color: var(--accent);

    font-size: 11px;

    font-weight: 600;
}


.product-card h3 {
    color: var(--dark);

    font-size: 18px;

    font-weight: 700;

    margin: 5px 0 8px;
}


.product-card p {
    font-size: 13px;

    margin-bottom: 18px;
}


.product-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 20px;
}


.product-meta span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    background: var(--light);

    border-radius: 7px;

    padding: 5px 9px;

    color: var(--muted);

    font-size: 10px;
}


.product-meta i {
    color: var(--primary);
}


.product-link {
    display: flex;

    align-items: center;
    justify-content: space-between;

    color: var(--primary);

    border-top: 1px solid var(--border);

    padding-top: 15px;

    font-size: 13px;

    font-weight: 600;
}


.product-link i {
    transition: .2s;
}


.product-link:hover i {
    transform: translateX(-4px);
}



/* =========================
   CATEGORY FEATURE
========================= */

.category-feature-section {
    background: white;
}


.category-feature-image {
    height: 390px;

    border-radius: 20px;

    overflow: hidden;

    background: var(--light);
}


.category-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.category-feature-section h2 {
    color: var(--dark);

    font-size: 32px;

    line-height: 1.5;

    font-weight: 750;

    margin-bottom: 20px;
}


.category-feature-section p {
    font-size: 14px;
}


.feature-checks {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 20px;
}


.feature-checks div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--dark);

    font-size: 13px;

    font-weight: 500;
}


.feature-checks i {
    color: #28a745;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {

    .page-hero {
        padding: 50px 0;
    }

    .category-hero-image {
        height: 280px;
    }

    .category-feature-image {
        height: 280px;
    }

    .category-feature-section h2 {
        font-size: 27px;
    }

}


/* =========================
   PRODUCT PAGE HERO
========================= */

.product-page-hero {
    padding: 45px 0 80px;

    background:
        linear-gradient(
            135deg,
            #f7faff 0%,
            #ffffff 100%
        );

    border-bottom: 1px solid var(--border);
}


.product-detail-category {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 12px;
}


.product-detail-category i {
    color: var(--accent);
}


.product-detail-title {
    color: var(--dark);

    font-size: clamp(30px, 4vw, 44px);

    font-weight: 800;

    line-height: 1.4;

    margin-bottom: 20px;
}


.product-detail-description {
    font-size: 15px;

    max-width: 650px;

    margin-bottom: 25px;
}



/* =========================
   PRODUCT GALLERY
========================= */

.product-gallery {
    position: sticky;

    top: 30px;
}


.product-main-image {
    height: 460px;

    border-radius: 20px;

    overflow: hidden;

    background: white;

    border: 1px solid var(--border);

    box-shadow:
        0 20px 50px rgba(23, 35, 51, .07);
}


.product-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.product-thumbnails {
    display: flex;

    gap: 10px;

    margin-top: 12px;
}


.product-thumbnail {
    width: 75px;
    height: 75px;

    padding: 0;

    overflow: hidden;

    border-radius: 10px;

    border: 2px solid transparent;

    background: white;

    cursor: pointer;
}


.product-thumbnail.active {
    border-color: var(--primary);
}


.product-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}



/* =========================
   QUICK SPECS
========================= */

.quick-specs {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 25px;
}


.quick-spec {
    padding: 14px 16px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;
}


.quick-spec span {
    display: block;

    color: var(--muted);

    font-size: 10px;
}


.quick-spec strong {
    display: block;

    color: var(--dark);

    font-size: 13px;

    margin-top: 2px;
}


.product-actions {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}



/* =========================
   DETAILS
========================= */

.product-details-section {
    background: var(--light);
}


.detail-box {
    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 30px;

    margin-bottom: 20px;
}


.detail-box-header {
    margin-bottom: 25px;
}


.detail-box-header h2 {
    color: var(--dark);

    font-size: 23px;

    font-weight: 700;

    margin: 0;
}


.specifications-table {
    border-top: 1px solid var(--border);
}


.spec-row {
    display: grid;

    grid-template-columns: 1fr 1.5fr;

    border-bottom: 1px solid var(--border);
}


.spec-row span,
.spec-row strong {
    padding: 13px 15px;

    font-size: 13px;
}


.spec-row span {
    color: var(--muted);

    background: #fafbfd;
}


.spec-row strong {
    color: var(--dark);

    font-weight: 500;
}


.product-features {
    display: flex;

    flex-direction: column;

    gap: 13px;
}


.product-feature {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    color: var(--dark);
}


.product-feature i {
    color: #28a745;
}


.detail-text {
    font-size: 14px;

    margin-bottom: 12px;
}


.detail-text:last-child {
    margin-bottom: 0;
}



/* =========================
   SIDEBAR
========================= */

.product-sidebar {
    position: sticky;

    top: 30px;
}


.request-box {
    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 28px;

    margin-bottom: 15px;
}


.request-icon {
    width: 52px;
    height: 52px;

    border-radius: 14px;

    background: #edf5ff;

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 23px;

    margin-bottom: 18px;
}


.request-box h3 {
    color: var(--dark);

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 8px;
}


.request-box p {
    font-size: 12px;

    margin-bottom: 20px;
}


.sidebar-info {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 16px;

    margin-bottom: 10px;
}


.sidebar-info > i {
    color: var(--primary);

    font-size: 20px;
}


.sidebar-info strong,
.sidebar-info span {
    display: block;
}


.sidebar-info strong {
    color: var(--dark);

    font-size: 13px;
}


.sidebar-info span {
    color: var(--muted);

    font-size: 10px;

    margin-top: 2px;
}



/* =========================
   RELATED PRODUCTS
========================= */

.related-products-section {
    background: white;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .product-gallery,
    .product-sidebar {
        position: static;
    }

    .product-main-image {
        height: 400px;
    }

}


@media (max-width: 767px) {

    .product-page-hero {
        padding: 35px 0 55px;
    }

    .product-main-image {
        height: 320px;
    }

    .quick-specs {
        grid-template-columns: 1fr;
    }

    .detail-box {
        padding: 20px;
    }

    .spec-row {
        grid-template-columns: 1fr 1.3fr;
    }

}


@media (max-width: 575px) {

    .product-main-image {
        height: 270px;
    }

    .product-detail-title {
        font-size: 29px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

}

/* =========================
   ABOUT PAGE
========================= */

.about-hero-image {
    height: 360px;

    overflow: hidden;

    border-radius: 20px;

    background: var(--light);

    border: 1px solid var(--border);

    box-shadow:
        0 20px 50px rgba(23, 35, 51, .08);
}


.about-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}



/* =========================
   ABOUT INTRO
========================= */

.about-intro {
    background: white;
}


.about-intro h2 {
    color: var(--dark);

    font-size: 32px;

    line-height: 1.6;

    font-weight: 750;
}


.about-intro p {
    font-size: 14px;

    margin-bottom: 15px;
}


.about-intro .large-text {
    color: var(--dark);

    font-size: 18px;

    line-height: 2;

    font-weight: 500;
}



/* =========================
   ACTIVITIES
========================= */

.about-activities {
    background: var(--light);
}


.activity-card {
    height: 100%;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 25px;

    transition: .25s;
}


.activity-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(23, 35, 51, .08);
}


.activity-icon {
    width: 52px;
    height: 52px;

    border-radius: 14px;

    background: #edf5ff;

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 23px;

    margin-bottom: 18px;
}


.activity-card > span {
    color: var(--accent);

    font-size: 11px;

    font-weight: 700;
}


.activity-card h3 {
    color: var(--dark);

    font-size: 17px;

    font-weight: 700;

    margin: 4px 0 8px;
}


.activity-card p {
    font-size: 12px;

    margin: 0;
}



/* =========================
   PROCESS
========================= */

.about-process {
    background: white;
}


.process-image {
    height: 420px;

    overflow: hidden;

    border-radius: 20px;

    background: var(--light);
}


.process-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-process h2 {
    color: var(--dark);

    font-size: 32px;

    font-weight: 750;

    margin-bottom: 18px;
}


.about-process > .container p {
    font-size: 14px;
}


.process-steps {
    margin-top: 25px;
}


.process-step {
    display: flex;

    gap: 15px;

    margin-bottom: 20px;
}


.process-number {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    background: var(--primary);

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 11px;

    font-weight: 700;
}


.process-step h3 {
    color: var(--dark);

    font-size: 15px;

    margin: 0 0 3px;

    font-weight: 700;
}


.process-step p {
    color: var(--text);

    font-size: 12px;

    margin: 0;
}



/* =========================
   CUSTOM PRODUCTION
========================= */

.custom-production {
    background: var(--light);

    padding-top: 0;
}


.custom-production-box {
    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 40px;

    box-shadow:
        0 12px 35px rgba(23, 35, 51, .04);
}


.custom-production-box h2 {
    color: var(--dark);

    font-size: 27px;

    font-weight: 750;

    margin-bottom: 8px;
}


.custom-production-box p {
    font-size: 13px;

    margin: 0;

    max-width: 750px;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {

    .about-hero-image {
        height: 280px;
    }

    .about-intro h2,
    .about-process h2 {
        font-size: 27px;
    }

    .process-image {
        height: 280px;
    }

    .custom-production-box {
        padding: 25px;
    }

}


/* =========================
   Contact Page
========================= */

.contact-info-card {
    height: 100%;
    padding: 30px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(23, 35, 51, 0.08);
}

.contact-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 78, 138, 0.08);
    color: var(--primary);
    border-radius: 14px;
    font-size: 24px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.contact-info-card p {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.contact-info-card a,
.contact-info-card span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--accent);
}


/* Contact Form */

.contact-form-title {
    margin: 12px 0 18px;
    color: var(--dark);
    font-size: 32px;
    line-height: 1.6;
    font-weight: 800;
}

.contact-form-text {
    color: var(--text);
    line-height: 2;
    margin-bottom: 30px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 600;
}

.contact-feature i {
    color: var(--accent);
    font-size: 20px;
}

.contact-form-card {
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(23, 35, 51, 0.06);
}

.contact-form-card h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 800;
}

.contact-form-card p {
    margin: 0;
    color: var(--muted);
}

.contact-form-card .form-label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form-card .form-label span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 48px;
    border-color: var(--border);
    border-radius: 10px;
    padding: 10px 14px;
}

.contact-form-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 78, 138, 0.1);
}

.form-hint {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    border: 0;
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}


/* Location */

.contact-location-box {
    height: 100%;
    min-height: 330px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--light);
    border: 1px solid var(--border);
}

.location-placeholder {
    height: 100%;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.location-placeholder > i {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(23, 35, 51, 0.08);
}

.location-placeholder h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 22px;
}

.location-placeholder p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    line-height: 2;
}


/* Side Contact Card */

.contact-side-card {
    height: 100%;
    padding: 40px;
    background: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
}

.contact-side-card h3 {
    margin: 15px 0;
    font-size: 27px;
    line-height: 1.6;
}

.contact-side-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    margin-bottom: 30px;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}


/* Light Button */

.btn-light-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: 10px;
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    background: #f1f5f9;
    color: var(--primary-dark);
    transform: translateY(-2px);
}


/* Responsive */

@media (max-width: 991px) {

    .contact-form-title {
        font-size: 28px;
    }

    .contact-side-card {
        min-height: 280px;
    }

}

@media (max-width: 767px) {

    .contact-form-card {
        padding: 25px 20px;
    }

    .contact-side-card {
        padding: 30px 25px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .location-placeholder {
        padding: 30px 20px;
    }

    .btn-light-custom {
        width: 100%;
        justify-content: center;
    }

}