/* =========================================================
   CONTACT PAGE
   Dark Blue / Glassmorphism / Responsive
========================================================= */

:root {
    --contact-bg: #050b18;
    --contact-bg-soft: #081225;
    --contact-card: rgba(11, 25, 48, 0.72);

    --contact-primary: #1683ff;
    --contact-primary-light: #42a5ff;
    --contact-secondary: #00c6ff;

    --contact-text: #f4f8ff;
    --contact-text-soft: #a9b8ce;
    --contact-text-muted: #71839e;

    --contact-border: rgba(255, 255, 255, 0.08);
    --contact-border-blue: rgba(22, 131, 255, 0.25);

    --contact-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35);

    --contact-radius: 26px;
}

/* =========================================================
   RESET
========================================================= */

.contact-page,
.contact-page *,
.contact-page *::before,
.contact-page *::after {
    box-sizing: border-box;
}

.contact-page {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;

    color: var(--contact-text);

    font-family: "Vazirmatn", sans-serif;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(0, 110, 255, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 35%,
            rgba(0, 198, 255, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #050b18 0%,
            #071021 50%,
            #050a16 100%
        );
}

.contact-page a {
    text-decoration: none;
}

.contact-page button,
.contact-page input,
.contact-page textarea,
.contact-page select {
    font-family: inherit;
}

/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.background-effects {
    position: fixed;
    inset: 0;

    pointer-events: none;

    overflow: hidden;

    z-index: 0;
}

.bg-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    opacity: 0.22;

    animation: orbFloat 12s ease-in-out infinite;
}

.orb-one {
    width: 420px;
    height: 420px;

    top: 5%;
    right: -180px;

    background: #006eff;
}

.orb-two {
    width: 350px;
    height: 350px;

    left: -150px;
    top: 40%;

    background: #00a8ff;

    animation-delay: -4s;
}

.orb-three {
    width: 300px;
    height: 300px;

    right: 20%;
    bottom: -150px;

    background: #005eff;

    animation-delay: -8s;
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -35px, 0);
    }
}

/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;

    z-index: 1;

    width: min(1400px, calc(100% - 60px));

    min-height: 680px;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

.hero-grid {
    width: 100%;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 80px;
}

.hero-content {
    position: relative;

    z-index: 2;

    padding: 70px 0;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 17px;

    margin-bottom: 25px;

    border: 1px solid var(--contact-border-blue);

    border-radius: 999px;

    color: #b9dfff;

    background: rgba(15, 45, 85, 0.45);

    backdrop-filter: blur(15px);

    font-size: 14px;
    font-weight: 500;
}

.badge-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #20d67b;

    box-shadow:
        0 0 0 5px rgba(32, 214, 123, 0.1),
        0 0 18px rgba(32, 214, 123, 0.7);

    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.hero-content h1 {
    margin: 0 0 25px;

    max-width: 700px;

    font-size: clamp(42px, 5vw, 76px);

    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -2px;
}

.hero-content h1 span {
    display: inline-block;

    background:
        linear-gradient(
            110deg,
            #4ab0ff,
            #1683ff,
            #00c6ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-content > p {
    max-width: 650px;

    margin: 0 0 35px;

    color: var(--contact-text-soft);

    font-size: 17px;

    line-height: 2.2;
}

.hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 45px;
}

.hero-primary-btn,
.hero-secondary-btn {
    min-height: 54px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 15px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.hero-primary-btn {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #0065db
        );

    box-shadow:
        0 15px 35px rgba(22, 131, 255, 0.25);
}

.hero-primary-btn:hover {
    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(22, 131, 255, 0.4);
}

.hero-secondary-btn {
    color: #d7e8ff;

    border: 1px solid var(--contact-border);

    background: rgba(255, 255, 255, 0.035);

    backdrop-filter: blur(15px);
}

.hero-secondary-btn:hover {
    color: #fff;

    transform: translateY(-4px);

    border-color: var(--contact-border-blue);

    background: rgba(22, 131, 255, 0.1);
}

.hero-trust {
    display: flex;

    align-items: center;

    gap: 15px;
}

.trust-users {
    display: flex;

    direction: ltr;
}

.trust-users span {
    width: 38px;
    height: 38px;

    margin-right: -8px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #071021;

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #004ca9
        );

    font-size: 11px;
    font-weight: 800;
}

.hero-trust strong {
    display: block;

    margin-bottom: 3px;

    font-size: 13px;
}

.hero-trust small {
    display: block;

    color: var(--contact-text-muted);

    font-size: 11px;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: relative;

    width: 310px;
    height: 310px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(43, 150, 255, 0.2);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 131, 255, 0.2),
            rgba(22, 131, 255, 0.04) 55%,
            transparent 70%
        );

    box-shadow:
        0 0 100px rgba(0, 119, 255, 0.14),
        inset 0 0 70px rgba(0, 119, 255, 0.08);

    animation: heroCircleFloat 5s ease-in-out infinite;
}

.hero-circle::before,
.hero-circle::after {
    content: "";

    position: absolute;

    inset: -35px;

    border: 1px solid rgba(22, 131, 255, 0.08);

    border-radius: 50%;
}

.hero-circle::after {
    inset: -75px;

    border-color: rgba(22, 131, 255, 0.045);
}

.hero-circle i {
    font-size: 100px;

    color: #1683ff;

    filter:
        drop-shadow(
            0 0 30px rgba(22, 131, 255, 0.6)
        );
}

@keyframes heroCircleFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-card {
    position: absolute;

    z-index: 5;

    border: 1px solid rgba(255, 255, 255, 0.09);

    background:
        rgba(10, 25, 48, 0.78);

    backdrop-filter: blur(20px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);

    animation: cardFloat 5s ease-in-out infinite;
}

.card-main {
    top: 95px;
    right: 0;

    min-width: 290px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-radius: 20px;
}

.visual-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #0055b9
        );

    box-shadow:
        0 10px 25px rgba(22, 131, 255, 0.25);
}

.visual-icon i {
    font-size: 21px;
}

.card-main strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
}

.card-main div:nth-child(2) span {
    display: block;

    color: var(--contact-text-muted);

    font-size: 10px;
}

.online-status {
    margin-right: auto;

    display: flex;

    align-items: center;

    gap: 5px;

    color: #3de38b;

    font-size: 10px;
}

.online-status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #3de38b;

    box-shadow: 0 0 10px #3de38b;
}

.card-small {
    min-width: 100px;

    padding: 13px 16px;

    display: flex;

    align-items: center;

    gap: 9px;

    border-radius: 15px;

    color: #d9eaff;

    font-size: 11px;
}

.card-small i {
    color: #36a1ff;

    font-size: 17px;
}

