```css
/* =========================================================
   ABSAL SERVICE
   Premium Luxury Glass Website

   PARSANET
   Mahdi Lotfi
   09197808430

   FINAL CSS
========================================================= */


/* =========================================================
   FONTS
========================================================= */

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn/Vazirmatn-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn/Vazirmatn-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn/Vazirmatn-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn/Vazirmatn-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   ROOT
========================================================= */

:root {
    --bg-main: #f4f8fb;
    --bg-soft: #edf4f8;
    --bg-white: #ffffff;

    --text-main: #142331;
    --text-dark: #0d1b28;
    --text-soft: #637382;

    --blue: #168dcc;
    --blue-light: #55c7ef;
    --blue-dark: #0877ad;
    --blue-soft: #dff5fc;

    --glass-white: rgba(255,255,255,0.62);
    --glass-border: rgba(255,255,255,0.78);

    --shadow-soft:
        0 20px 60px rgba(40,78,100,0.10);

    --shadow-card:
        0 18px 50px rgba(38,78,105,0.10);

    --shadow-card-hover:
        0 25px 65px rgba(35,90,120,0.15);

    --radius-large: 30px;
    --radius-medium: 22px;
    --radius-small: 16px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Vazirmatn",
        Tahoma,
        Arial,
        sans-serif;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(91,210,245,0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(110,170,230,0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f2f8fb 45%,
            #eaf3f7 100%
        );

    color: var(--text-main);
    line-height: 1.9;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width:
        min(
            1180px,
            calc(100% - 32px)
        );

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(255,255,255,0.70);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom:
        1px solid
        rgba(120,170,195,0.15);

    box-shadow:
        0 8px 30px
        rgba(40,80,100,0.05);
}

.header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.5px;

    background:
        linear-gradient(
            90deg,
            #142331,
            #168dcc
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    transition: 0.3s ease;
}

.brand:hover {
    transform: translateY(-1px);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    color: rgba(20,35,49,0.65);
    font-size: 0.92rem;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.main-nav a:hover {
    color: var(--blue);
    transform: translateY(-1px);
}


/* =========================================================
   HEADER CALL
========================================================= */

.header-call {
    padding: 10px 18px;

    border-radius: var(--radius-small);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.90),
            rgba(226,246,253,0.80)
        );

    border:
        1px solid
        rgba(76,184,220,0.30);

    color: var(--blue-dark);

    box-shadow:
        0 8px 25px
        rgba(50,130,160,0.10);

    font-size: 0.88rem;
    font-weight: 900;

    transition: 0.3s ease;
}

.header-call:hover {
    background: rgba(255,255,255,0.95);

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(50,130,160,0.16);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -220px;
    right: -120px;

    background: rgba(87,204,239,0.17);

    filter: blur(90px);

    border-radius: 50%;
}

.hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    bottom: -220px;
    left: -120px;

    background: rgba(80,160,230,0.12);

    filter: blur(100px);

    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding-block: 90px;

    text-align: center;

    margin-inline: auto;
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    display: inline-flex;

    padding: 8px 16px;

    margin-bottom: 22px;

    border-radius: 999px;

    background: rgba(255,255,255,0.62);

    border:
        1px solid
        rgba(100,180,210,0.20);

    color: #1281b9;

    font-size: 0.85rem;
    font-weight: 800;

    box-shadow:
        0 8px 25px
        rgba(40,100,130,0.07);

    backdrop-filter: blur(12px);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
    max-width: 850px;

    margin-inline: auto;
    margin-bottom: 24px;

    font-size:
        clamp(
            2.2rem,
            6vw,
            4.8rem
        );

    line-height: 1.25;

    letter-spacing: -2px;

    color: var(--text-dark);
}


/* =========================================================
   HERO TEXT
========================================================= */

.hero-text {
    max-width: 700px;

    margin-inline: auto;
    margin-bottom: 34px;

    color: var(--text-soft);

    font-size:
        clamp(
            1rem,
            2vw,
            1.18rem
        );
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 14px;

    margin-bottom: 34px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 54px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 17px;

    font-weight: 900;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: scale(0.97);
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.btn-primary {
    background:
        linear-gradient(
            135deg,
            #13b9eb,
            #087dcc
        );

    color: #ffffff;

    box-shadow:
        0 14px 35px
        rgba(12,145,200,0.24);
}

.btn-primary:hover {
    box-shadow:
        0 18px 45px
        rgba(12,145,200,0.34);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.btn-secondary {
    background:
        rgba(255,255,255,0.72);

    border:
        1px solid
        rgba(100,160,190,0.20);

    color: #1b536d;

    backdrop-filter: blur(15px);

    box-shadow:
        0 10px 30px
        rgba(50,100,130,0.07);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.95);
}


/* =========================================================
   HERO PHONES
========================================================= */

.hero-phones {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 10px;

    width: min(650px,100%);

    margin-inline: auto;
}

.hero-phones a {
    padding: 13px 18px;

    border-radius: 16px;

    background: rgba(255,255,255,0.55);

    border:
        1px solid
        rgba(255,255,255,0.85);

    color: #28495b;

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow-card);

    text-align: center;

    transition: 0.3s ease;
}

.hero-phones a:hover {
    transform: translateY(-3px);

    background: rgba(255,255,255,0.85);

    border-color:
        rgba(45,180,220,0.35);

    color: #0877a9;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    margin-top: 40px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}

.section-dark {
    background:
        linear-gradient(
            180deg,
            rgba(230,242,247,0.45),
            rgba(255,255,255,0.20)
        );
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 720px;

    margin:
        0 auto 48px;

    text-align: center;
}

.section-heading > span {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--blue);

    font-size: 0.85rem;

    font-weight: 900;
}

.section-heading h2 {
    margin-bottom: 12px;

    font-size:
        clamp(
            1.8rem,
            4vw,
            3rem
        );

    line-height: 1.35;

    color: var(--text-dark);

    text-align: center;
}

.section-heading p {
    color: var(--text-soft);
    text-align: center;
}


/* =========================================================
   SECTION IMAGE
========================================================= */

.section-image {
    width: min(900px,100%);

    margin:
        0 auto 40px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 20px 60px
        rgba(38,78,105,0.10);
}

.section-image img {
    width: 100%;
    height: auto;
    margin-top: 15px;

    object-fit: cover;
}



/* =========================================================
   CARD GRID
   HTML CURRENTLY USES:
   .card-grid
   .card-grid-4
   .card-grid-6

   DESKTOP = 2
   TABLET  = 2
   MOBILE  = 1
========================================================= */

.card-grid {
    width: calc(100% - 40px) !important;

    max-width: 900px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    display: grid !important;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        ) !important;

    gap: 24px !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    align-items: stretch;
}


/* =========================================================
   DIRECT CARD CONTROL
========================================================= */

.card-grid > .glass-card {
    width: 100% !important;

    max-width: none !important;

    min-width: 0 !important;

    margin: 0 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   GLASS CARD
========================================================= */

.card-grid .glass-card {
    position: relative !important;

    min-height: 190px !important;

    padding: 28px !important;

    border-radius: 30px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.80),
            rgba(255,255,255,0.48)
        ) !important;

    border:
        1px solid
        rgba(16,44,66,0.45) !important;

    outline: none !important;

    box-shadow:
        0 18px 50px
        rgba(38,78,105,0.10) !important;

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    overflow: hidden !important;

    text-align: center;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* =========================================================
   CARD LIGHT EFFECT
========================================================= */

.card-grid .glass-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -90px;
    left: -50px;

    background:
        rgba(70,200,235,0.13);

    filter: blur(35px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   GOLD TOP DETAIL
========================================================= */

.card-grid .glass-card::after {
    content: "";

    position: absolute;

    width: 55px;
    height: 2px;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #b79552,
            transparent
        );

    opacity: 0.75;

    pointer-events: none;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.card-grid .glass-card h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 10px 0 !important;

    font-size: 1.15rem;

    color: var(--text-dark);

    text-align: center;
}

.card-grid .glass-card p {
    position: relative;

    z-index: 2;

    margin: 0 !important;

    color: var(--text-soft);

    font-size: 0.92rem;

    text-align: center;
}


/* =========================================================
   CARD HOVER
========================================================= */

.card-grid .glass-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(16,44,66,0.70) !important;

    box-shadow:
        0 25px 65px
        rgba(35,90,120,0.15) !important;
}


/* =========================================================
   EDUCATIONAL / CONTENT CARDS
========================================================= */

.educational-card,
.content-card,
.article-card,
.info-card {
    text-align: right;
}

.educational-card h3,
.content-card h3,
.article-card h3,
.info-card h3 {
    text-align: right;
}

.educational-card p,
.content-card p,
.article-card p,
.info-card p {
    text-align: justify;
    text-justify: inter-word;
}


/* =========================================================
   FAQ
========================================================= */

.faq-list {
    width: min(900px,100%);

    margin-inline: auto;

    display: grid;

    gap: 14px;
}

.faq-item {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.80),
            rgba(255,255,255,0.55)
        );

    border:
        1px solid
        rgba(16,44,66,0.20);

    border-radius: 20px;

    box-shadow:
        0 12px 35px
        rgba(38,78,105,0.07);

    backdrop-filter: blur(15px);

    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;

    padding: 20px 24px;

    font-weight: 800;

    color: var(--text-dark);

    list-style: none;

    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";

    position: absolute;

    left: 22px;

    top: 50%;

    transform: translateY(-50%);

    color: var(--blue);

    font-size: 1.4rem;

    font-weight: 400;
}

.faq-item[open] summary::before {
    content: "−";
}

.faq-item p {
    padding:
        0 24px 22px;

    color: var(--text-soft);

    font-size: 0.94rem;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #07131f,
            #0c2535
        );

    color: #ffffff;
}

.contact-box {
    max-width: 900px;

    margin-inline: auto;

    padding: 55px 35px;

    text-align: center;

    border-radius: 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.04)
        );

    border:
        1px solid
        rgba(255,255,255,0.14);

    box-shadow:
        0 25px 80px
        rgba(0,0,0,0.22);

    backdrop-filter: blur(20px);
}

.contact-image {
    margin-bottom: 35px;

    border-radius: 26px;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.20);
}

.contact-box > span {
    display: block;

    margin-bottom: 10px;

    color: #61d4f5;

    font-weight: 800;
}

.contact-box h2 {
    margin-bottom: 15px;

    font-size:
        clamp(
            1.8rem,
            4vw,
            3rem
        );
}

.contact-box > p {
    max-width: 680px;

    margin:
        0 auto 30px;

    color:
        rgba(255,255,255,0.72);
}


/* =========================================================
   CONTACT PHONES
========================================================= */

.contact-phones {
    width: min(650px,100%);

    margin:
        0 auto 25px;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 12px;
}

.contact-phones a {
    padding: 14px 18px;

    border-radius: 16px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid
        rgba(255,255,255,0.13);

    color: #ffffff;

    transition: 0.3s ease;
}

.contact-phones a:hover {
    background:
        rgba(255,255,255,0.15);

    transform:
        translateY(-3px);
}


/* =========================================================
   MESSAGE BUTTON
========================================================= */

.message-button {
    border: none;

    padding:
        13px 25px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #13b9eb,
            #087dcc
        );

    color: #ffffff;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 14px 35px
        rgba(12,145,200,0.24);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.message-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(12,145,200,0.34);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background:
        #07131f;

    color:
        rgba(255,255,255,0.72);
}

.footer-main {
    padding:
        70px 0;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 60px;
}

.footer-brand,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-brand strong,
.footer-contact strong {
    color: #ffffff;

    font-size: 1.15rem;

    margin-bottom: 8px;
}

.footer-brand span {
    color: #61d4f5;

    font-size: 0.9rem;
}

.footer-brand p {
    max-width: 600px;

    color:
        rgba(255,255,255,0.62);

    font-size: 0.9rem;
}

.footer-contact a {
    color:
        rgba(255,255,255,0.72);

    transition:
        color 0.3s ease;
}

.footer-contact a:hover {
    color:
        #61d4f5;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top:
        1px solid
        rgba(255,255,255,0.08);
}

.footer-bottom-inner {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom-inner p {
    color:
        rgba(255,255,255,0.45);

    font-size:
        0.78rem;
}


/* =========================================================
   PARSANET BRAND BAR
========================================================= */

.parsanet-brand-bar {
    border-top:
        1px solid
        rgba(255,255,255,0.05);

    text-align: center;
}

.parsanet-signature {
    width: 100%;

    min-height: 48px;

    border: none;

    background: transparent;

    color:
        rgba(255,255,255,0.45);

    cursor: pointer;

    font-size: 0.78rem;

    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.parsanet-signature:hover {
    color:
        #61d4f5;

    background:
        rgba(255,255,255,0.03);
}

.parsanet-expanded-text {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    flex-wrap: wrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .card-grid {
        width:
            calc(100% - 30px) !important;

        max-width:
            760px !important;

        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            ) !important;

        gap:
            18px !important;
    }

    .footer-main {
        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .container {
        width:
            calc(100% - 24px);
    }

    .header-inner {
        min-height:
            68px;

        gap:
            10px;
    }

    .main-nav {
        display:
            none;
    }

    .brand {
        font-size:
            1.05rem;
    }

    .header-call {
        padding:
            8px 13px;

        font-size:
            0.78rem;
    }

    .hero {
        min-height:
            auto;
    }

    .hero-content {
        padding:
            70px 0;
    }

    .hero h1 {
        font-size:
            clamp(
                2rem,
                11vw,
                3rem
            );

        letter-spacing:
            -1px;
    }

    .hero-actions {
        flex-direction:
            column;

        align-items:
            stretch;
    }

    .btn {
        width:
            100%;
    }

    .hero-phones {
        grid-template-columns:
            1fr;
    }

    .section {
        padding:
            75px 0;
    }

    .section-heading {
        margin-bottom:
            35px;
    }

    .section-image {
        border-radius:
            22px;

        margin-bottom:
            30px;
    }

    .card-grid {
        width:
            calc(100% - 20px) !important;

        max-width:
            100% !important;

        grid-template-columns:
            minmax(0,1fr) !important;

        gap:
            16px !important;
    }

    .card-grid .glass-card {
        min-height:
            160px !important;

        padding:
            23px !important;

        border-radius:
            24px !important;
    }

    .contact-section {
        padding:
            75px 0;
    }

    .contact-box {
        padding:
            35px 20px;

        border-radius:
            26px;
    }

    .contact-phones {
        grid-template-columns:
            1fr;
    }

    .footer-main {
        padding:
            50px 0;

        gap:
            35px;
    }

    .footer-bottom-inner {
        padding:
            20px 0;

        flex-direction:
            column;

        text-align:
            center;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }

    .glass-card,
    .btn,
    .header-call,
    .hero-phones a,
    .contact-phones a,
    .message-button {
        transition:
            none !important;
    }
}

/* =========================================================
   FINAL FOOTER + PARSANET FIX
   Centered Footer
   Proper PARSANET Expand/Collapse
========================================================= */


/* =========================================================
   FOOTER - FULL CENTER ALIGNMENT
========================================================= */

.site-footer {
    text-align: center;
}

.footer-main {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    text-align: center;
}

.footer-brand,
.footer-contact {
    width: 100%;
    align-items: center;
    text-align: center;
}

.footer-brand strong,
.footer-brand span,
.footer-brand p,
.footer-contact strong,
.footer-contact a {
    text-align: center;
}

.footer-brand p {
    margin-inline: auto;
}

.footer-contact {
    justify-content: flex-start;
}


/* =========================================================
   FOOTER BOTTOM - CENTER
========================================================= */

.footer-bottom {
    text-align: center;
}

.footer-bottom-inner {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.footer-bottom-inner p {
    width: 100%;
    text-align: center;
    margin: 0;
}


/* =========================================================
   PARSANET BRAND BAR
========================================================= */

.parsanet-brand-bar {
    width: 100%;
    text-align: center;
}

.parsanet-signature {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* =========================================================
   IMPORTANT:
   HTML hidden ATTRIBUTE MUST WORK
========================================================= */

.parsanet-expanded-text[hidden] {
    display: none !important;
}


/* =========================================================
   PARSANET DEFAULT TEXT
========================================================= */

.parsanet-default-text {
    display: inline-block;
    text-align: center;
}


/* =========================================================
   PARSANET EXPANDED CONTENT
========================================================= */

.parsanet-expanded-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.8;
}


/* =========================================================
   PARSANET HOVER
========================================================= */

.parsanet-signature:hover {
    color: #61d4f5;
    background: rgba(255,255,255,0.03);
}


/* =========================================================
   MOBILE FOOTER
========================================================= */

@media (max-width: 850px) {

    .footer-main {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand,
    .footer-contact {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        max-width: 600px;
        margin-inline: auto;
        text-align: center;
    }

    .footer-contact a {
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .footer-main {
        padding: 50px 0;
        gap: 35px;
        text-align: center;
    }

    .footer-brand,
    .footer-contact {
        align-items: center;
        text-align: center;
    }

    .footer-brand strong,
    .footer-brand span,
    .footer-brand p,
    .footer-contact strong,
    .footer-contact a {
        text-align: center;
    }

    .footer-brand p {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
    }

    .footer-bottom-inner {
        width: 100%;
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-inner p {
        width: 100%;
        text-align: center;
    }

    .parsanet-brand-bar {
        width: 100%;
        text-align: center;
    }

    .parsanet-signature {
        min-height: 52px;
        padding: 8px 12px;
        text-align: center;
    }

    .parsanet-expanded-text {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
/* =========================================================
   ABSAL SERVICE IMAGE WATERMARK
========================================================= */

.image-watermark {
    position: relative;
    overflow: hidden;
}

.image-watermark::after {
    content: "آبسال سرویس";

    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    padding: 6px 14px;

    border-radius: 999px;

    background: rgba(7, 19, 31, 0.45);

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: rgba(255, 255, 255, 0.78);

    font-family:
        "Vazirmatn",
        Tahoma,
        Arial,
        sans-serif;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.2px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        0 6px 20px
        rgba(0, 0, 0, 0.15);

    pointer-events: none;

    z-index: 5;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .image-watermark::after {
        bottom: 12px;

        padding: 5px 11px;

        font-size: 0.65rem;
    }

}