.card-small-one {
    left: 20px;
    top: 120px;

    animation-delay: -1s;
}

.card-small-two {
    left: 45px;
    bottom: 115px;

    animation-delay: -2.5s;
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =========================================================
   SECTION COMMON
========================================================= */

.quick-contact-section,
.main-contact-section,
.why-section,
.statistics-section,
.faq-section,
.map-section,
.cta-section,
.footer-contact-info {
    position: relative;

    z-index: 1;

    width: min(1400px, calc(100% - 60px));

    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading > span,
.map-content > span,
.cta-content > span,
.sidebar-header > span,
.form-header > div > span {
    display: block;

    margin-bottom: 12px;

    color: #379cff;

    font-size: 13px;

    font-weight: 700;
}

.section-heading h2 {
    margin: 0 0 15px;

    color: #f5f9ff;

    font-size: clamp(28px, 4vw, 43px);

    font-weight: 850;

    line-height: 1.4;
}

.section-heading p {
    margin: 0;

    color: var(--contact-text-muted);

    font-size: 14px;

    line-height: 2;
}

/* =========================================================
   QUICK CONTACT
========================================================= */

.quick-contact-section {
    padding: 100px 0;
}

.quick-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.contact-card {
    position: relative;

    min-height: 285px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid var(--contact-border);

    border-radius: var(--contact-radius);

    background:
        linear-gradient(
            145deg,
            rgba(14, 31, 59, 0.8),
            rgba(7, 17, 34, 0.75)
        );

    backdrop-filter: blur(20px);

    box-shadow: var(--contact-shadow);

    transform: translateY(25px);

    opacity: 0;

    transition:
        transform 0.6s ease,
        opacity 0.6s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card.visible {
    transform: translateY(0);

    opacity: 1;
}

.contact-card::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    top: -80px;
    right: -80px;

    border-radius: 50%;

    background: rgba(22, 131, 255, 0.12);

    filter: blur(20px);
}

.contact-card:hover {
    transform: translateY(-8px);

    border-color: rgba(22, 131, 255, 0.3);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(22, 131, 255, 0.05);
}

.card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}

.contact-icon {
    width: 53px;
    height: 53px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    font-size: 21px;
}

.phone-icon {
    color: #63b5ff;

    background: rgba(22, 131, 255, 0.13);
}

.email-icon {
    color: #8aafff;

    background: rgba(90, 105, 255, 0.12);
}

.telegram-icon {
    color: #35b9ff;

    background: rgba(0, 177, 255, 0.12);
}

.location-icon {
    color: #65a9ff;

    background: rgba(0, 111, 255, 0.12);
}

.card-number {
    color: rgba(255, 255, 255, 0.16);

    font-size: 28px;

    font-weight: 900;
}

.contact-card h3 {
    margin: 0 0 12px;

    font-size: 18px;

    font-weight: 750;
}

.contact-card p {
    min-height: 72px;

    margin: 0 0 20px;

    color: var(--contact-text-muted);

    font-size: 12px;

    line-height: 2;
}

.contact-card > a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #4aaaff;

    font-size: 12px;

    font-weight: 700;

    transition: gap 0.25s ease;
}

.contact-card > a:hover {
    color: #75c0ff;

    gap: 13px;
}

/* =========================================================
   MAIN CONTACT AREA
========================================================= */

.main-contact-section {
    padding: 80px 0 120px;
}

.contact-layout {
    display: grid;

    grid-template-columns: minmax(0, 1.65fr) minmax(310px, 0.8fr);

    gap: 25px;

    align-items: stretch;
}

.form-wrapper,
.contact-sidebar {
    border: 1px solid var(--contact-border);

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(12, 28, 53, 0.86),
            rgba(6, 16, 32, 0.9)
        );

    backdrop-filter: blur(25px);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.3);
}

.form-wrapper {
    padding: 42px;
}

.form-header {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 18px;
}

.form-title-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #0061cf
        );

    box-shadow:
        0 12px 30px rgba(22, 131, 255, 0.25);
}

.form-title-icon i {
    font-size: 20px;
}

.form-header h2 {
    margin: 0;

    font-size: 25px;

    font-weight: 800;
}

.form-description {
    max-width: 800px;

    margin: 0 0 35px;

    color: var(--contact-text-muted);

    font-size: 12px;

    line-height: 2;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    color: #d9e7f8;

    font-size: 12px;

    font-weight: 600;
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
}

.input-wrapper > i,
.textarea-wrapper > i {
    position: absolute;

    right: 17px;

    top: 50%;

    z-index: 2;

    color: #52708f;

    font-size: 16px;

    transform: translateY(-50%);

    transition: color 0.25s ease;
}

.textarea-wrapper > i {
    top: 22px;

    transform: none;
}

.input-wrapper input,
.input-wrapper select,
.textarea-wrapper textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.07);

    outline: none;

    border-radius: 14px;

    color: #eaf4ff;

    background: rgba(255, 255, 255, 0.035);

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.input-wrapper input,
.input-wrapper select {
    height: 53px;

    padding: 0 48px 0 17px;
}

.input-wrapper select {
    cursor: pointer;

    appearance: none;
}

.input-wrapper select option {
    color: #fff;

    background: #0a1930;
}

.textarea-wrapper textarea {
    min-height: 165px;

    padding: 17px 48px 17px 17px;

    resize: vertical;

    line-height: 1.9;
}

.input-wrapper input::placeholder,
.textarea-wrapper textarea::placeholder {
    color: #50657e;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.textarea-wrapper textarea:focus {
    border-color: rgba(22, 131, 255, 0.55);

    background: rgba(22, 131, 255, 0.045);

    box-shadow:
        0 0 0 4px rgba(22, 131, 255, 0.07);
}

.input-wrapper:focus-within > i,
.textarea-wrapper:focus-within > i {
    color: #3da2ff;
}

/* =========================================================
   FORM BOTTOM
========================================================= */

.form-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 10px;
}

.checkbox-wrapper {
    position: relative;

    display: flex;

    align-items: center;

    gap: 10px;

    cursor: pointer;

    color: var(--contact-text-muted);

    font-size: 11px;
}

.checkbox-wrapper input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.custom-checkbox {
    width: 19px;
    height: 19px;

    flex-shrink: 0;

    border: 1px solid #34516f;

    border-radius: 6px;

    background: rgba(255, 255, 255, 0.03);

    transition: 0.25s ease;
}

.checkbox-wrapper input:checked + .custom-checkbox {
    border-color: #1683ff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #0064d8
        );

    box-shadow:
        0 5px 15px rgba(22, 131, 255, 0.25);
}

.checkbox-wrapper input:checked + .custom-checkbox::after {
    content: "✓";

    display: flex;

    align-items: center;
    justify-content: center;

    height: 100%;

    color: #fff;

    font-size: 12px;

    font-weight: 900;
}

.submit-button {
    min-width: 155px;
    min-height: 53px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 14px;

    color: #fff;

    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #005cc4
        );

    box-shadow:
        0 15px 35px rgba(22, 131, 255, 0.22);

    font-size: 12px;

    font-weight: 750;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.submit-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(22, 131, 255, 0.35);
}

.submit-button i {
    font-size: 14px;
}

/* =========================================================
   SIDEBAR
========================================================= */

.contact-sidebar {
    padding: 32px;

    display: flex;

    flex-direction: column;
}

.sidebar-header h3 {
    margin: 0;

    font-size: 25px;

    font-weight: 800;
}

.support-status {
    margin-top: 30px;

    padding: 17px;

    display: flex;

    align-items: center;

    gap: 12px;

    border: 1px solid rgba(50, 220, 130, 0.1);

    border-radius: 16px;

    background: rgba(50, 220, 130, 0.035);
}

.status-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #43e694;

    background: rgba(50, 220, 130, 0.1);
}

.support-status strong {
    display: block;

    margin-bottom: 4px;

    font-size: 12px;
}

.support-status span:not(.live-dot) {
    display: block;

    color: #6f879f;

    font-size: 9px;
}

.live-dot {
    width: 8px;
    height: 8px;

    margin-right: auto;

    flex-shrink: 0;

    border-radius: 50%;

    background: #38dc89;

    box-shadow: 0 0 12px rgba(56, 220, 137, 0.8);

    animation: statusPulse 2s infinite;
}

.sidebar-divider {
    width: 100%;
    height: 1px;

    margin: 25px 0;

    background: var(--contact-border);
}

.sidebar-info-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 22px;
}

.sidebar-info-icon {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #46a8ff;

    background: rgba(22, 131, 255, 0.09);
}

.sidebar-info-item strong,
.sidebar-info-item span,
.sidebar-info-item b {
    display: block;
}

.sidebar-info-item strong {
    margin-bottom: 4px;

    color: #dce9f7;

    font-size: 11px;
}

.sidebar-info-item span {
    margin-bottom: 3px;

    color: #637994;

    font-size: 9px;
}

.sidebar-info-item b {
    color: #50aaff;

    font-size: 10px;
}

.sidebar-social {
    margin-top: auto;

    padding-top: 15px;
}

.sidebar-social > span {
    display: block;

    margin-bottom: 13px;

    color: #6e829b;

    font-size: 10px;
}

.social-links {
    display: flex;

    gap: 9px;
}

.social-links a {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--contact-border);

    border-radius: 11px;

    color: #91a8c0;

    background: rgba(255, 255, 255, 0.025);

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-4px);

    color: #fff;

    background: rgba(22, 131, 255, 0.15);

    border-color: rgba(22, 131, 255, 0.3);
}

/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    padding: 100px 0;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.why-card {
    position: relative;

    padding: 30px;

    min-height: 290px;

    overflow: hidden;

    border: 1px solid var(--contact-border);

    border-radius: 24px;

    background:
        rgba(10, 23, 44, 0.72);

    backdrop-filter: blur(18px);

    transform: translateY(25px);

    opacity: 0;

    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        border-color 0.3s ease;
}

.why-card.visible {
    opacity: 1;

    transform: translateY(0);
}

.why-card:hover {
    transform: translateY(-7px);

    border-color: rgba(22, 131, 255, 0.28);
}

.why-number {
    position: absolute;

    top: 20px;
    left: 23px;

    color: rgba(255, 255, 255, 0.08);

    font-size: 32px;

    font-weight: 900;
}

.why-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: #4aaaff;

    background: rgba(22, 131, 255, 0.1);

    font-size: 21px;
}

.why-card h3 {
    margin: 0 0 12px;

    font-size: 17px;

    font-weight: 750;
}

.why-card p {
    margin: 0;

    color: var(--contact-text-muted);

    font-size: 11px;

    line-height: 2;
}

/* =========================================================
   STATISTICS
========================================================= */

.statistics-section {
    margin-top: 30px;
    margin-bottom: 100px;

    padding: 45px;

    border: 1px solid var(--contact-border);

    border-radius: 28px;

    background:
        linear-gradient(
            110deg,
            rgba(13, 37, 70, 0.75),
            rgba(8, 20, 39, 0.7)
        );

    backdrop-filter: blur(20px);
}

.stats-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.stat-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    transform: translateY(20px);

    opacity: 0;

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.stat-item.visible {
    opacity: 1;

    transform: translateY(0);
}

.stat-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: #4aaaff;

    background: rgba(22, 131, 255, 0.09);

    font-size: 19px;
}

.stat-item strong {
    display: block;

    margin-bottom: 4px;

    color: #eaf5ff;

    font-size: 24px;

    font-weight: 850;
}

.stat-item span {
    color: #6f849c;

    font-size: 10px;
}

/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 70px 0 110px;
}

.faq-container {
    max-width: 950px;

    margin: auto;
}

.faq-item {
    margin-bottom: 12px;

    overflow: hidden;

    border: 1px solid var(--contact-border);

    border-radius: 18px;

    background:
        rgba(10, 24, 46, 0.7);

    backdrop-filter: blur(15px);

    transform: translateY(20px);

    opacity: 0;

    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        border-color 0.25s ease;
}

.faq-item.visible {
    opacity: 1;

    transform: translateY(0);
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(22, 131, 255, 0.22);
}

.faq-item summary {
    min-height: 65px;

    padding: 0 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    list-style: none;

    color: #dbe9f7;

    font-size: 13px;

    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: #4caaff;

    font-size: 14px;

    transition: transform 0.25s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px 22px;

    color: #73879f;

    font-size: 11px;

    line-height: 2;
}

.faq-answer p {
    margin: 0;

    padding-top: 5px;
}

/* =========================================================
   MAP
========================================================= */

.map-section {
    padding: 50px 0 110px;
}

.map-wrapper {
    min-height: 430px;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    overflow: hidden;

    border: 1px solid var(--contact-border);

    border-radius: 30px;

    background:
        rgba(8, 20, 39, 0.8);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);
}

.map-content {
    padding: 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.map-content h2 {
    margin: 0 0 17px;

    font-size: 31px;

    font-weight: 850;
}

.map-content > p {
    margin: 0 0 25px;

    color: var(--contact-text-muted);

    font-size: 12px;

    line-height: 2;
}

.address-box {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 17px;

    margin-bottom: 20px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);
}

.address-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #4eacff;

    background: rgba(22, 131, 255, 0.1);
}

.address-box strong {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
}

.address-box p {
    margin: 0;

    color: #6f849d;

    font-size: 10px;

    line-height: 1.8;
}

.map-button {
    width: fit-content;

    padding: 12px 18px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border-radius: 12px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #005ec8
        );

    font-size: 11px;

    font-weight: 700;

    transition: transform 0.25s ease;
}

.map-button:hover {
    color: #fff;

    transform: translateY(-3px);
}

.fake-map {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background:
        linear-gradient(
            130deg,
            #08182b,
            #0b2138
        );
}

.map-grid {
    position: absolute;

    inset: 0;

    opacity: 0.45;

    background-image:
        linear-gradient(
            rgba(80, 150, 210, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(80, 150, 210, 0.08) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.map-road {
    position: absolute;

    height: 10px;

    border-radius: 20px;

    background: rgba(75, 133, 176, 0.2);

    box-shadow:
        0 0 0 1px rgba(75, 133, 176, 0.05);
}

.road-one {
    width: 120%;

    top: 42%;

    right: -10%;

    transform: rotate(-18deg);
}

.road-two {
    width: 120%;

    top: 66%;

    left: -10%;

    transform: rotate(15deg);
}

.road-three {
    width: 90%;

    top: 15%;

    left: 5%;

    transform: rotate(65deg);
}

.map-marker {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #005ec8
        );

    box-shadow:
        0 15px 35px rgba(0, 105, 255, 0.4);

    transform: translate(-50%, -50%);

    z-index: 3;
}

.marker-pulse {
    position: absolute;

    inset: -18px;

    border: 1px solid rgba(22, 131, 255, 0.3);

    border-radius: 50%;

    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        transform: scale(0.7);

        opacity: 1;
    }

    100% {
        transform: scale(1.4);

        opacity: 0;
    }
}

.map-label {
    position: absolute;

    left: 50%;
    top: calc(50% + 55px);

    padding: 10px 15px;

    display: flex;

    align-items: center;

    gap: 7px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 11px;

    color: #dcecff;

    background:
        rgba(7, 20, 37, 0.85);

    backdrop-filter: blur(15px);

    font-size: 10px;

    transform: translateX(-50%);
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
    min-height: 400px;

    margin-bottom: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(22, 131, 255, 0.15);

    border-radius: 32px;

    background:
        radial-gradient(
            circle at center,
            rgba(22, 131, 255, 0.2),
            transparent 60%
        ),
        linear-gradient(
            135deg,
            rgba(11, 36, 70, 0.9),
            rgba(5, 17, 34, 0.95)
        );
}

.cta-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(22, 131, 255, 0.12);

    filter: blur(100px);
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 650px;

    padding: 60px 30px;

    text-align: center;
}

.cta-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #005ac2
        );

    box-shadow:
        0 20px 45px rgba(22, 131, 255, 0.3);

    font-size: 25px;
}

.cta-content h2 {
    margin: 0 0 15px;

    font-size: clamp(30px, 4vw, 44px);

    font-weight: 900;
}

.cta-content p {
    margin: 0 auto 28px;

    color: #7d91a8;

    font-size: 12px;

    line-height: 2;
}

.cta-button {
    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 14px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #005fc9
        );

    box-shadow:
        0 15px 35px rgba(22, 131, 255, 0.25);

    font-size: 12px;

    font-weight: 750;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cta-button:hover {
    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(22, 131, 255, 0.38);
}

/* =========================================================
   FOOTER CONTACT INFO
========================================================= */

.footer-contact-info {
    margin-bottom: 60px;
}

.footer-info-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border: 1px solid var(--contact-border);

    border-radius: 24px;

    overflow: hidden;

    background:
        rgba(9, 22, 42, 0.7);
}

.footer-info-grid > div {
    min-height: 145px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-left: 1px solid var(--contact-border);
}

.footer-info-grid > div:last-child {
    border-left: 0;
}

.footer-info-icon {
    width: 43px;
    height: 43px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #4caaff;

    background: rgba(22, 131, 255, 0.09);
}

.footer-info-grid strong {
    margin-bottom: 5px;

    font-size: 11px;
}

.footer-info-grid span {
    color: #657b94;

    font-size: 10px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .contact-hero,
    .quick-contact-section,
    .main-contact-section,
    .why-section,
    .statistics-section,
    .faq-section,
    .map-section,
    .cta-section,
    .footer-contact-info {
        width: min(100% - 40px, 1000px);
    }

    .hero-grid {
        gap: 35px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        min-height: auto;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .fake-map {
        min-height: 350px;
    }

    .footer-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-info-grid > div {
        border-bottom: 1px solid var(--contact-border);
    }

    .footer-info-grid > div:nth-child(2n) {
        border-left: 0;
    }

    .footer-info-grid > div:nth-child(n + 3) {
        border-bottom: 0;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-hero,
    .quick-contact-section,
    .main-contact-section,
    .why-section,
    .statistics-section,
    .faq-section,
    .map-section,
    .cta-section,
    .footer-contact-info {
        width: calc(100% - 28px);
    }

    .contact-hero {
        min-height: auto;

        padding-top: 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .hero-content {
        padding: 30px 0 10px;

        text-align: center;
    }

    .hero-badge {
        margin-bottom: 20px;

        font-size: 11px;
    }

    .hero-content h1 {
        margin-bottom: 18px;

        font-size: clamp(36px, 11vw, 48px);

        letter-spacing: -1px;
    }

    .hero-content > p {
        margin-bottom: 25px;

        font-size: 12px;

        line-height: 2;
    }

    .hero-content > p br {
        display: none;
    }

    .hero-actions {
        justify-content: center;

        margin-bottom: 30px;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        min-height: 48px;

        padding: 0 17px;

        font-size: 11px;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 360px;

        transform: scale(0.88);
    }

    .hero-circle {
        width: 230px;
        height: 230px;
    }

    .hero-circle i {
        font-size: 75px;
    }

    .card-main {
        top: 45px;
        right: 50%;

        min-width: 245px;

        padding: 13px;

        transform: translateX(50%) !important;
    }

    .card-small-one {
        left: 5px;
        top: 110px;
    }

    .card-small-two {
        left: auto;
        right: 5px;
        bottom: 65px;
    }

    .quick-contact-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .section-heading p {
        font-size: 11px;
    }

    .quick-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .contact-card {
        min-height: auto;

        padding: 23px;
    }

    .contact-card p {
        min-height: auto;
    }

    .main-contact-section {
        padding: 45px 0 70px;
    }

    .form-wrapper {
        padding: 25px 18px;

        border-radius: 22px;
    }

    .form-header {
        align-items: flex-start;
    }

    .form-title-icon {
        width: 45px;
        height: 45px;
    }

    .form-header h2 {
        font-size: 19px;
    }

    .form-header > div > span {
        font-size: 10px;
    }

    .form-description {
        font-size: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;
    }

    .input-wrapper input,
    .input-wrapper select {
        height: 50px;
    }

    .textarea-wrapper textarea {
        min-height: 140px;
    }

    .form-bottom {
        flex-direction: column;

        align-items: stretch;
    }

    .submit-button {
        width: 100%;
    }

    .contact-sidebar {
        padding: 25px 20px;

        border-radius: 22px;
    }

    .sidebar-header h3 {
        font-size: 21px;
    }

    .why-section {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .why-card {
        min-height: auto;

        padding: 25px;
    }

    .statistics-section {
        margin-top: 15px;
        margin-bottom: 60px;

        padding: 30px 15px;

        border-radius: 22px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 28px 10px;
    }

    .stat-item strong {
        font-size: 20px;
    }

    .stat-item span {
        font-size: 9px;
    }

    .faq-section {
        padding: 45px 0 70px;
    }

    .faq-item summary {
        min-height: 60px;

        padding: 0 16px;

        font-size: 11px;
    }

    .faq-answer {
        padding: 0 16px 17px;

        font-size: 10px;
    }

    .map-section {
        padding: 30px 0 70px;
    }

    .map-wrapper {
        border-radius: 22px;
    }

    .map-content {
        padding: 30px 22px;
    }

    .map-content h2 {
        font-size: 26px;
    }

    .fake-map {
        min-height: 300px;
    }

    .cta-section {
        min-height: 350px;

        margin-bottom: 50px;

        border-radius: 24px;
    }

    .cta-content {
        padding: 45px 20px;
    }

    .cta-content h2 {
        font-size: 29px;
    }

    .cta-content p {
        font-size: 10px;
    }

    .footer-contact-info {
        margin-bottom: 30px;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;

        border-radius: 20px;
    }

    .footer-info-grid > div,
    .footer-info-grid > div:nth-child(n) {
        min-height: 115px;

        border-left: 0;

        border-bottom: 1px solid var(--contact-border);
    }

    .footer-info-grid > div:last-child {
        border-bottom: 0;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 320px;

        transform: scale(0.78);
    }

    .card-main {
        min-width: 225px;
    }

    .card-small-one {
        left: -5px;
    }

    .card-small-two {
        right: -5px;
    }

    .form-header h2 {
        font-size: 17px;
    }

    .stats-container {
        gap: 25px 5px;
    }

    .stat-item strong {
        font-size: 18px;
    }

    .stat-item span {
        font-size: 8px;
    }

}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}
/* =========================================================
   CONTACT PAGE
   LIGHT MODE
   ========================================================= */

/*
   این selectorها را عمداً چند مدل گذاشتیم تا با سیستم
   Theme Toggle سایتت هماهنگ باشد.
*/

body.light-mode .contact-page,
body.light .contact-page,
[data-theme="light"] .contact-page {

    --contact-bg: #f4f8fd;
    --contact-bg-soft: #edf4fb;

    --contact-card: rgba(255, 255, 255, 0.78);

    --contact-primary: #087cff;
    --contact-primary-light: #2495ff;
    --contact-secondary: #00aeea;

    --contact-text: #10233d;
    --contact-text-soft: #536b84;
    --contact-text-muted: #71859b;

    --contact-border: rgba(15, 45, 80, 0.10);
    --contact-border-blue: rgba(22, 131, 255, 0.22);

    --contact-shadow:
        0 25px 70px rgba(20, 55, 90, 0.10);

    color: var(--contact-text);

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(0, 110, 255, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 35%,
            rgba(0, 198, 255, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f1f6fc 50%,
            #eef4fa 100%
        );
}


/* =========================================================
   LIGHT MODE - BACKGROUND EFFECTS
========================================================= */

body.light-mode .contact-page .background-effects,
body.light .contact-page .background-effects,
[data-theme="light"] .contact-page .background-effects {

    opacity: .65;
}

body.light-mode .contact-page .bg-orb,
body.light .contact-page .bg-orb,
[data-theme="light"] .contact-page .bg-orb {

    opacity: .14;
}


/* =========================================================
   HERO
========================================================= */

body.light-mode .contact-page .hero-badge,
body.light .contact-page .hero-badge,
[data-theme="light"] .contact-page .hero-badge {

    color: #2672b5;

    border-color: rgba(22, 131, 255, .18);

    background:
        rgba(255, 255, 255, .72);

    box-shadow:
        0 8px 25px rgba(25, 80, 130, .06);
}


body.light-mode .contact-page .hero-content h1,
body.light .contact-page .hero-content h1,
[data-theme="light"] .contact-page .hero-content h1 {

    color: #10233d;
}


body.light-mode .contact-page .hero-content h1 span,
body.light .contact-page .hero-content h1 span,
[data-theme="light"] .contact-page .hero-content h1 span {

    background:
        linear-gradient(
            110deg,
            #1683ff,
            #0875e8,
            #00a9df
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


body.light-mode .contact-page .hero-content > p,
body.light .contact-page .hero-content > p,
[data-theme="light"] .contact-page .hero-content > p {

    color: #60758b;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

body.light-mode .contact-page .hero-primary-btn,
body.light .contact-page .hero-primary-btn,
[data-theme="light"] .contact-page .hero-primary-btn {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #006ee0
        );

    box-shadow:
        0 15px 35px rgba(22, 131, 255, .20);
}


body.light-mode .contact-page .hero-secondary-btn,
body.light .contact-page .hero-secondary-btn,
[data-theme="light"] .contact-page .hero-secondary-btn {

    color: #31506d;

    border-color: rgba(20, 60, 100, .10);

    background:
        rgba(255, 255, 255, .72);

    box-shadow:
        0 8px 25px rgba(30, 70, 110, .06);
}


body.light-mode .contact-page .hero-secondary-btn:hover,
body.light .contact-page .hero-secondary-btn:hover,
[data-theme="light"] .contact-page .hero-secondary-btn:hover {

    color: #087cff;

    border-color:
        rgba(22, 131, 255, .25);

    background:
        rgba(22, 131, 255, .07);
}


/* =========================================================
   HERO TRUST
========================================================= */

body.light-mode .contact-page .trust-users span,
body.light .contact-page .trust-users span,
[data-theme="light"] .contact-page .trust-users span {

    border-color: #f1f6fc;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #0064ca
        );
}


body.light-mode .contact-page .hero-trust strong,
body.light .contact-page .hero-trust strong,
[data-theme="light"] .contact-page .hero-trust strong {

    color: #1a3049;
}


body.light-mode .contact-page .hero-trust small,
body.light .contact-page .hero-trust small,
[data-theme="light"] .contact-page .hero-trust small {

    color: #7b8fa4;
}


/* =========================================================
   HERO CIRCLE
========================================================= */

body.light-mode .contact-page .hero-circle,
body.light .contact-page .hero-circle,
[data-theme="light"] .contact-page .hero-circle {

    border-color:
        rgba(22, 131, 255, .16);

    background:
        radial-gradient(
            circle,
            rgba(22, 131, 255, .13),
            rgba(22, 131, 255, .035) 55%,
            transparent 70%
        );

    box-shadow:
        0 0 100px rgba(0, 119, 255, .09),
        inset 0 0 70px rgba(0, 119, 255, .05);
}


body.light-mode .contact-page .hero-circle::before,
body.light .contact-page .hero-circle::before,
[data-theme="light"] .contact-page .hero-circle::before {

    border-color:
        rgba(22, 131, 255, .08);
}


body.light-mode .contact-page .hero-circle::after,
body.light .contact-page .hero-circle::after,
[data-theme="light"] .contact-page .hero-circle::after {

    border-color:
        rgba(22, 131, 255, .045);
}


/* =========================================================
   FLOATING CARDS
========================================================= */

body.light-mode .contact-page .floating-card,
body.light .contact-page .floating-card,
[data-theme="light"] .contact-page .floating-card {

    border-color:
        rgba(20, 60, 100, .10);

    background:
        rgba(255, 255, 255, .82);

    box-shadow:
        0 25px 60px rgba(30, 70, 110, .12);

    backdrop-filter: blur(20px);
}


body.light-mode .contact-page .card-main strong,
body.light .contact-page .card-main strong,
[data-theme="light"] .contact-page .card-main strong {

    color: #1b334d;
}


body.light-mode .contact-page .card-main div:nth-child(2) span,
body.light .contact-page .card-main div:nth-child(2) span,
[data-theme="light"] .contact-page .card-main div:nth-child(2) span {

    color: #7890a6;
}


body.light-mode .contact-page .card-small,
body.light .contact-page .card-small,
[data-theme="light"] .contact-page .card-small {

    color: #385672;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

body.light-mode .contact-page .section-heading h2,
body.light .contact-page .section-heading h2,
[data-theme="light"] .contact-page .section-heading h2 {

    color: #132b45;
}


body.light-mode .contact-page .section-heading p,
body.light .contact-page .section-heading p,
[data-theme="light"] .contact-page .section-heading p {

    color: #71859b;
}


body.light-mode .contact-page .section-heading > span,
body.light .contact-page .section-heading > span,
[data-theme="light"] .contact-page .section-heading > span {

    color: #087cff;
}


/* =========================================================
   QUICK CONTACT CARDS
========================================================= */

body.light-mode .contact-page .contact-card,
body.light .contact-page .contact-card,
[data-theme="light"] .contact-page .contact-card {

    border-color:
        rgba(20, 60, 100, .09);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .88),
            rgba(246, 250, 254, .82)
        );

    box-shadow:
        0 20px 55px rgba(30, 70, 110, .08);
}


body.light-mode .contact-page .contact-card:hover,
body.light .contact-page .contact-card:hover,
[data-theme="light"] .contact-page .contact-card:hover {

    border-color:
        rgba(22, 131, 255, .25);

    box-shadow:
        0 30px 70px rgba(30, 70, 110, .12),
        0 0 30px rgba(22, 131, 255, .04);
}


body.light-mode .contact-page .contact-card h3,
body.light .contact-page .contact-card h3,
[data-theme="light"] .contact-page .contact-card h3 {

    color: #18334e;
}


body.light-mode .contact-page .contact-card p,
body.light .contact-page .contact-card p,
[data-theme="light"] .contact-page .contact-card p {

    color: #71859a;
}


body.light-mode .contact-page .card-number,
body.light .contact-page .card-number,
[data-theme="light"] .contact-page .card-number {

    color: rgba(20, 65, 105, .10);
}


body.light-mode .contact-page .contact-card > a,
body.light .contact-page .contact-card > a,
[data-theme="light"] .contact-page .contact-card > a {

    color: #087cff;
}


/* =========================================================
   MAIN CONTACT
========================================================= */

body.light-mode .contact-page .form-wrapper,
body.light-mode .contact-page .contact-sidebar,
body.light .contact-page .form-wrapper,
body.light .contact-page .contact-sidebar,
[data-theme="light"] .contact-page .form-wrapper,
[data-theme="light"] .contact-page .contact-sidebar {

    border-color:
        rgba(20, 60, 100, .09);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .90),
            rgba(246, 250, 254, .88)
        );

    box-shadow:
        0 30px 80px rgba(30, 70, 110, .09);
}


/* =========================================================
   FORM
========================================================= */

body.light-mode .contact-page .form-header h2,
body.light .contact-page .form-header h2,
[data-theme="light"] .contact-page .form-header h2 {

    color: #17314b;
}


body.light-mode .contact-page .form-description,
body.light .contact-page .form-description,
[data-theme="light"] .contact-page .form-description {

    color: #71859b;
}


body.light-mode .contact-page .form-group label,
body.light .contact-page .form-group label,
[data-theme="light"] .contact-page .form-group label {

    color: #38536e;
}


/* =========================================================
   INPUTS
========================================================= */

body.light-mode .contact-page .input-wrapper input,
body.light-mode .contact-page .input-wrapper select,
body.light-mode .contact-page .textarea-wrapper textarea,
body.light .contact-page .input-wrapper input,
body.light .contact-page .input-wrapper select,
body.light .contact-page .textarea-wrapper textarea,
[data-theme="light"] .contact-page .input-wrapper input,
[data-theme="light"] .contact-page .input-wrapper select,
[data-theme="light"] .contact-page .textarea-wrapper textarea {

    color: #1d3852;

    border-color:
        rgba(25, 65, 105, .10);

    background:
        rgba(240, 246, 252, .75);
}


body.light-mode .contact-page .input-wrapper input::placeholder,
body.light-mode .contact-page .textarea-wrapper textarea::placeholder,
body.light .contact-page .input-wrapper input::placeholder,
body.light .contact-page .textarea-wrapper textarea::placeholder,
[data-theme="light"] .contact-page .input-wrapper input::placeholder,
[data-theme="light"] .contact-page .textarea-wrapper textarea::placeholder {

    color: #8ba0b4;
}


body.light-mode .contact-page .input-wrapper input:focus,
body.light-mode .contact-page .input-wrapper select:focus,
body.light-mode .contact-page .textarea-wrapper textarea:focus,
body.light .contact-page .input-wrapper input:focus,
body.light .contact-page .input-wrapper select:focus,
body.light .contact-page .textarea-wrapper textarea:focus,
[data-theme="light"] .contact-page .input-wrapper input:focus,
[data-theme="light"] .contact-page .input-wrapper select:focus,
[data-theme="light"] .contact-page .textarea-wrapper textarea:focus {

    border-color:
        rgba(22, 131, 255, .45);

    background:
        rgba(255, 255, 255, .95);

    box-shadow:
        0 0 0 4px rgba(22, 131, 255, .07);
}


body.light-mode .contact-page .input-wrapper > i,
body.light-mode .contact-page .textarea-wrapper > i,
body.light .contact-page .input-wrapper > i,
body.light .contact-page .textarea-wrapper > i,
[data-theme="light"] .contact-page .input-wrapper > i,
[data-theme="light"] .contact-page .textarea-wrapper > i {

    color: #7890a5;
}


body.light-mode .contact-page .input-wrapper:focus-within > i,
body.light-mode .contact-page .textarea-wrapper:focus-within > i,
body.light .contact-page .input-wrapper:focus-within > i,
body.light .contact-page .textarea-wrapper:focus-within > i,
[data-theme="light"] .contact-page .input-wrapper:focus-within > i,
[data-theme="light"] .contact-page .textarea-wrapper:focus-within > i {

    color: #1683ff;
}


/* SELECT OPTION */

body.light-mode .contact-page .input-wrapper select option,
body.light .contact-page .input-wrapper select option,
[data-theme="light"] .contact-page .input-wrapper select option {

    color: #1d3852;
    background: #ffffff;
}


/* =========================================================
   CHECKBOX
========================================================= */

body.light-mode .contact-page .checkbox-wrapper,
body.light .contact-page .checkbox-wrapper,
[data-theme="light"] .contact-page .checkbox-wrapper {

    color: #71859b;
}


body.light-mode .contact-page .custom-checkbox,
body.light .contact-page .custom-checkbox,
[data-theme="light"] .contact-page .custom-checkbox {

    border-color:
        #a9bac9;

    background:
        rgba(255, 255, 255, .7);
}


/* =========================================================
   SIDEBAR
========================================================= */

body.light-mode .contact-page .sidebar-header h3,
body.light .contact-page .sidebar-header h3,
[data-theme="light"] .contact-page .sidebar-header h3 {

    color: #17314b;
}


body.light-mode .contact-page .support-status,
body.light .contact-page .support-status,
[data-theme="light"] .contact-page .support-status {

    border-color:
        rgba(50, 180, 110, .12);

    background:
        rgba(50, 200, 120, .045);
}


body.light-mode .contact-page .support-status strong,
body.light .contact-page .support-status strong,
[data-theme="light"] .contact-page .support-status strong {

    color: #294a43;
}


body.light-mode .contact-page .support-status span:not(.live-dot),
body.light .contact-page .support-status span:not(.live-dot),
[data-theme="light"] .contact-page .support-status span:not(.live-dot) {

    color: #78908b;
}


body.light-mode .contact-page .sidebar-divider,
body.light .contact-page .sidebar-divider,
[data-theme="light"] .contact-page .sidebar-divider {

    background:
        rgba(20, 60, 100, .09);
}


body.light-mode .contact-page .sidebar-info-item strong,
body.light .contact-page .sidebar-info-item strong,
[data-theme="light"] .contact-page .sidebar-info-item strong {

    color: #36516b;
}


body.light-mode .contact-page .sidebar-info-item span,
body.light .contact-page .sidebar-info-item span,
[data-theme="light"] .contact-page .sidebar-info-item span {

    color: #8296aa;
}


body.light-mode .contact-page .sidebar-info-item b,
body.light .contact-page .sidebar-info-item b,
[data-theme="light"] .contact-page .sidebar-info-item b {

    color: #1683ff;
}


body.light-mode .contact-page .sidebar-social > span,
body.light .contact-page .sidebar-social > span,
[data-theme="light"] .contact-page .sidebar-social > span {

    color: #7b8fa4;
}


body.light-mode .contact-page .social-links a,
body.light .contact-page .social-links a,
[data-theme="light"] .contact-page .social-links a {

    color: #71879d;

    border-color:
        rgba(20, 60, 100, .09);

    background:
        rgba(255, 255, 255, .65);
}


body.light-mode .contact-page .social-links a:hover,
body.light .contact-page .social-links a:hover,
[data-theme="light"] .contact-page .social-links a:hover {

    color: #1683ff;

    border-color:
        rgba(22, 131, 255, .25);

    background:
        rgba(22, 131, 255, .07);
}


/* =========================================================
   WHY SECTION
========================================================= */

body.light-mode .contact-page .why-card,
body.light .contact-page .why-card,
[data-theme="light"] .contact-page .why-card {

    border-color:
        rgba(20, 60, 100, .09);

    background:
        rgba(255, 255, 255, .78);

    box-shadow:
        0 20px 55px rgba(30, 70, 110, .07);
}


body.light-mode .contact-page .why-card:hover,
body.light .contact-page .why-card:hover,
[data-theme="light"] .contact-page .why-card:hover {

    border-color:
        rgba(22, 131, 255, .23);
}


body.light-mode .contact-page .why-card h3,
body.light .contact-page .why-card h3,
[data-theme="light"] .contact-page .why-card h3 {

    color: #19344e;
}


body.light-mode .contact-page .why-card p,
body.light .contact-page .why-card p,
[data-theme="light"] .contact-page .why-card p {

    color: #71859a;
}


body.light-mode .contact-page .why-number,
body.light .contact-page .why-number,
[data-theme="light"] .contact-page .why-number {

    color:
        rgba(20, 70, 110, .07);
}


/* =========================================================
   STATISTICS
========================================================= */

body.light-mode .contact-page .statistics-section,
body.light .contact-page .statistics-section,
[data-theme="light"] .contact-page .statistics-section {

    border-color:
        rgba(20, 60, 100, .09);

    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, .85),
            rgba(244, 249, 254, .82)
        );

    box-shadow:
        0 25px 65px rgba(30, 70, 110, .07);
}


body.light-mode .contact-page .stat-item strong,
body.light .contact-page .stat-item strong,
[data-theme="light"] .contact-page .stat-item strong {

    color: #18344f;
}


body.light-mode .contact-page .stat-item span,
body.light .contact-page .stat-item span,
[data-theme="light"] .contact-page .stat-item span {

    color: #7a8ea2;
}


/* =========================================================
   FAQ
========================================================= */

body.light-mode .contact-page .faq-item,
body.light .contact-page .faq-item,
[data-theme="light"] .contact-page .faq-item {

    border-color:
        rgba(20, 60, 100, .09);

    background:
        rgba(255, 255, 255, .78);

    box-shadow:
        0 10px 35px rgba(30, 70, 110, .045);
}


body.light-mode .contact-page .faq-item:hover,
body.light-mode .contact-page .faq-item[open],
body.light .contact-page .faq-item:hover,
body.light .contact-page .faq-item[open],
[data-theme="light"] .contact-page .faq-item:hover,
[data-theme="light"] .contact-page .faq-item[open] {

    border-color:
        rgba(22, 131, 255, .22);
}


body.light-mode .contact-page .faq-item summary,
body.light .contact-page .faq-item summary,
[data-theme="light"] .contact-page .faq-item summary {

    color: #29455f;
}


body.light-mode .contact-page .faq-answer,
body.light .contact-page .faq-answer,
[data-theme="light"] .contact-page .faq-answer {

    color: #75899d;
}


/* =========================================================
   MAP
========================================================= */

body.light-mode .contact-page .map-wrapper,
body.light .contact-page .map-wrapper,
[data-theme="light"] .contact-page .map-wrapper {

    border-color:
        rgba(20, 60, 100, .09);

    background:
        rgba(255, 255, 255, .80);

    box-shadow:
        0 25px 70px rgba(30, 70, 110, .08);
}


body.light-mode .contact-page .map-content h2,
body.light .contact-page .map-content h2,
[data-theme="light"] .contact-page .map-content h2 {

    color: #17314b;
}


body.light-mode .contact-page .map-content > p,
body.light .contact-page .map-content > p,
[data-theme="light"] .contact-page .map-content > p {

    color: #71859a;
}


body.light-mode .contact-page .address-box,
body.light .contact-page .address-box,
[data-theme="light"] .contact-page .address-box {

    border-color:
        rgba(20, 60, 100, .08);

    background:
        rgba(240, 246, 252, .72);
}


body.light-mode .contact-page .address-box strong,
body.light .contact-page .address-box strong,
[data-theme="light"] .contact-page .address-box strong {

    color: #35516b;
}


body.light-mode .contact-page .address-box p,
body.light .contact-page .address-box p,
[data-theme="light"] .contact-page .address-box p {

    color: #7b90a4;
}


/* =========================================================
   FAKE MAP
========================================================= */

body.light-mode .contact-page .fake-map,
body.light .contact-page .fake-map,
[data-theme="light"] .contact-page .fake-map {

    background:
        linear-gradient(
            130deg,
            #e7f1fa,
            #dceaf6
        );
}


body.light-mode .contact-page .map-grid,
body.light .contact-page .map-grid,
[data-theme="light"] .contact-page .map-grid {

    opacity: .7;

    background-image:
        linear-gradient(
            rgba(50, 120, 175, .10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(50, 120, 175, .10) 1px,
            transparent 1px
        );
}


body.light-mode .contact-page .map-road,
body.light .contact-page .map-road,
[data-theme="light"] .contact-page .map-road {

    background:
        rgba(70, 125, 165, .18);

    box-shadow:
        0 0 0 1px rgba(70, 125, 165, .05);
}


body.light-mode .contact-page .map-label,
body.light .contact-page .map-label,
[data-theme="light"] .contact-page .map-label {

    color: #35516b;

    border-color:
        rgba(20, 60, 100, .09);

    background:
        rgba(255, 255, 255, .85);

    box-shadow:
        0 10px 30px rgba(30, 70, 110, .10);
}


/* =========================================================
   CTA
========================================================= */

body.light-mode .contact-page .cta-section,
body.light .contact-page .cta-section,
[data-theme="light"] .contact-page .cta-section {

    border-color:
        rgba(22, 131, 255, .15);

    background:
        radial-gradient(
            circle at center,
            rgba(22, 131, 255, .12),
            transparent 60%
        ),
        linear-gradient(
            135deg,
            rgba(235, 245, 255, .95),
            rgba(220, 238, 253, .92)
        );

    box-shadow:
        0 25px 70px rgba(30, 80, 130, .08);
}


body.light-mode .contact-page .cta-content h2,
body.light .contact-page .cta-content h2,
[data-theme="light"] .contact-page .cta-content h2 {

    color: #14304b;
}


body.light-mode .contact-page .cta-content p,
body.light .contact-page .cta-content p,
[data-theme="light"] .contact-page .cta-content p {

    color: #70869b;
}


/* =========================================================
   FOOTER CONTACT INFO
========================================================= */

body.light-mode .contact-page .footer-info-grid,
body.light .contact-page .footer-info-grid,
[data-theme="light"] .contact-page .footer-info-grid {

    border-color:
        rgba(20, 60, 100, .09);

    background:
        rgba(255, 255, 255, .78);

    box-shadow:
        0 20px 55px rgba(30, 70, 110, .06);
}


body.light-mode .contact-page .footer-info-grid > div,
body.light .contact-page .footer-info-grid > div,
[data-theme="light"] .contact-page .footer-info-grid > div {

    border-color:
        rgba(20, 60, 100, .08);
}


body.light-mode .contact-page .footer-info-grid strong,
body.light .contact-page .footer-info-grid strong,
[data-theme="light"] .contact-page .footer-info-grid strong {

    color: #3a556e;
}


body.light-mode .contact-page .footer-info-grid span,
body.light .contact-page .footer-info-grid span,
[data-theme="light"] .contact-page .footer-info-grid span {

    color: #8195a8;
}


/* =========================================================
   LIGHT MODE - MOBILE FIXES
========================================================= */

@media (max-width: 767px) {

    body.light-mode .contact-page .floating-card,
    body.light .contact-page .floating-card,
    [data-theme="light"] .contact-page .floating-card {

        box-shadow:
            0 18px 40px rgba(30, 70, 110, .12);
    }

    body.light-mode .contact-page .form-wrapper,
    body.light-mode .contact-page .contact-sidebar,
    body.light .contact-page .form-wrapper,
    body.light .contact-page .contact-sidebar,
    [data-theme="light"] .contact-page .form-wrapper,
    [data-theme="light"] .contact-page .contact-sidebar {

        box-shadow:
            0 20px 50px rgba(30, 70, 110, .07);
    }

}


/* =========================================================
   LIGHT MODE - GLOBAL SMOOTH TRANSITION
========================================================= */

body.light-mode .contact-page *,
body.light .contact-page *,
[data-theme="light"] .contact-page * {

    /*
       فقط رنگ و پس‌زمینه‌ها نرم تغییر کنند.
       transform/animation دست‌نخورده باقی می‌ماند.
    */

    transition-property:
        color,
        background-color,
        border-color,
        box-shadow,
        opacity;
}
/* =========================================================
   FIX NAVBAR BUTTONS / ITEMS
========================================================= */
.navbar {
    flex-wrap: nowrap;
}
